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

References

lib/Support/FileUtilities.cpp
  103     F1NumEnd = F1P;
  109     V1 = strtod(F1P, const_cast<char**>(&F1NumEnd));
  112     if (*F1NumEnd == 'D' || *F1NumEnd == 'd') {
  112     if (*F1NumEnd == 'D' || *F1NumEnd == 'd') {
  114       SmallString<200> StrTmp(F1P, EndOfNumber(F1NumEnd)+1);
  116       StrTmp[static_cast<unsigned>(F1NumEnd-F1P)] = 'e';
  118       V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd));
  119       F1NumEnd = F1P + (F1NumEnd-&StrTmp[0]);
  119       F1NumEnd = F1P + (F1NumEnd-&StrTmp[0]);
  133   if (F1NumEnd == F1P || F2NumEnd == F2P) {
  167   F1P = F1NumEnd;  F2P = F2NumEnd;