Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Lex/
H A DPPDirectives.cpp1346 const char *DigitTokBegin = &IntegerBuffer[0]; in GetLineValue() local
1348 unsigned ActualLength = PP.getSpelling(DigitTok, DigitTokBegin, &Invalid); in GetLineValue()
1359 if (DigitTokBegin[i] == '\'') in GetLineValue()
1362 if (!isDigit(DigitTokBegin[i])) { in GetLineValue()
1369 unsigned NextVal = Val*10+(DigitTokBegin[i]-'0'); in GetLineValue()
1378 if (DigitTokBegin[0] == '0' && Val) in GetLineValue()