reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/openmp/runtime/src/kmp_str.cpp
  618   while (str[i] == ' ' || str[i] == '\t') {
  618   while (str[i] == ' ' || str[i] == '\t') {
  619     ++i;
  623   if (str[i] < '0' || str[i] > '9') {
  623   if (str[i] < '0' || str[i] > '9') {
  628     digit = str[i] - '0';
  631     ++i;
  632   } while (str[i] >= '0' && str[i] <= '9');
  632   } while (str[i] >= '0' && str[i] <= '9');
  635   while (str[i] == ' ' || str[i] == '\t') {
  635   while (str[i] == ' ' || str[i] == '\t') {
  636     ++i;
  651   switch (str[i]) {
  663   if (str[i] == 'b' || str[i] == 'B') { // Skip optional "b".
  663   if (str[i] == 'b' || str[i] == 'B') { // Skip optional "b".
  667     ++i;
  669   if (!(str[i] == ' ' || str[i] == '\t' || str[i] == 0)) { // Bad unit
  669   if (!(str[i] == ' ' || str[i] == '\t' || str[i] == 0)) { // Bad unit
  669   if (!(str[i] == ' ' || str[i] == '\t' || str[i] == 0)) { // Bad unit
  683   while (str[i] == ' ' || str[i] == '\t') {
  683   while (str[i] == ' ' || str[i] == '\t') {
  684     ++i;
  687   if (str[i] != 0) {