Home | History | Annotate | Download | only in Lex

Lines Matching refs:eod

552     if (ContainsCodeCompletionTok && (Tok.is(tok::eof) || Tok.is(tok::eod)))
570 if (Tok.is(tok::eof) || Tok.is(tok::eod)) { // "#if f(<eof>" & "#if f(\n"
575 // Do not lose the EOF/EOD. Return it to the client.
579 // Do not lose the EOF/EOD.
1126 case tok::eod:
1127 // If the token kind is EOD, the error has already been diagnosed.
1144 // Let the caller know a <eod> was found by changing the Token kind.
1145 Tok.setKind(tok::eod);
1146 return false; // Found <eod> but no ">"? Diagnostic already emitted.
1457 while (Tok.isNot(tok::r_paren) && Tok.isNot(tok::eod) &&