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

References

lib/Support/FileUtilities.cpp
  226     while (F1P < File1End && F2P < File2End && *F1P == *F2P) {
  226     while (F1P < File1End && F2P < File2End && *F1P == *F2P) {
  227       ++F1P;
  231     if (F1P >= File1End || F2P >= File2End) break;
  236     F1P = BackupNumber(F1P, File1Start);
  236     F1P = BackupNumber(F1P, File1Start);
  241     if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error)) {
  249   bool F1AtEnd = F1P >= File1End;
  253     if (F1AtEnd && isNumberChar(F1P[-1])) --F1P;
  253     if (F1AtEnd && isNumberChar(F1P[-1])) --F1P;
  255     F1P = BackupNumber(F1P, File1Start);
  255     F1P = BackupNumber(F1P, File1Start);
  260     if (CompareNumbers(F1P, F2P, File1End, File2End, AbsTol, RelTol, Error))
  264     if (F1P < File1End || F2P < File2End)