Home
last modified time | relevance | path

Searched refs:ExportLoc (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp575 SourceLocation ExportLoc, in ActOnModuleImport() argument
629 return ActOnModuleImport(StartLoc, ExportLoc, ImportLoc, Mod, Path); in ActOnModuleImport()
641 SourceLocation ExportLoc, in ActOnModuleImport() argument
700 if (getLangOpts().CPlusPlusModules && ExportLoc.isValid() && in ActOnModuleImport()
702 Diag(ExportLoc, diag::err_export_partition_impl) in ActOnModuleImport()
703 << SourceRange(ExportLoc, Path.back().second); in ActOnModuleImport()
708 if (ExportLoc.isValid() || getEnclosingExportDecl(Import)) in ActOnModuleImport()
712 } else if (ExportLoc.isValid()) { in ActOnModuleImport()
716 Diag(ExportLoc, diag::err_export_not_in_module_interface); in ActOnModuleImport()
844 Decl *Sema::ActOnStartExportDecl(Scope *S, SourceLocation ExportLoc, in ActOnStartExportDecl() argument
[all …]
H A DSemaTemplate.cpp1742 SourceLocation ExportLoc, in ActOnTemplateParameterList() argument
1748 if (ExportLoc.isValid()) in ActOnTemplateParameterList()
1749 Diag(ExportLoc, diag::warn_template_export_unsupported); in ActOnTemplateParameterList()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseTemplate.cpp119 SourceLocation ExportLoc; in ParseTemplateDeclarationOrSpecialization() local
120 TryConsumeToken(tok::kw_export, ExportLoc); in ParseTemplateDeclarationOrSpecialization()
162 CurTemplateDepthTracker.getDepth(), ExportLoc, TemplateLoc, LAngleLoc, in ParseTemplateDeclarationOrSpecialization()
H A DParser.cpp2562 SourceLocation ExportLoc; in ParseModuleImport() local
2563 TryConsumeToken(tok::kw_export, ExportLoc); in ParseModuleImport()
2663 Actions.ActOnModuleImport(StartLoc, ExportLoc, ImportLoc, HeaderUnit); in ParseModuleImport()
2665 Import = Actions.ActOnModuleImport(StartLoc, ExportLoc, ImportLoc, Path, in ParseModuleImport()
H A DParseDeclCXX.cpp458 SourceLocation ExportLoc = ConsumeToken(); in ParseExportDeclaration() local
462 getCurScope(), ExportLoc, in ParseExportDeclaration()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DModule.h421 SourceLocation ExportLoc; member
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h4867 ExportDecl(DeclContext *DC, SourceLocation ExportLoc) in ExportDecl() argument
4868 : Decl(Export, DC, ExportLoc), DeclContext(Export), in ExportDecl()
4873 SourceLocation ExportLoc);
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp2616 SourceLocation ExportLoc = consumeToken(); in parseExportDecl() local
2648 ExportLoc, ParsedModuleId, Wildcard in parseExportDecl()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h9664 SourceLocation ExportLoc,
9668 SourceLocation ExportLoc,
9693 Decl *ActOnStartExportDecl(Scope *S, SourceLocation ExportLoc,
11273 unsigned Depth, SourceLocation ExportLoc, SourceLocation TemplateLoc,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp5744 SourceLocation ExportLoc) { in Create() argument
5745 return new (C, DC) ExportDecl(DC, ExportLoc); in Create()