Home
last modified time | relevance | path

Searched refs:isDeclScope (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DScope.cpp170 if (*NRVO && isDeclScope(*NRVO)) in applyNRVO()
H A DSemaLookup.cpp1348 for (; I != IEnd && S->isDeclScope(*I); ++I) { in CppLookupName()
1357 if (!LeftStartingScope && !Initial->isDeclScope(*I)) in CppLookupName()
1501 for (; I != IEnd && S->isDeclScope(*I); ++I) { in CppLookupName()
2246 if (!LeftStartingScope && !S->isDeclScope(*I)) in LookupName()
2267 while (S && !S->isDeclScope(D)) in LookupName()
2285 if (!S->isDeclScope(*LastI)) in LookupName()
H A DSemaOpenACC.cpp615 if (CurScope->isDeclScope(D)) { in CheckDeclReference()
H A DSemaDecl.cpp1543 if (S->isDeclScope(*I) && D->declarationReplaces(*I)) { in PushOnScopeChains()
1561 if (!S->isDeclScope(*I)) in PushOnScopeChains()
2651 assert(EnumScope->isDeclScope(ECD)); in CleanupMergedEnum()
6474 TemplateParamParent->isDeclScope(TPD); in HandleDeclarator()
15387 if (PrevDecl && S->isDeclScope(PrevDecl)) { in ActOnParamDeclarator()
18051 S->isDeclScope(PrevDecl)) { in ActOnTag()
H A DSemaDeclObjC.cpp4748 if (S->isDeclScope(PrevDecl)) { in ActOnMethodParmDeclaration()
H A DSemaOpenMP.cpp1672 while (CurScope && CurScope != TopScope && !CurScope->isDeclScope(D)) in isOpenMPLocal()
18555 } while (S && !S->isDeclScope(D)); in buildDeclareReductionRef()
21466 while (S && !S->isDeclScope(D)) in buildUserDefinedMapperRef()
21668 while (S && !S->isDeclScope(D)) in hasUserDefinedMapper()
H A DSemaExprCXX.cpp830 if (S->isDeclScope(Var)) { in ActOnCXXThrow()
H A DSemaCodeComplete.cpp5709 if (S->isTemplateParamScope() && S->isDeclScope(D)) in getTemplatedEntity()
H A DSemaDeclCXX.cpp17374 assert(!S->isDeclScope(PrevDecl)); in ActOnExceptionDeclarator()
H A DSemaExpr.cpp15040 if (VD->hasLocalStorage() && getCurScope()->isDeclScope(VD)) in CreateBuiltinBinOp()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScope.h386 bool isDeclScope(const Decl *D) const { return DeclsInScope.contains(D); } in isDeclScope() function