HomeSort by: relevance | last modified time | path
    Searched refs:CurScope (Results 1 - 16 of 16) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
ScopedHashTable.h 163 ScopeTy *CurScope = nullptr;
174 assert(!CurScope && TopLevelMap.empty() && "Scope imbalance!");
195 insertIntoScope(CurScope, Key, Val);
209 ScopeTy *getCurScope() { return CurScope; }
210 const ScopeTy *getCurScope() const { return CurScope; }
230 PrevScope = HT.CurScope;
231 HT.CurScope = this;
237 assert(HT.CurScope == this && "Scope imbalance!");
238 HT.CurScope = PrevScope;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaLambda.cpp 541 CXXMethodDecl *CallOperator, Scope *CurScope) {
548 if (CurScope && Param->getIdentifier()) {
561 CheckShadow(CurScope, Param);
563 PushOnScopeChains(Param, CurScope);
891 Scope *CurScope) {
899 auto *TemplateParamScope = CurScope->getTemplateParamParent();
907 KnownDependent = CurScope->getTemplateParamParent() != nullptr;
958 MethodTyInfo = GetTypeForDeclarator(ParamInfo, CurScope);
994 ProcessDeclAttributes(CurScope, Method, ParamInfo);
1008 PushDeclContext(CurScope, Method)
    [all...]
SemaOpenMP.cpp 162 Scope *CurScope = nullptr;
197 Scope *CurScope, SourceLocation Loc)
198 : Directive(DKind), DirectiveName(Name), CurScope(CurScope),
370 Scope *CurScope, SourceLocation Loc) {
376 Stack.back().first.emplace_back(DKind, DirName, CurScope, Loc);
921 return Top ? Top->CurScope : nullptr;
1537 if (I->CurScope) {
1538 Scope *TopScope = I->CurScope->getParent();
1539 Scope *CurScope = getCurScope()
    [all...]
SemaStmt.cpp 524 Stmt *SubStmt, Scope *CurScope) {
2079 Scope *BreakParent = CurScope->getBreakParent();
2087 } else if (BCFinder.ContinueFound() && CurScope->getContinueParent()) {
3278 Sema::ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope) {
3279 Scope *S = CurScope->getContinueParent();
3296 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) {
3297 Scope *S = CurScope->getBreakParent();
3917 Scope *CurScope) {
3931 CurScope->addNRVOCandidate(VD);
3933 CurScope->setNoNRVO()
    [all...]
SemaLookup.cpp 4099 Scope *S = CurScope;
4105 Res = LookupSingleName(CurScope, II, Loc, LookupLabel, NotForRedeclaration);
4113 Scope *S = CurScope->getFnParent();
SemaExpr.cpp 15273 void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) {
15287 PushBlockScope(CurScope, Block);
15289 if (CurScope)
15290 PushDeclContext(CurScope, Block);
15303 Scope *CurScope) {
15309 TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope);
15403 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
15420 void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
15433 Stmt *Body, Scope *CurScope) {
Sema.cpp 185 CurScope(nullptr), Ident_super(nullptr), Ident___float128(nullptr) {
SemaTemplate.cpp 4998 LookupParsedName(Result, CurScope, &SS);
10596 LookupName(Result, CurScope);
SemaExprCXX.cpp 8588 TypeResult T = ActOnTypenameType(CurScope, TypenameKWLoc, SS,
  /src/external/apache2/llvm/dist/clang/lib/Parse/
Parser.cpp 59 Actions.CurScope = nullptr;
407 Actions.CurScope = N;
409 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
422 Actions.CurScope = OldScope->getParent();
434 : CurScope(ManageFlags ? Self->getCurScope() : nullptr) {
435 if (CurScope) {
436 OldFlags = CurScope->getFlags();
437 CurScope->setFlags(ScopeFlags);
444 if (CurScope)
445 CurScope->setFlags(OldFlags)
    [all...]
ParseCXXInlineMethods.cpp 728 Actions.ActOnReenterFunctionContext(Actions.CurScope, D);
ParseStmt.cpp 670 Actions.ProcessDeclAttributeList(Actions.CurScope, LD, attrs);
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 4652 Stmt *SubStmt, Scope *CurScope);
4732 StmtResult ActOnContinueStmt(SourceLocation ContinueLoc, Scope *CurScope);
4733 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);
4735 void ActOnCapturedRegionStart(SourceLocation Loc, Scope *CurScope,
4738 void ActOnCapturedRegionStart(SourceLocation Loc, Scope *CurScope,
4767 Scope *CurScope);
4818 Scope *CurScope);
4848 StmtResult ActOnSEHLeaveStmt(SourceLocation Loc, Scope *CurScope);
5563 void ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope);
5568 Scope *CurScope);
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 684 FixupList &CurScope = TableInfo.FixupStack.back();
686 resolveTableFixups(Table, CurScope, Table.size());
687 CurScope.clear();
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 1153 Scope *CurScope;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 5692 auto CurScope = GetScope(*ItCurrent);
5697 GetScope(*ItNext) == CurScope);

Completed in 104 milliseconds