Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp188 case ModuleDeclKind::Implementation: in ActOnModuleDecl()
189 MDK = ModuleDeclKind::PartitionImplementation; in ActOnModuleDecl()
191 case ModuleDeclKind::Interface: in ActOnModuleDecl()
192 MDK = ModuleDeclKind::PartitionInterface; in ActOnModuleDecl()
209 if (MDK != ModuleDeclKind::Implementation) in ActOnModuleDecl()
216 MDK = ModuleDeclKind::Interface; in ActOnModuleDecl()
307 case ModuleDeclKind::Interface: in ActOnModuleDecl()
308 case ModuleDeclKind::PartitionInterface: { in ActOnModuleDecl()
324 if (MDK == ModuleDeclKind::PartitionInterface) in ActOnModuleDecl()
330 case ModuleDeclKind::Implementation: { in ActOnModuleDecl()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp2442 Sema::ModuleDeclKind MDK = TryConsumeToken(tok::kw_export) in ParseModuleDecl()
2443 ? Sema::ModuleDeclKind::Interface in ParseModuleDecl()
2444 : Sema::ModuleDeclKind::Implementation; in ParseModuleDecl()
2464 if (MDK == Sema::ModuleDeclKind::Interface) { in ParseModuleDecl()
2475 if (MDK == Sema::ModuleDeclKind::Interface) { in ParseModuleDecl()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h3202 enum class ModuleDeclKind { enum
3233 SourceLocation ModuleLoc, ModuleDeclKind MDK,