HomeSort by relevance Sort by last modified time
    Searched refs:eod (Results 1 - 16 of 16) sorted by null

  /external/clang/lib/Lex/
PreprocessorLexer.cpp 47 if (FilenameTok.is(tok::eod))
PPDirectives.cpp 122 /// the tok::eod token is found.
128 } while (Tmp.isNot(tok::eod));
134 /// This sets the token kind to eod and discards the rest
150 if (MacroNameTok.is(tok::eod)) {
192 // token kind to tok::eod.
193 MacroNameTok.setKind(tok::eod);
197 /// \brief Ensure that the next token is a tok::eod token.
199 /// If not, emit a diagnostic and consume up until the eod. If EnableMacros is
216 if (Tmp.isNot(tok::eod)) {
290 // converted into an EOD token (this terminates the macro)
    [all...]
Pragma.cpp 333 // Replace the ')' with an EOD to mark the end of the pragma.
334 PragmaToks.back().setKind(tok::eod);
387 if (Tok.is(tok::eod)) return;
453 // If the token kind is EOD, the error has already been diagnosed.
454 if (FilenameTok.is(tok::eod))
488 while (DependencyTok.isNot(tok::eod)) {
634 if (SourceFilenameTok.is(tok::eod)) {
666 if (ReplaceFilenameTok.is(tok::eod)) {
800 // Verify that this is followed by EOD.
802 if (Tok.isNot(tok::eod))
    [all...]
PPExpressions.cpp 208 case tok::eod:
420 /// 0 - 'eod' or ')'
446 case tok::eod: return 0;// Lowest priority, end of directive.
760 if (Tok.isNot(tok::eod))
771 if (Tok.is(tok::eod)) {
787 if (Tok.isNot(tok::eod))
795 // If we aren't at the tok::eod token, something bad happened, like an extra
797 if (Tok.isNot(tok::eod)) {
PPLexerChange.cpp 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")
    [all...]
PPMacroExpansion.cpp 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.
    [all...]
Lexer.cpp 205 // return an EOD token.
    [all...]
PTHLexer.cpp 127 if (TKind == tok::eod) {
TokenLexer.cpp 697 return Tokens[NumTokens-1].is(tok::eod) && !isAtEnd();
    [all...]
  /frameworks/compile/slang/
slang_rs_pragma_handler.cpp 93 while (PragmaToken.isNot(clang::tok::eod)) {
103 if (PragmaToken.is(clang::tok::eod) || PragmaToken.is(clang::tok::eof)) {
111 // Lex until meets clang::tok::eod
114 } while (PragmaToken.isNot(clang::tok::eod));
204 while (PragmaToken.isNot(clang::tok::eod)) {
212 slangAssert(PragmaToken.isNot(clang::tok::eod));
230 if (PragmaToken.isNot(clang::tok::eod))
324 } while (PragmaToken.isNot(clang::tok::eod));
  /external/zlib/src/contrib/minizip/
make_vms.com 10 $ eod
  /external/clang/lib/Parse/
ParsePragma.cpp 227 if (Tok.isNot(tok::eod)) {
334 if (Tok.isNot(tok::eod)) {
386 if (Tok.isNot(tok::eod)) {
455 if (Tok.isNot(tok::eod)) {
538 if (Tok.isNot(tok::eod)) {
598 if (Tok.isNot(tok::eod)) {
655 if (Tok.isNot(tok::eod)) {
733 if (Tok.isNot(tok::eod)) {
781 while (Tok.isNot(tok::eod)) {
841 if (Tok.isNot(tok::eod)) {
    [all...]
  /external/clang/lib/Rewrite/Frontend/
InclusionRewriter.cpp 253 } while (!DirectiveToken.is(tok::eod) && DirectiveToken.isNot(tok::eof));
294 if (Tok.is(tok::eod)) // Sanity check.
467 } while (RawToken.isNot(tok::eod));
487 } while (RawToken.isNot(tok::eod) && RawToken.isNot(tok::eof));
  /external/clang/lib/Frontend/
CacheTokens.cpp 289 // Insert an eod token into the token cache. It has the same
294 Tmp.setKind(tok::eod);
PrintPreprocessedOutput.cpp 580 while (PragmaTok.isNot(tok::eod)) {
  /external/zlib/src/
make_vms.com 434 $ eod
473 $ eod
588 $ eod

Completed in 1050 milliseconds