Home | History | Annotate | Download | only in Lex

Lines Matching refs:eod

440   // explicit EOD token.
448 // expansions) and preprocessor mode (return EOD). We know that the lexer
452 // return EOD.
465 // Discarding comments as long as we don't have EOF or EOD. This 'comments
471 while (Tok.isNot(tok::eod) && Tok.isNot(tok::eof))
474 // If we got an eod token, then we successfully found the end of the line.
475 if (Tok.is(tok::eod)) {
480 // If the lexer was already in preprocessor mode, just return the EOD token
491 // active (an active lexer would return EOD at EOF if there was no \n in
493 assert(!FoundLexer && "Lexer should return EOD before EOF in PP mode");