Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DObjectFilePCHContainerOperations.cpp211 auto *DeclCtx = D->getDeclContext(); in HandleTagDeclDefinition() local
212 while (DeclCtx) { in HandleTagDeclDefinition()
213 if (auto *D = dyn_cast<TagDecl>(DeclCtx)) in HandleTagDeclDefinition()
216 DeclCtx = DeclCtx->getParent(); in HandleTagDeclDefinition()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclBase.h263 llvm::PointerUnion<DeclContext*, MultipleDC*> DeclCtx; variable
265 bool isInSemaDC() const { return DeclCtx.is<DeclContext*>(); } in isInSemaDC()
266 bool isOutOfSemaDC() const { return DeclCtx.is<MultipleDC*>(); } in isOutOfSemaDC()
269 return DeclCtx.get<MultipleDC*>(); in getMultipleDC()
273 return DeclCtx.get<DeclContext*>(); in getSemanticDC()
370 DeclCtx(DC), Loc(L), DeclKind(DK), InvalidDecl(false), HasAttrs(false), in Decl()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSemaInternal.h249 DeclContext* DeclCtx; member
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDeclBase.cpp296 DeclCtx = DC; in setDeclContext()
326 DeclCtx = SemaDC; in setDeclContextsImpl()
331 DeclCtx = MDC; in setDeclContextsImpl()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2698 const AnalysisDeclContext *DeclCtx = in emitReport() local
2704 if (DeclCtx->isBodyAutosynthesized() && in emitReport()
2705 !DeclCtx->isBodyAutosynthesizedFromModelFile()) in emitReport()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaLookup.cpp4153 DeclContext *Ctx = NSI.DeclCtx; in performQualifiedLookups()