Home
last modified time | relevance | path

Searched refs:isNumberChar (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFileUtilities.cpp45 static bool isNumberChar(char C) { in isNumberChar() function
56 if (!isNumberChar(*Pos)) return Pos; in BackupNumber()
60 while (Pos > FirstChar && isNumberChar(Pos[-1])) { in BackupNumber()
79 while (isNumberChar(*Pos)) in EndOfNumber()
100 if (!isNumberChar(*F1P) || !isNumberChar(*F2P)) { in CompareNumbers()
252 if (F1AtEnd && isNumberChar(F1P[-1])) --F1P; in DiffFilesWithTolerance()
253 if (F2AtEnd && isNumberChar(F2P[-1])) --F2P; in DiffFilesWithTolerance()