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

References

lib/Support/StringRef.cpp
  422   while (!Str2.empty()) {
  424     if (Str2[0] >= '0' && Str2[0] <= '9')
  424     if (Str2[0] >= '0' && Str2[0] <= '9')
  425       CharVal = Str2[0] - '0';
  426     else if (Str2[0] >= 'a' && Str2[0] <= 'z')
  426     else if (Str2[0] >= 'a' && Str2[0] <= 'z')
  427       CharVal = Str2[0] - 'a' + 10;
  428     else if (Str2[0] >= 'A' && Str2[0] <= 'Z')
  428     else if (Str2[0] >= 'A' && Str2[0] <= 'Z')
  429       CharVal = Str2[0] - 'A' + 10;
  446     Str2 = Str2.substr(1);
  446     Str2 = Str2.substr(1);
  451   if (Str.size() == Str2.size())
  454   Str = Str2;