Home | History | Annotate | Download | only in Support

Lines Matching refs:Pos

49 static const char *BackupNumber(const char *Pos, const char *FirstChar) {
51 if (!isNumberChar(*Pos)) return Pos;
55 while (Pos > FirstChar && isNumberChar(Pos[-1])) {
57 if (Pos[-1] == '.') {
63 --Pos;
64 if (Pos > FirstChar && isSignedChar(Pos[0]) && !isExponentChar(Pos[-1]))
67 return Pos;
73 static const char *EndOfNumber(const char *Pos) {
74 while (isNumberChar(*Pos))
75 ++Pos;
76 return Pos;