Home | History | Annotate | Download | only in Lex

Lines Matching refs:eod

87 /// the tok::eod token is found.
93 } while (Tmp.isNot(tok::eod));
99 /// This sets the token kind to eod and discards the rest
115 if (MacroNameTok.is(tok::eod)) {
158 // token kind to tok::eod.
159 MacroNameTok.setKind(tok::eod);
163 /// \brief Ensure that the next token is a tok::eod token.
165 /// If not, emit a diagnostic and consume up until the eod. If EnableMacros is
182 if (Tmp.isNot(tok::eod)) {
256 // converted into an EOD token (this terminates the macro).
460 // Scan until the eod token.
591 // EOD token (which terminates the directive).
639 case tok::eod:
773 if (DigitTok.isNot(tok::eod))
848 // If the StrTok is "eod", then it wasn't present. Otherwise, it must be a
849 // string followed by eod.
850 if (StrTok.is(tok::eod))
870 // Verify that there is nothing after the string, other than EOD. Because
891 if (FlagTok.is(tok::eod)) return false;
899 if (FlagTok.is(tok::eod)) return false;
925 if (FlagTok.is(tok::eod)) return false;
940 if (FlagTok.is(tok::eod)) return false;
954 if (FlagTok.is(tok::eod)) return false;
984 // If the StrTok is "eod", then it wasn't present. Otherwise, it must be a
985 // string followed by eod.
986 if (StrTok.is(tok::eod))
1077 if (StrTok.isNot(tok::eod))
1087 // Verify that there is nothing after the string, other than EOD.
1104 if (MacroNameTok.is(tok::eod))
1135 if (MacroNameTok.is(tok::eod))
1221 /// the EOD marker.
1228 while (CurTok.isNot(tok::eod)) {
1265 // If we hit the eod marker, emit an error and return true so that the caller
1266 // knows the EOD has been read.
1291 case tok::eod:
1292 // If the token kind is EOD, the error has already been diagnosed.
1307 return; // Found <eod> but no ">"? Diagnostic already emitted.
1327 // Verify that there is nothing after the filename, other than EOD. Note that
1631 case tok::eod: // #define X(
1695 if (MacroNameTok.is(tok::eod))
1713 if (Tok.is(tok::eod)) {
1768 if (!Tok.is(tok::eod))
1774 while (Tok.isNot(tok::eod)) {
1785 while (Tok.isNot(tok::eod)) {
1807 if (getLangOpts().AsmPreprocessor && Tok.isNot(tok::eod)) {
1901 if (MacroNameTok.is(tok::eod))
1946 if (MacroNameTok.is(tok::eod)) {