Home
last modified time | relevance | path

Searched refs:UsingLoc (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h3087 SourceLocation UsingLoc; variable
3102 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() argument
3108 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc), in UsingDirectiveDecl()
3156 SourceLocation getUsingLoc() const { return UsingLoc; } in getUsingLoc()
3166 SourceLocation UsingLoc,
3175 return SourceRange(UsingLoc, getLocation()); in getSourceRange()
3946 SourceLocation UsingLoc, in UnresolvedUsingValueDecl() argument
3952 UsingLocation(UsingLoc), EllipsisLoc(EllipsisLoc), in UnresolvedUsingValueDecl()
3994 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc,
4040 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, in UnresolvedUsingTypenameDecl() argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp450 SourceLocation UsingLoc = ConsumeToken(); in ParseUsingDirectiveOrDeclaration() local
470 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDirectiveOrDeclaration()
474 Decl *UsingDir = ParseUsingDirective(Context, UsingLoc, DeclEnd, Attrs); in ParseUsingDirectiveOrDeclaration()
479 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd, Attrs, in ParseUsingDirectiveOrDeclaration()
484 SourceLocation UsingLoc, in ParseUsingDirective() argument
545 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS, in ParseUsingDirective()
621 SourceLocation UsingLoc, SourceLocation &DeclEnd, in ParseUsingDeclaration() argument
637 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDeclaration()
676 getCurScope(), AS, UsingLoc, UELoc, IdentLoc, *IdentInfo, Type, &SS); in ParseUsingDeclaration()
689 UED = Actions.ActOnUsingEnumDeclaration(getCurScope(), AS, UsingLoc, in ParseUsingDeclaration()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp12426 Decl *Sema::ActOnUsingDirective(Scope *S, SourceLocation UsingLoc, in ActOnUsingDirective() argument
12487 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
12523 SourceLocation UsingLoc, in ActOnUsingDeclaration() argument
12575 if (UsingLoc.isInvalid()) { in ActOnUsingDeclaration()
12596 BuildUsingDeclaration(S, AS, UsingLoc, TypenameLoc.isValid(), TypenameLoc, in ActOnUsingDeclaration()
12607 SourceLocation UsingLoc, in ActOnUsingEnumDeclaration() argument
12641 BuildUsingEnumDeclaration(S, AS, UsingLoc, EnumLoc, IdentLoc, TSI, Enum); in ActOnUsingEnumDeclaration()
13036 Scope *S, AccessSpecifier AS, SourceLocation UsingLoc, in BuildUsingDeclaration() argument
13086 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword, in BuildUsingDeclaration()
13093 Diag(UsingLoc, diag::err_using_if_exists_on_ctor); in BuildUsingDeclaration()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3279 SourceLocation UsingLoc, in Create() argument
3288 return new (C, DC) NamespaceAliasDecl(C, DC, UsingLoc, AliasLoc, Alias, in Create()
3478 SourceLocation UsingLoc, in Create() argument
3482 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create()
3506 SourceLocation UsingLoc, in Create() argument
3513 DC, UsingLoc, TypenameLoc, QualifierLoc, TargetNameLoc, in Create()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h3237 Decl *ParseUsingDirective(DeclaratorContext Context, SourceLocation UsingLoc,
3289 SourceLocation UsingLoc,
3294 const ParsedTemplateInfo &TemplateInfo, SourceLocation UsingLoc,
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5236 Decl *ActOnUsingDirective(Scope *CurScope, SourceLocation UsingLoc,
5299 bool CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
5313 bool CheckUsingDeclQualifier(SourceLocation UsingLoc, bool HasTypename,
5326 SourceLocation UsingLoc,
5334 SourceLocation UsingLoc,
5352 SourceLocation UsingLoc,
5357 SourceLocation UsingLoc,
5363 SourceLocation UsingLoc, UnqualifiedId &Name,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1950 D->UsingLoc = readSourceLocation(); in VisitUsingDirectiveDecl()