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

References

lib/Support/StringRef.cpp
  513     Radix = GetAutoSenseRadix(Str);
  518   if (Str.empty()) return true;
  522   while (!Str.empty() && Str.front() == '0')
  522   while (!Str.empty() && Str.front() == '0')
  523     Str = Str.substr(1);
  523     Str = Str.substr(1);
  526   if (Str.empty()) {
  536   unsigned BitWidth = Log2Radix * Str.size();
  551   while (!Str.empty()) {
  553     if (Str[0] >= '0' && Str[0] <= '9')
  553     if (Str[0] >= '0' && Str[0] <= '9')
  554       CharVal = Str[0]-'0';
  555     else if (Str[0] >= 'a' && Str[0] <= 'z')
  555     else if (Str[0] >= 'a' && Str[0] <= 'z')
  556       CharVal = Str[0]-'a'+10;
  557     else if (Str[0] >= 'A' && Str[0] <= 'Z')
  557     else if (Str[0] >= 'A' && Str[0] <= 'Z')
  558       CharVal = Str[0]-'A'+10;
  577     Str = Str.substr(1);
  577     Str = Str.substr(1);