Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseTemplate.cpp96 SourceLocation ExportLoc; in ParseTemplateDeclarationOrSpecialization() local
97 TryConsumeToken(tok::kw_export, ExportLoc); in ParseTemplateDeclarationOrSpecialization()
137 CurTemplateDepthTracker.getDepth(), ExportLoc, TemplateLoc, LAngleLoc, in ParseTemplateDeclarationOrSpecialization()
H A DParseDeclCXX.cpp418 SourceLocation ExportLoc = ConsumeToken(); in ParseExportDeclaration() local
422 getCurScope(), ExportLoc, in ParseExportDeclaration()
441 Diag(ExportLoc, diag::err_export_empty) in ParseExportDeclaration()
442 << SourceRange(ExportLoc, Tok.getLocation()); in ParseExportDeclaration()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DModule.h297 SourceLocation ExportLoc; member
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDecl.h4223 ExportDecl(DeclContext *DC, SourceLocation ExportLoc) in ExportDecl() argument
4224 : Decl(Export, DC, ExportLoc), DeclContext(Export), in ExportDecl()
4229 SourceLocation ExportLoc);
/freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/
H A DModuleMap.cpp2441 SourceLocation ExportLoc = consumeToken(); in parseExportDecl() local
2473 ExportLoc, ParsedModuleId, Wildcard in parseExportDecl()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDecl.cpp4702 SourceLocation ExportLoc) { in Create() argument
4703 return new (C, DC) ExportDecl(DC, ExportLoc); in Create()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaTemplate.cpp1243 SourceLocation ExportLoc, in ActOnTemplateParameterList() argument
1249 if (ExportLoc.isValid()) in ActOnTemplateParameterList()
1250 Diag(ExportLoc, diag::warn_template_export_unsupported); in ActOnTemplateParameterList()
H A DSemaDecl.cpp17257 Decl *Sema::ActOnStartExportDecl(Scope *S, SourceLocation ExportLoc, in ActOnStartExportDecl() argument
17259 ExportDecl *D = ExportDecl::Create(Context, CurContext, ExportLoc); in ActOnStartExportDecl()
17265 Diag(ExportLoc, diag::err_export_not_in_module_interface); in ActOnStartExportDecl()
17273 Diag(ExportLoc, diag::err_export_within_export); in ActOnStartExportDecl()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h2160 Decl *ActOnStartExportDecl(Scope *S, SourceLocation ExportLoc,
6220 SourceLocation ExportLoc,