Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h3010 SourceLocation UsingLoc; variable
3025 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() argument
3031 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc), in UsingDirectiveDecl()
3079 SourceLocation getUsingLoc() const { return UsingLoc; } in getUsingLoc()
3089 SourceLocation UsingLoc,
3098 return SourceRange(UsingLoc, getLocation()); in getSourceRange()
3870 SourceLocation UsingLoc, in UnresolvedUsingValueDecl() argument
3876 UsingLocation(UsingLoc), EllipsisLoc(EllipsisLoc), in UnresolvedUsingValueDecl()
3918 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc,
3971 UsingLoc), in UnresolvedUsingTypenameDecl()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp483 SourceLocation UsingLoc = ConsumeToken(); in ParseUsingDirectiveOrDeclaration() local
503 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDirectiveOrDeclaration()
527 SourceLocation UsingLoc, in ParseUsingDirective() argument
692 SourceLocation UsingLoc, SourceLocation &DeclEnd, in ParseUsingDeclaration() argument
708 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDeclaration()
741 getCurScope(), AS, UsingLoc, UELoc, IdentLoc, *IdentInfo, &SS); in ParseUsingDeclaration()
806 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDeclaration()
869 const ParsedTemplateInfo &TemplateInfo, SourceLocation UsingLoc, in ParseAliasDeclarationAfterDeclarator() argument
2802 SourceLocation UsingLoc = ConsumeToken(); in ParseCXXClassMemberDeclaration() local
2812 Diag(UsingLoc, diag::err_using_namespace_in_class); in ParseCXXClassMemberDeclaration()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp12279 SourceLocation UsingLoc, in ActOnUsingDeclaration() argument
12331 if (UsingLoc.isInvalid()) { in ActOnUsingDeclaration()
12833 Scope *S, AccessSpecifier AS, SourceLocation UsingLoc, in BuildUsingDeclaration() argument
12890 Diag(UsingLoc, diag::err_using_if_exists_on_ctor); in BuildUsingDeclaration()
12978 getSourceManager().isInSystemHeader(UsingLoc)) in BuildUsingDeclaration()
13375 UsingLoc, in CheckUsingDeclQualifier()
13564 Diag(UsingLoc, diag::err_alias_template_extra_headers) in ActOnAliasDeclaration()
14075 SourceLocation UsingLoc = Shadow->getLocation(); in findInheritingConstructor() local
14091 DeclarationNameInfo NameInfo(Name, UsingLoc); in findInheritingConstructor()
14131 Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/nullptr, in findInheritingConstructor()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3023 SourceLocation UsingLoc, in Create() argument
3032 return new (C, DC) NamespaceAliasDecl(C, DC, UsingLoc, AliasLoc, Alias, in Create()
3223 SourceLocation UsingLoc, in Create() argument
3227 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create()
3251 SourceLocation UsingLoc, in Create() argument
3258 DC, UsingLoc, TypenameLoc, QualifierLoc, TargetNameLoc, in Create()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h3214 SourceLocation UsingLoc,
3234 SourceLocation UsingLoc,
3239 const ParsedTemplateInfo &TemplateInfo, SourceLocation UsingLoc,
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h6297 Decl *ActOnUsingDirective(Scope *CurScope, SourceLocation UsingLoc,
6322 bool CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6327 bool CheckUsingDeclQualifier(SourceLocation UsingLoc, bool HasTypename,
6335 Scope *S, AccessSpecifier AS, SourceLocation UsingLoc,
6341 SourceLocation UsingLoc,
6358 SourceLocation UsingLoc,
6363 SourceLocation UsingLoc,
6369 SourceLocation UsingLoc, UnqualifiedId &Name,
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1942 D->UsingLoc = readSourceLocation(); in VisitUsingDirectiveDecl()