OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
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)
[
all
...]
Pragma.cpp
304
// Replace the ')' with an
EOD
to mark the end of the pragma.
305
PragmaToks.back().setKind(tok::
eod
);
358
if (Tok.is(tok::
eod
)) return;
423
// If the token kind is
EOD
, the error has already been diagnosed.
424
if (FilenameTok.is(tok::
eod
))
458
while (DependencyTok.isNot(tok::
eod
)) {
551
if (Tok.isNot(tok::
eod
)) {
628
if (Tok.isNot(tok::
eod
)) {
779
if (SourceFilenameTok.is(tok::
eod
)) {
811
if (ReplaceFilenameTok.is(tok::
eod
)) {
[
all
...]
PPLexerChange.cpp
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")
[
all
...]
PPExpressions.cpp
194
case tok::
eod
:
402
/// 0 - '
eod
' or ')'
428
case tok::
eod
: return 0;// Lowest priority, end of directive.
741
if (Tok.isNot(tok::
eod
))
752
if (Tok.is(tok::
eod
)) {
768
if (Tok.isNot(tok::
eod
))
776
// If we aren't at the tok::
eod
token, something bad happened, like an extra
778
if (Tok.isNot(tok::
eod
)) {
PPMacroExpansion.cpp
393
if (Tok.is(tok::eof) || Tok.is(tok::
eod
)) { // "#if f(<eof>" & "#if f(\n"
395
// Do not lose the EOF/
EOD
. Return it to the client.
[
all
...]
Lexer.cpp
198
// return an
EOD
token.
[
all
...]
PTHLexer.cpp
128
if (TKind == tok::
eod
) {
TokenLexer.cpp
636
return Tokens[NumTokens-1].is(tok::
eod
) && !isAtEnd();
/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
))
322
} while (PragmaToken.isNot(clang::tok::
eod
));
/external/zlib/src/contrib/minizip/
make_vms.com
10
$
eod
/external/clang/lib/Parse/
ParsePragma.cpp
99
if (Tok.isNot(tok::
eod
)) {
211
if (Tok.isNot(tok::
eod
)) {
263
if (Tok.isNot(tok::
eod
)) {
322
if (Tok.isNot(tok::
eod
)) {
395
if (Tok.isNot(tok::
eod
)) {
455
if (Tok.isNot(tok::
eod
)) {
495
if (Tok.isNot(tok::
eod
)) {
/external/clang/lib/Rewrite/Frontend/
InclusionRewriter.cpp
227
} while (!DirectiveToken.is(tok::
eod
) && DirectiveToken.isNot(tok::eof));
/external/clang/lib/Frontend/
CacheTokens.cpp
290
// Insert an
eod
token into the token cache. It has the same
295
Tmp.setKind(tok::
eod
);
PrintPreprocessedOutput.cpp
483
while (PragmaTok.isNot(tok::
eod
)) {
/external/zlib/src/
make_vms.com
434
$
eod
473
$
eod
588
$
eod
Completed in 1756 milliseconds