Home
last modified time | relevance | path

Searched refs:DeclCtx (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DObjectFilePCHContainerOperations.cpp210 auto *DeclCtx = D->getDeclContext(); in HandleTagDeclDefinition() local
211 while (DeclCtx) { in HandleTagDeclDefinition()
212 if (auto *D = dyn_cast<TagDecl>(DeclCtx)) in HandleTagDeclDefinition()
215 DeclCtx = DeclCtx->getParent(); in HandleTagDeclDefinition()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclBase.h268 llvm::PointerUnion<DeclContext*, MultipleDC*> DeclCtx; variable
270 bool isInSemaDC() const { return DeclCtx.is<DeclContext*>(); } in isInSemaDC()
271 bool isOutOfSemaDC() const { return DeclCtx.is<MultipleDC*>(); } in isOutOfSemaDC()
274 return DeclCtx.get<MultipleDC*>(); in getMultipleDC()
278 return DeclCtx.get<DeclContext*>(); in getSemanticDC()
382 DeclCtx(DC), Loc(L), DeclKind(DK), InvalidDecl(false), HasAttrs(false), in Decl()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSemaInternal.h214 DeclContext* DeclCtx; member
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclBase.cpp328 DeclCtx = DC; in setDeclContext()
358 DeclCtx = SemaDC; in setDeclContextsImpl()
363 DeclCtx = MDC; in setDeclContextsImpl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2903 const AnalysisDeclContext *DeclCtx = in emitReport() local
2909 if (DeclCtx->isBodyAutosynthesized() && in emitReport()
2910 !DeclCtx->isBodyAutosynthesizedFromModelFile()) in emitReport()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaLookup.cpp4432 DeclContext *Ctx = NSI.DeclCtx; in performQualifiedLookups()