HomeSort by: relevance | last modified time | path
    Searched refs:ModuleOwnershipKind (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclBase.h 219 enum class ModuleOwnershipKind : unsigned {
244 /// The extra two bits are used for the ModuleOwnershipKind.
245 llvm::PointerIntPair<Decl *, 2, ModuleOwnershipKind> NextInContextAndBits;
359 static ModuleOwnershipKind getModuleOwnershipKindForChildOf(DeclContext *DC) {
363 if (MOK != ModuleOwnershipKind::Unowned &&
369 return ModuleOwnershipKind::Unowned;
613 return getModuleOwnershipKind() == ModuleOwnershipKind::ModulePrivate;
629 if (getModuleOwnershipKind() == ModuleOwnershipKind::Unowned)
631 setModuleOwnershipKind(ModuleOwnershipKind::ModulePrivate);
769 return getModuleOwnershipKind() != ModuleOwnershipKind::Unowned
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaModule.cpp 83 TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::Visible);
238 TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ModulePrivate);
300 TU->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ModulePrivate);
455 ? Decl::ModuleOwnershipKind::VisibleWhenImported
456 : Decl::ModuleOwnershipKind::Visible);
497 Decl::ModuleOwnershipKind::Unowned);
579 D->setModuleOwnershipKind(Decl::ModuleOwnershipKind::VisibleWhenImported);
SemaDeclCXX.cpp 11069 Dcl->setModuleOwnershipKind(Decl::ModuleOwnershipKind::VisibleWhenImported);
  /src/external/apache2/llvm/dist/clang/lib/AST/
Decl.cpp 581 case Decl::ModuleOwnershipKind::Unowned:
582 case Decl::ModuleOwnershipKind::ModulePrivate:
584 case Decl::ModuleOwnershipKind::Visible:
585 case Decl::ModuleOwnershipKind::VisibleWhenImported:
DeclBase.cpp 350 (getModuleOwnershipKind() != ModuleOwnershipKind::VisibleWhenImported ||
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 611 ModulePrivate ? Decl::ModuleOwnershipKind::ModulePrivate
612 : Decl::ModuleOwnershipKind::VisibleWhenImported);
629 D->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ModulePrivate);

Completed in 37 milliseconds