Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DScope.cpp170 if (*NRVO && isDeclScope(*NRVO)) in applyNRVO()
H A DSemaLookup.cpp1333 for (; I != IEnd && S->isDeclScope(*I); ++I) { in CppLookupName()
1342 if (!LeftStartingScope && !Initial->isDeclScope(*I)) in CppLookupName()
1486 for (; I != IEnd && S->isDeclScope(*I); ++I) { in CppLookupName()
2208 if (!LeftStartingScope && !S->isDeclScope(*I)) in LookupName()
2229 while (S && !S->isDeclScope(D)) in LookupName()
2247 if (!S->isDeclScope(*LastI)) in LookupName()
H A DSemaDecl.cpp1526 if (S->isDeclScope(*I) && D->declarationReplaces(*I)) { in PushOnScopeChains()
1544 if (!S->isDeclScope(*I)) in PushOnScopeChains()
2556 assert(EnumScope->isDeclScope(ED)); in MergeTypedefNameDecl()
6359 TemplateParamParent->isDeclScope(TPD); in HandleDeclarator()
14960 if (PrevDecl && S->isDeclScope(PrevDecl)) { in ActOnParamDeclarator()
17543 S->isDeclScope(PrevDecl)) { in ActOnTag()
H A DSemaDeclObjC.cpp4794 if (S->isDeclScope(PrevDecl)) { in ActOnMethodDeclaration()
H A DSemaOpenMP.cpp1696 while (CurScope && CurScope != TopScope && !CurScope->isDeclScope(D)) in isOpenMPLocal()
17932 } while (S && !S->isDeclScope(D)); in buildDeclareReductionRef()
20801 while (S && !S->isDeclScope(D)) in buildUserDefinedMapperRef()
H A DSemaExprCXX.cpp843 if (S->isDeclScope(Var)) { in ActOnCXXThrow()
H A DSemaCodeComplete.cpp5562 if (S->isTemplateParamScope() && S->isDeclScope(D)) in getTemplatedEntity()
H A DSemaDeclCXX.cpp16898 assert(!S->isDeclScope(PrevDecl)); in ActOnExceptionDeclarator()
H A DSemaExpr.cpp14679 if (VD->hasLocalStorage() && getCurScope()->isDeclScope(VD)) in CreateBuiltinBinOp()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScope.h381 bool isDeclScope(const Decl *D) const { return DeclsInScope.contains(D); } in isDeclScope() function