Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DPPDirectives.cpp1333 const char *DigitTokBegin = &IntegerBuffer[0]; in GetLineValue() local
1335 unsigned ActualLength = PP.getSpelling(DigitTok, DigitTokBegin, &Invalid); in GetLineValue()
1346 if (DigitTokBegin[i] == '\'') in GetLineValue()
1349 if (!isDigit(DigitTokBegin[i])) { in GetLineValue()
1356 unsigned NextVal = Val*10+(DigitTokBegin[i]-'0'); in GetLineValue()
1365 if (DigitTokBegin[0] == '0' && Val) in GetLineValue()