Home
last modified time | relevance | path

Searched refs:ModuleOwnershipKind (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h216 enum class ModuleOwnershipKind : unsigned char { enum
249 llvm::PointerIntPair<Decl *, 3, ModuleOwnershipKind> NextInContextAndBits;
374 static ModuleOwnershipKind getModuleOwnershipKindForChildOf(DeclContext *DC) { in getModuleOwnershipKindForChildOf()
378 if (MOK != ModuleOwnershipKind::Unowned && in getModuleOwnershipKindForChildOf()
384 return ModuleOwnershipKind::Unowned; in getModuleOwnershipKindForChildOf()
649 return getModuleOwnershipKind() == ModuleOwnershipKind::ModulePrivate; in isModulePrivate()
667 return getModuleOwnershipKind() > ModuleOwnershipKind::VisibleWhenImported; in isInvisibleOutsideTheOwningModule()
702 if (getModuleOwnershipKind() == ModuleOwnershipKind::Unowned) in setModulePrivate()
704 setModuleOwnershipKind(ModuleOwnershipKind::ModulePrivate); in setModulePrivate()
831 return getModuleOwnershipKind() != ModuleOwnershipKind::Unowned; in hasOwningModule()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp177 TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ReachableWhenImported); in ActOnGlobalModuleFragmentDecl()
219 TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::Visible); in HandleStartOfHeaderUnit()
471 TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ReachableWhenImported); in ActOnModuleDecl()
567 TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ModulePrivate); in ActOnPrivateModuleFragmentDecl()
778 ? Decl::ModuleOwnershipKind::VisibleWhenImported in ActOnAnnotModuleBegin()
779 : Decl::ModuleOwnershipKind::Visible); in ActOnAnnotModuleBegin()
820 Decl::ModuleOwnershipKind::Unowned); in ActOnAnnotModuleEnd()
912 D->setModuleOwnershipKind(Decl::ModuleOwnershipKind::VisibleWhenImported); in ActOnStartExportDecl()
H A DSemaExprCXX.cpp3069 Decl::ModuleOwnershipKind::ReachableWhenImported); in DeclareGlobalNewDelete()
3084 Decl::ModuleOwnershipKind::ReachableWhenImported); in DeclareGlobalNewDelete()
3217 Decl::ModuleOwnershipKind::ReachableWhenImported); in DeclareGlobalAllocationFunction()
H A DSemaDeclCXX.cpp11707 Dcl->setModuleOwnershipKind(Decl::ModuleOwnershipKind::VisibleWhenImported); in ActOnFinishNamespaceDef()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp582 (Decl::ModuleOwnershipKind)DeclBits.getNextBits(/*Width=*/3); in VisitDecl()
642 (ModuleOwnership == Decl::ModuleOwnershipKind::ModulePrivate); in VisitDecl()
645 case Decl::ModuleOwnershipKind::Visible: in VisitDecl()
646 ModuleOwnership = Decl::ModuleOwnershipKind::VisibleWhenImported; in VisitDecl()
648 case Decl::ModuleOwnershipKind::Unowned: in VisitDecl()
649 case Decl::ModuleOwnershipKind::VisibleWhenImported: in VisitDecl()
650 case Decl::ModuleOwnershipKind::ReachableWhenImported: in VisitDecl()
651 case Decl::ModuleOwnershipKind::ModulePrivate: in VisitDecl()
673 D->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ModulePrivate); in VisitDecl()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp1187 case Decl::ModuleOwnershipKind::Unowned: in isExportedFromModuleInterfaceUnit()
1188 case Decl::ModuleOwnershipKind::ReachableWhenImported: in isExportedFromModuleInterfaceUnit()
1189 case Decl::ModuleOwnershipKind::ModulePrivate: in isExportedFromModuleInterfaceUnit()
1191 case Decl::ModuleOwnershipKind::Visible: in isExportedFromModuleInterfaceUnit()
1192 case Decl::ModuleOwnershipKind::VisibleWhenImported: in isExportedFromModuleInterfaceUnit()
H A DDeclBase.cpp381 (getModuleOwnershipKind() != ModuleOwnershipKind::VisibleWhenImported || in setLexicalDeclContext()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp353 member->setModuleOwnershipKind(clang::Decl::ModuleOwnershipKind::Visible); in SetMemberOwningModule()
1182 decl->setModuleOwnershipKind(clang::Decl::ModuleOwnershipKind::Visible); in SetOwningModule()