Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h2883 SourceLocation UsingLoc; variable
2898 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() argument
2904 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc), in UsingDirectiveDecl()
2952 SourceLocation getUsingLoc() const { return UsingLoc; } in getUsingLoc()
2962 SourceLocation UsingLoc,
2971 return SourceRange(UsingLoc, getLocation()); in getSourceRange()
3728 SourceLocation UsingLoc, in UnresolvedUsingValueDecl() argument
3734 UsingLocation(UsingLoc), EllipsisLoc(EllipsisLoc), in UnresolvedUsingValueDecl()
3776 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc,
3829 UsingLoc), in UnresolvedUsingTypenameDecl()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp471 SourceLocation UsingLoc = ConsumeToken(); in ParseUsingDirectiveOrDeclaration() local
491 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDirectiveOrDeclaration()
515 SourceLocation UsingLoc, in ParseUsingDirective() argument
678 SourceLocation UsingLoc, SourceLocation &DeclEnd, in ParseUsingDeclaration() argument
696 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDeclaration()
745 TemplateInfo, UsingLoc, D, DeclEnd, AS, Attrs, &DeclFromDeclSpec); in ParseUsingDeclaration()
756 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDeclaration()
818 const ParsedTemplateInfo &TemplateInfo, SourceLocation UsingLoc, in ParseAliasDeclarationAfterDeclarator() argument
2686 SourceLocation UsingLoc = ConsumeToken(); in ParseCXXClassMemberDeclaration() local
2696 Diag(UsingLoc, diag::err_using_namespace_in_class); in ParseCXXClassMemberDeclaration()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp11542 SourceLocation UsingLoc, in ActOnUsingDeclaration() argument
11594 if (UsingLoc.isInvalid()) { in ActOnUsingDeclaration()
12086 Scope *S, AccessSpecifier AS, SourceLocation UsingLoc, in BuildUsingDeclaration() argument
12143 Diag(UsingLoc, diag::err_using_if_exists_on_ctor); in BuildUsingDeclaration()
12231 getSourceManager().isInSystemHeader(UsingLoc)) in BuildUsingDeclaration()
12627 UsingLoc, in CheckUsingDeclQualifier()
12816 Diag(UsingLoc, diag::err_alias_template_extra_headers) in ActOnAliasDeclaration()
13326 SourceLocation UsingLoc = Shadow->getLocation(); in findInheritingConstructor() local
13342 DeclarationNameInfo NameInfo(Name, UsingLoc); in findInheritingConstructor()
13381 Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/nullptr, in findInheritingConstructor()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp2918 SourceLocation UsingLoc, in Create() argument
2927 return new (C, DC) NamespaceAliasDecl(C, DC, UsingLoc, AliasLoc, Alias, in Create()
3112 SourceLocation UsingLoc, in Create() argument
3116 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create()
3140 SourceLocation UsingLoc, in Create() argument
3147 DC, UsingLoc, TypenameLoc, QualifierLoc, TargetNameLoc, in Create()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h3067 SourceLocation UsingLoc,
3087 SourceLocation UsingLoc,
3092 const ParsedTemplateInfo &TemplateInfo, SourceLocation UsingLoc,
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5712 Decl *ActOnUsingDirective(Scope *CurScope, SourceLocation UsingLoc,
5737 bool CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
5742 bool CheckUsingDeclQualifier(SourceLocation UsingLoc, bool HasTypename,
5750 Scope *S, AccessSpecifier AS, SourceLocation UsingLoc,
5756 SourceLocation UsingLoc,
5772 SourceLocation UsingLoc,
5777 SourceLocation UsingLoc,
5781 SourceLocation UsingLoc, UnqualifiedId &Name,
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1698 D->UsingLoc = readSourceLocation(); in VisitUsingDirectiveDecl()