Home
last modified time | relevance | path

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

/external/clang/lib/Lex/
DPPDirectives.cpp942 static bool GetLineValue(Token &DigitTok, unsigned &Val, in GetLineValue() argument
945 if (DigitTok.isNot(tok::numeric_constant)) { in GetLineValue()
946 PP.Diag(DigitTok, DiagID); in GetLineValue()
948 if (DigitTok.isNot(tok::eod)) in GetLineValue()
954 IntegerBuffer.resize(DigitTok.getLength()); in GetLineValue()
957 unsigned ActualLength = PP.getSpelling(DigitTok, DigitTokBegin, &Invalid); in GetLineValue()
972 PP.Diag(PP.AdvanceToTokenCharacter(DigitTok.getLocation(), i), in GetLineValue()
980 PP.Diag(DigitTok, DiagID); in GetLineValue()
988 PP.Diag(DigitTok.getLocation(), diag::warn_pp_line_decimal) in GetLineValue()
1004 Token DigitTok; in HandleLineDirective() local
[all …]