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.cpp260 ModuleDeclKind MDK, ModuleIdPath Path, in ActOnModuleDecl()
274 case ModuleDeclKind::Implementation: in ActOnModuleDecl()
275 MDK = ModuleDeclKind::PartitionImplementation; in ActOnModuleDecl()
277 case ModuleDeclKind::Interface: in ActOnModuleDecl()
278 MDK = ModuleDeclKind::PartitionInterface; in ActOnModuleDecl()
295 if (MDK != ModuleDeclKind::Implementation) in ActOnModuleDecl()
302 MDK = ModuleDeclKind::Interface; in ActOnModuleDecl()
393 case ModuleDeclKind::Interface: in ActOnModuleDecl()
394 case ModuleDeclKind::PartitionInterface: { in ActOnModuleDecl()
410 if (MDK == ModuleDeclKind::PartitionInterface) in ActOnModuleDecl()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp2466 Sema::ModuleDeclKind MDK = TryConsumeToken(tok::kw_export) in ParseModuleDecl()
2467 ? Sema::ModuleDeclKind::Interface in ParseModuleDecl()
2468 : Sema::ModuleDeclKind::Implementation; in ParseModuleDecl()
2488 if (MDK == Sema::ModuleDeclKind::Interface) { in ParseModuleDecl()
2499 if (MDK == Sema::ModuleDeclKind::Interface) { in ParseModuleDecl()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h9614 enum class ModuleDeclKind { enum
9639 SourceLocation ModuleLoc, ModuleDeclKind MDK,