Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/
H A DPPDirectives.cpp1039 const char *DigitTokBegin = &IntegerBuffer[0]; in GetLineValue() local
1041 unsigned ActualLength = PP.getSpelling(DigitTok, DigitTokBegin, &Invalid); in GetLineValue()
1052 if (DigitTokBegin[i] == '\'') in GetLineValue()
1055 if (!isDigit(DigitTokBegin[i])) { in GetLineValue()
1062 unsigned NextVal = Val*10+(DigitTokBegin[i]-'0'); in GetLineValue()
1071 if (DigitTokBegin[0] == '0' && Val) in GetLineValue()