Home | History | Annotate | Download | only in Support

Lines Matching refs:Pos

50 static const char *BackupNumber(const char *Pos, const char *FirstChar) {
52 if (!isNumberChar(*Pos)) return Pos;
56 while (Pos > FirstChar && isNumberChar(Pos[-1])) {
58 if (Pos[-1] == '.') {
64 --Pos;
65 if (Pos > FirstChar && isSignedChar(Pos[0]) && !isExponentChar(Pos[-1]))
68 return Pos;
74 static const char *EndOfNumber(const char *Pos) {
75 while (isNumberChar(*Pos))
76 ++Pos;
77 return Pos;