OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CurPTHLexer
(Results
1 - 6
of
6
) sorted by null
/external/clang/lib/Lex/
PPLexerChange.cpp
142
CurPTHLexer
.reset(PL);
143
CurPPLexer =
CurPTHLexer
.get();
297
assert(
CurPTHLexer
&& "Got EOF but no current lexer set!");
298
CurPTHLexer
->getEOF(Result);
299
CurPTHLexer
.reset();
371
assert(
CurPTHLexer
&& "Got EOF but no current lexer set!");
372
CurPTHLexer
->getEOF(Result);
373
CurPTHLexer
.reset();
PPDirectives.cpp
250
if (
CurPTHLexer
) {
459
assert(
CurPTHLexer
);
460
assert(
CurPTHLexer
->LexingRawMode == false);
463
if (
CurPTHLexer
->SkipBlock()) {
467
bool InCond =
CurPTHLexer
->popConditionalLevel(CondInfo);
486
PPConditionalInfo &CondInfo =
CurPTHLexer
->peekConditionalLevel();
495
CurPTHLexer
->ParsingPreprocessorDirective = true;
497
CurPTHLexer
->ParsingPreprocessorDirective = false;
507
PPConditionalInfo &CondInfo =
CurPTHLexer
->peekConditionalLevel();
520
CurPTHLexer
->ParsingPreprocessorDirective = true
[
all
...]
Preprocessor.cpp
334
else if (
CurPTHLexer
)
PPMacroExpansion.cpp
175
else if (
CurPTHLexer
)
176
Val =
CurPTHLexer
->isNextPPTokenLParen();
[
all
...]
Pragma.cpp
367
CurPTHLexer
->DiscardToEndOfLine();
[
all
...]
/external/clang/include/clang/Lex/
Preprocessor.h
245
/// Only one of CurLexer,
CurPTHLexer
, or CurTokenLexer will be non-null.
248
///
CurPTHLexer
- This is the current top of stack that we're lexing from if
250
/// Only one of CurLexer,
CurPTHLexer
, or CurTokenLexer will be non-null.
251
OwningPtr<PTHLexer>
CurPTHLexer
;
255
///
CurPTHLexer
.
724
case CLK_PTHLexer:
CurPTHLexer
->Lex(Result); break;
[
all
...]
Completed in 2762 milliseconds