Home | History | Annotate | Download | only in Lex

Lines Matching refs:eod

504   // explicit EOD token.
512 // expansions) and preprocessor mode (return EOD). We know that the lexer
516 // return EOD.
529 // Discarding comments as long as we don't have EOF or EOD. This 'comments
535 while (Tok.isNot(tok::eod) && Tok.isNot(tok::eof))
538 // If we got an eod token, then we successfully found the end of the line.
539 if (Tok.is(tok::eod)) {
544 // If the lexer was already in preprocessor mode, just return the EOD token
555 // active (an active lexer would return EOD at EOF if there was no \n in
557 assert(!FoundLexer && "Lexer should return EOD before EOF in PP mode");