Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DIdentifierResolver.cpp109 if (S->isDeclScope(D)) in isDeclInScope()
127 if (S->isDeclScope(D)) in isDeclInScope()
131 return S->getParent()->isDeclScope(D); in isDeclInScope()
H A DScope.cpp124 if (isDeclScope(Candidate)) in mergeNRVOIntoParent()
H A DSemaLookup.cpp1101 for (; I != IEnd && S->isDeclScope(*I); ++I) { in CppLookupName()
1110 if (!LeftStartingScope && !Initial->isDeclScope(*I)) in CppLookupName()
1270 for (; I != IEnd && S->isDeclScope(*I); ++I) { in CppLookupName()
1766 if (!LeftStartingScope && !S->isDeclScope(*I)) in LookupName()
1787 while (S && !S->isDeclScope(D)) in LookupName()
1805 if (!S->isDeclScope(*LastI)) in LookupName()
H A DSemaDecl.cpp1372 if (S->isDeclScope(*I) && D->declarationReplaces(*I)) { in PushOnScopeChains()
1390 if (!S->isDeclScope(*I)) in PushOnScopeChains()
2195 assert(EnumScope->isDeclScope(ED)); in MergeTypedefNameDecl()
12422 } else if (S->isDeclScope(PrevDecl)) { in ActOnParamDeclarator()
14529 S->isDeclScope(PrevDecl)) { in ActOnTag()
H A DSemaDeclObjC.cpp4586 if (S->isDeclScope(PrevDecl)) { in ActOnMethodDeclaration()
H A DSemaExprCXX.cpp732 if (S->isDeclScope(Var)) { in ActOnCXXThrow()
H A DSemaOpenMP.cpp1080 while (CurScope != TopScope && !CurScope->isDeclScope(D)) in isOpenMPLocal()
10602 } while (S && !S->isDeclScope(D)); in buildDeclareReductionRef()
H A DSemaDeclCXX.cpp13853 assert(!S->isDeclScope(PrevDecl)); in ActOnExceptionDeclarator()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DScope.h321 bool isDeclScope(Decl *D) { in isDeclScope() function