OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CurPPLexer
(Results
1 - 6
of
6
) sorted by null
/external/clang/lib/Lex/
PPLexerChange.cpp
53
return
CurPPLexer
;
114
if (
CurPPLexer
|| CurTokenLexer)
118
CurPPLexer
= TheLexer;
138
if (
CurPPLexer
|| CurTokenLexer)
143
CurPPLexer
= CurPTHLexer.get();
149
FileID FID =
CurPPLexer
->getFileID();
242
if (
CurPPLexer
) { // Not ending a macro, ignore it.
244
CurPPLexer
->MIOpt.GetControllingMacroAtEndOfFile()) {
247
SourceMgr.getFileEntryForID(
CurPPLexer
->getFileID())) {
250
CurPPLexer
->MIOpt.GetDefinedMacro())
[
all
...]
PPDirectives.cpp
245
assert(!CurTokenLexer &&
CurPPLexer
&& "Lexing a macro, not a file?");
247
CurPPLexer
->pushConditionalLevel(IfTokenLoc, /*isSkipping*/false,
257
CurPPLexer
->LexingRawMode = true;
273
while (!
CurPPLexer
->ConditionalStack.empty()) {
275
Diag(
CurPPLexer
->ConditionalStack.back().IfLoc,
277
CurPPLexer
->ConditionalStack.pop_back();
291
CurPPLexer
->ParsingPreprocessorDirective = true;
301
CurPPLexer
->ParsingPreprocessorDirective = false;
317
CurPPLexer
->ParsingPreprocessorDirective = false;
334
CurPPLexer
->ParsingPreprocessorDirective = false
[
all
...]
Pragma.cpp
120
|| (
CurPPLexer
&&
CurPPLexer
->ParsingPreprocessorDirective))
363
assert(
CurPPLexer
&& "No current lexer?");
382
if (
CurPPLexer
)
CurPPLexer
->LexingRawMode = true;
384
if (
CurPPLexer
)
CurPPLexer
->LexingRawMode = false;
451
CurPPLexer
->LexIncludeFilename(FilenameTok);
633
CurPPLexer
->LexIncludeFilename(SourceFilenameTok);
665
CurPPLexer
->LexIncludeFilename(ReplaceFilenameTok)
[
all
...]
Preprocessor.cpp
68
CodeCompletionReached(0), SkipMainFilePreamble(0, true),
CurPPLexer
(0),
642
if (II.isPoisoned() &&
CurPPLexer
) {
PPMacroExpansion.cpp
184
if (
CurPPLexer
)
221
if (
CurPPLexer
)
CurPPLexer
->MIOpt.ExpandedMacro();
[
all
...]
/external/clang/include/clang/Lex/
Preprocessor.h
253
///
CurPPLexer
- This is the current top of the stack what we're lexing from
256
PreprocessorLexer *
CurPPLexer
;
503
return
CurPPLexer
== L;
509
PreprocessorLexer *getCurrentLexer() const { return
CurPPLexer
; }
[
all
...]
Completed in 729 milliseconds