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 DIdentifierResolver.cpp117 if (S->isDeclScope(D)) in isDeclInScope()
137 if (S->isDeclScope(D)) in isDeclInScope()
141 return S->getParent()->isDeclScope(D); in isDeclInScope()
H A DScope.cpp167 if (*NRVO && isDeclScope(*NRVO)) in applyNRVO()
H A DSemaLookup.cpp1321 for (; I != IEnd && S->isDeclScope(*I); ++I) { in CppLookupName()
1330 if (!LeftStartingScope && !Initial->isDeclScope(*I)) in CppLookupName()
1474 for (; I != IEnd && S->isDeclScope(*I); ++I) { in CppLookupName()
2215 if (!LeftStartingScope && !S->isDeclScope(*I)) in LookupName()
2236 while (S && !S->isDeclScope(D)) in LookupName()
2254 if (!S->isDeclScope(*LastI)) in LookupName()
H A DSemaDecl.cpp1589 if (S->isDeclScope(*I) && D->declarationReplaces(*I)) { in PushOnScopeChains()
1607 if (!S->isDeclScope(*I)) in PushOnScopeChains()
2701 assert(EnumScope->isDeclScope(ED)); in MergeTypedefNameDecl()
15161 if (PrevDecl && S->isDeclScope(PrevDecl)) { in ActOnParamDeclarator()
17738 S->isDeclScope(PrevDecl)) { in ActOnTag()
H A DSemaDeclObjC.cpp4784 if (S->isDeclScope(PrevDecl)) { in ActOnMethodDeclaration()
H A DSemaExprCXX.cpp851 if (S->isDeclScope(Var)) { in ActOnCXXThrow()
H A DSemaOpenMP.cpp1691 while (CurScope && CurScope != TopScope && !CurScope->isDeclScope(D)) in isOpenMPLocal()
19131 } while (S && !S->isDeclScope(D)); in buildDeclareReductionRef()
21980 while (S && !S->isDeclScope(D)) in buildUserDefinedMapperRef()
H A DSemaCodeComplete.cpp5547 if (S->isTemplateParamScope() && S->isDeclScope(D)) in getTemplatedEntity()
H A DSemaDeclCXX.cpp17042 assert(!S->isDeclScope(PrevDecl)); in ActOnExceptionDeclarator()
H A DSemaExpr.cpp15683 if (VD->hasLocalStorage() && getCurScope()->isDeclScope(VD)) in CreateBuiltinBinOp()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScope.h362 bool isDeclScope(const Decl *D) const { return DeclsInScope.contains(D); } in isDeclScope() function