/external/llvm/include/llvm/ADT/ |
ScopedHashTable.h | 154 ScopeTy *CurScope; 162 ScopedHashTable() : CurScope(0) {} 163 ScopedHashTable(AllocatorTy A) : CurScope(0), Allocator(A) {} 165 assert(CurScope == 0 && TopLevelMap.empty() && "Scope imbalance!"); 188 insertIntoScope(CurScope, Key, Val); 202 ScopeTy *getCurScope() { return CurScope; } 203 const ScopeTy *getCurScope() const { return CurScope; } 223 PrevScope = HT.CurScope; 224 HT.CurScope = this; 230 assert(HT.CurScope == this && "Scope imbalance!") [all...] |
/external/clang/lib/Parse/ |
Parser.cpp | 31 Actions.CurScope = 0; 329 Actions.CurScope = N; 331 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags); 345 Actions.CurScope = OldScope->getParent(); 357 : CurScope(ManageFlags ? Self->getCurScope() : 0) { 358 if (CurScope) { 359 OldFlags = CurScope->getFlags(); 360 CurScope->setFlags(ScopeFlags); 367 if (CurScope) 368 CurScope->setFlags(OldFlags) [all...] |
ParseStmt.cpp | 465 Actions.ProcessDeclAttributeList(Actions.CurScope, LD, Attrs); [all...] |
/external/clang/lib/Sema/ |
SemaStmt.cpp | 247 Stmt *SubStmt, Scope *CurScope) { [all...] |
SemaExprMember.cpp | 93 Scope *CurScope, 107 if (CurScope->getFlags() & Scope::ThisScope) 217 switch (ClassifyImplicitMemberAccess(*this, CurScope, R)) { [all...] |
SemaLookup.cpp | [all...] |
SemaExpr.cpp | [all...] |
/external/clang/include/clang/Sema/ |
Sema.h | [all...] |
/external/clang/include/clang/Parse/ |
Parser.h | 571 Scope *CurScope; [all...] |