HomeSort by relevance Sort by last modified time
    Searched refs:CurScope (Results 1 - 15 of 15) sorted by null

  /external/llvm/include/llvm/ADT/
ScopedHashTable.h 155 ScopeTy *CurScope;
163 ScopedHashTable() : CurScope(nullptr) {}
164 ScopedHashTable(AllocatorTy A) : CurScope(0), Allocator(A) {}
166 assert(!CurScope && 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/Sema/
SemaLambda.cpp 474 void Sema::addLambdaParameters(CXXMethodDecl *CallOperator, Scope *CurScope) {
481 if (CurScope && Param->getIdentifier()) {
482 CheckShadow(CurScope, Param);
484 PushOnScopeChains(Param, CurScope);
    [all...]
SemaOpenMP.cpp 92 Scope *CurScope;
95 Scope *CurScope, SourceLocation Loc)
97 Directive(DKind), DirectiveName(std::move(Name)), CurScope(CurScope),
101 Directive(OMPD_unknown), DirectiveName(), CurScope(nullptr),
122 Scope *CurScope, SourceLocation Loc) {
123 Stack.push_back(SharingMapTy(DKind, DirName, CurScope, Loc));
193 Scope *getCurScope() const { return Stack.back().CurScope; }
194 Scope *getCurScope() { return Stack.back().CurScope; }
336 TopScope = I->CurScope ? I->CurScope->getParent() : nullptr
    [all...]
SemaStmt.cpp 400 Stmt *SubStmt, Scope *CurScope) {
    [all...]
SemaExprMember.cpp 92 Scope *CurScope,
239 switch (ClassifyImplicitMemberAccess(*this, CurScope, R)) {
    [all...]
Sema.cpp 106 VarDataSharingAttributesStack(nullptr), CurScope(nullptr),
    [all...]
SemaLookup.cpp     [all...]
SemaExpr.cpp     [all...]
SemaTemplate.cpp     [all...]
  /external/clang/lib/Parse/
Parser.cpp 59 Actions.CurScope = nullptr;
356 Actions.CurScope = N;
358 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
371 Actions.CurScope = OldScope->getParent();
383 : CurScope(ManageFlags ? Self->getCurScope() : nullptr) {
384 if (CurScope) {
385 OldFlags = CurScope->getFlags();
386 CurScope->setFlags(ScopeFlags);
393 if (CurScope)
394 CurScope->setFlags(OldFlags)
    [all...]
ParseStmt.cpp 585 Actions.ProcessDeclAttributeList(Actions.CurScope, LD, Attrs);
    [all...]
ParseDecl.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 656 FixupList &CurScope = TableInfo.FixupStack.back();
658 resolveTableFixups(Table, CurScope, Table.size());
659 CurScope.clear();
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 802 Scope *CurScope;
    [all...]

Completed in 151 milliseconds