Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DPPDirectives.cpp1116 static bool GetLineValue(Token &DigitTok, unsigned &Val, in GetLineValue() argument
1119 if (DigitTok.isNot(tok::numeric_constant)) { in GetLineValue()
1120 PP.Diag(DigitTok, DiagID); in GetLineValue()
1122 if (DigitTok.isNot(tok::eod)) in GetLineValue()
1128 IntegerBuffer.resize(DigitTok.getLength()); in GetLineValue()
1131 unsigned ActualLength = PP.getSpelling(DigitTok, DigitTokBegin, &Invalid); in GetLineValue()
1146 PP.Diag(PP.AdvanceToTokenCharacter(DigitTok.getLocation(), i), in GetLineValue()
1154 PP.Diag(DigitTok, DiagID); in GetLineValue()
1162 PP.Diag(DigitTok.getLocation(), diag::warn_pp_line_decimal) in GetLineValue()
1178 Token DigitTok; in HandleLineDirective() local
[all …]