Home
last modified time | relevance | path

Searched refs:ModuleDeclKind (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp265 ModuleDeclKind MDK, ModuleIdPath Path, in ActOnModuleDecl()
280 case ModuleDeclKind::Implementation: in ActOnModuleDecl()
281 MDK = ModuleDeclKind::PartitionImplementation; in ActOnModuleDecl()
283 case ModuleDeclKind::Interface: in ActOnModuleDecl()
284 MDK = ModuleDeclKind::PartitionInterface; in ActOnModuleDecl()
301 if (MDK != ModuleDeclKind::Implementation) in ActOnModuleDecl()
308 MDK = ModuleDeclKind::Interface; in ActOnModuleDecl()
396 case ModuleDeclKind::Interface: in ActOnModuleDecl()
397 case ModuleDeclKind::PartitionInterface: { in ActOnModuleDecl()
413 if (MDK == ModuleDeclKind::PartitionInterface) in ActOnModuleDecl()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp2347 Sema::ModuleDeclKind MDK = TryConsumeToken(tok::kw_export) in ParseModuleDecl()
2348 ? Sema::ModuleDeclKind::Interface in ParseModuleDecl()
2349 : Sema::ModuleDeclKind::Implementation; in ParseModuleDecl()
2370 if (MDK == Sema::ModuleDeclKind::Interface) { in ParseModuleDecl()
2381 if (MDK == Sema::ModuleDeclKind::Interface) { in ParseModuleDecl()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h9811 enum class ModuleDeclKind { enum
9836 SourceLocation ModuleLoc, ModuleDeclKind MDK,