Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaModule.cpp194 case ModuleDeclKind::Implementation: in ActOnModuleDecl()
197 case ModuleDeclKind::Interface: in ActOnModuleDecl()
198 MDK = ModuleDeclKind::PartitionInterface; in ActOnModuleDecl()
215 if (MDK != ModuleDeclKind::Implementation) in ActOnModuleDecl()
222 MDK = ModuleDeclKind::Interface; in ActOnModuleDecl()
316 case ModuleDeclKind::Interface: in ActOnModuleDecl()
317 case ModuleDeclKind::PartitionInterface: { in ActOnModuleDecl()
333 if (MDK == ModuleDeclKind::PartitionInterface) in ActOnModuleDecl()
339 case ModuleDeclKind::Implementation: { in ActOnModuleDecl()
365 case ModuleDeclKind::PartitionImplementation: in ActOnModuleDecl()
[all …]
/openbsd/gnu/llvm/clang/lib/Parse/
H A DParser.cpp2393 Sema::ModuleDeclKind MDK = TryConsumeToken(tok::kw_export) in ParseModuleDecl()
2394 ? Sema::ModuleDeclKind::Interface in ParseModuleDecl()
2395 : Sema::ModuleDeclKind::Implementation; in ParseModuleDecl()
2415 if (MDK == Sema::ModuleDeclKind::Interface) { in ParseModuleDecl()
2426 if (MDK == Sema::ModuleDeclKind::Interface) { in ParseModuleDecl()
/openbsd/gnu/llvm/clang/include/clang/Sema/
H A DSema.h3139 enum class ModuleDeclKind { enum
3170 SourceLocation ModuleLoc, ModuleDeclKind MDK,