Home
last modified time | relevance | path

Searched refs:GlobalModuleFragment (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaModule.cpp78 ModuleScopes.back().Module->Kind == Module::GlobalModuleFragment) { in ActOnGlobalModuleFragmentDecl()
248 SeenGMF == (bool)this->GlobalModuleFragment) && in ActOnModuleDecl()
373 if (!this->GlobalModuleFragment) { in ActOnModuleDecl()
422 switch (ModuleScopes.empty() ? Module::GlobalModuleFragment in ActOnPrivateModuleFragmentDecl()
425 case Module::GlobalModuleFragment: in ActOnPrivateModuleFragmentDecl()
982 if (!GlobalModuleFragment) { in PushGlobalModuleFragment()
984 GlobalModuleFragment = Map.createGlobalModuleFragmentForModuleUnit( in PushGlobalModuleFragment()
988 assert(GlobalModuleFragment && "module creation should not fail"); in PushGlobalModuleFragment()
991 ModuleScopes.push_back({BeginLoc, GlobalModuleFragment, in PushGlobalModuleFragment()
996 VisibleModules.setVisible(GlobalModuleFragment, BeginLoc); in PushGlobalModuleFragment()
[all …]
H A DSemaExprCXX.cpp3026 if (GlobalModuleFragment) { in DeclareGlobalNewDelete()
3029 getStdBadAlloc()->setLocalOwningModule(GlobalModuleFragment); in DeclareGlobalNewDelete()
3041 if (GlobalModuleFragment) { in DeclareGlobalNewDelete()
3044 AlignValT->setLocalOwningModule(GlobalModuleFragment); in DeclareGlobalNewDelete()
3173 if (GlobalModuleFragment) { in DeclareGlobalAllocationFunction()
3176 Alloc->setLocalOwningModule(GlobalModuleFragment); in DeclareGlobalAllocationFunction()
H A DSemaLookup.cpp1582 if (M == GlobalModuleFragment || in isUsableModule()
1871 if (M->isGlobalModule() && M != this->GlobalModuleFragment) in isModuleVisible()
H A DSema.cpp1209 ModuleScopes.back().Module->Kind == Module::GlobalModuleFragment && in ActOnEndOfTranslationUnit()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DModule.h124 GlobalModuleFragment, enumerator
173 bool isGlobalModule() const { return Kind == GlobalModuleFragment; } in isGlobalModule()
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DFrontendActions.cpp772 case Module::GlobalModuleFragment: in ModuleKindName()
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DModuleMap.cpp857 Result->Kind = Module::GlobalModuleFragment; in createGlobalModuleFragmentForModuleUnit()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDecl.cpp1601 case Module::GlobalModuleFragment: { in getOwningModuleForLinkage()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h2285 clang::Module *GlobalModuleFragment = nullptr; variable