Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DIdentifierResolver.cpp108 if (S->isDeclScope(D)) in isDeclInScope()
126 if (S->isDeclScope(D)) in isDeclInScope()
130 return S->getParent()->isDeclScope(D); in isDeclInScope()
H A DScope.cpp123 if (isDeclScope(Candidate)) in mergeNRVOIntoParent()
H A DSemaLookup.cpp1295 for (; I != IEnd && S->isDeclScope(*I); ++I) { in CppLookupName()
1304 if (!LeftStartingScope && !Initial->isDeclScope(*I)) in CppLookupName()
1449 for (; I != IEnd && S->isDeclScope(*I); ++I) { in CppLookupName()
1945 if (!LeftStartingScope && !S->isDeclScope(*I)) in LookupName()
1966 while (S && !S->isDeclScope(D)) in LookupName()
1984 if (!S->isDeclScope(*LastI)) in LookupName()
H A DSemaDecl.cpp1491 if (S->isDeclScope(*I) && D->declarationReplaces(*I)) { in PushOnScopeChains()
1509 if (!S->isDeclScope(*I)) in PushOnScopeChains()
2322 assert(EnumScope->isDeclScope(ED)); in MergeTypedefNameDecl()
13710 } else if (S->isDeclScope(PrevDecl)) { in ActOnParamDeclarator()
15986 S->isDeclScope(PrevDecl)) { in ActOnTag()
H A DSemaDeclObjC.cpp4764 if (S->isDeclScope(PrevDecl)) { in ActOnMethodDeclaration()
H A DSemaOpenMP.cpp1540 while (CurScope && CurScope != TopScope && !CurScope->isDeclScope(D)) in isOpenMPLocal()
16055 } while (S && !S->isDeclScope(D)); in buildDeclareReductionRef()
18814 while (S && !S->isDeclScope(D)) in buildUserDefinedMapperRef()
H A DSemaExprCXX.cpp818 if (S->isDeclScope(Var)) { in ActOnCXXThrow()
H A DSemaCodeComplete.cpp5153 if (S->isTemplateParamScope() && S->isDeclScope(D)) in getTemplatedEntity()
H A DSemaDeclCXX.cpp16060 assert(!S->isDeclScope(PrevDecl)); in ActOnExceptionDeclarator()
H A DSemaExpr.cpp14042 if (VD->hasLocalStorage() && getCurScope()->isDeclScope(VD)) in CreateBuiltinBinOp()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DScope.h340 bool isDeclScope(const Decl *D) const { return DeclsInScope.count(D) != 0; } in isDeclScope() function