OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MacroExpandingLexersStack
(Results
1 - 3
of
3
) sorted by null
/external/clang/lib/Lex/
PPMacroExpansion.cpp
818
for (unsigned i = 0, e =
MacroExpandingLexersStack
.size(); i != e; ++i) {
821
llvm::tie(prevLexer, tokIndex) =
MacroExpandingLexersStack
[i];
826
MacroExpandingLexersStack
.push_back(std::make_pair(tokLexer, newIndex));
831
assert(!
MacroExpandingLexersStack
.empty());
832
size_t tokIndex =
MacroExpandingLexersStack
.back().second;
836
MacroExpandingLexersStack
.pop_back();
[
all
...]
PPLexerChange.cpp
464
if (!
MacroExpandingLexersStack
.empty() &&
465
MacroExpandingLexersStack
.back().first == CurTokenLexer.get())
/external/clang/include/clang/Lex/
Preprocessor.h
360
std::vector<std::pair<TokenLexer *, size_t> >
MacroExpandingLexersStack
;
[
all
...]
Completed in 271 milliseconds