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

References

lib/Support/FileUtilities.cpp
  104     F2NumEnd = F2P;
  110     V2 = strtod(F2P, const_cast<char**>(&F2NumEnd));
  122     if (*F2NumEnd == 'D' || *F2NumEnd == 'd') {
  122     if (*F2NumEnd == 'D' || *F2NumEnd == 'd') {
  124       SmallString<200> StrTmp(F2P, EndOfNumber(F2NumEnd)+1);
  126       StrTmp[static_cast<unsigned>(F2NumEnd-F2P)] = 'e';
  128       V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd));
  129       F2NumEnd = F2P + (F2NumEnd-&StrTmp[0]);
  129       F2NumEnd = F2P + (F2NumEnd-&StrTmp[0]);
  133   if (F1NumEnd == F1P || F2NumEnd == F2P) {
  167   F1P = F1NumEnd;  F2P = F2NumEnd;