Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
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,
3822 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, in UnresolvedUsingTypenameDecl() argument
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/
DParseDeclCXX.cpp471 SourceLocation UsingLoc = ConsumeToken(); in ParseUsingDirectiveOrDeclaration() local
491 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDirectiveOrDeclaration()
495 Decl *UsingDir = ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs); in ParseUsingDirectiveOrDeclaration()
500 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd, attrs, in ParseUsingDirectiveOrDeclaration()
515 SourceLocation UsingLoc, in ParseUsingDirective() argument
576 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS, in ParseUsingDirective()
678 SourceLocation UsingLoc, SourceLocation &DeclEnd, in ParseUsingDeclaration() argument
696 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDeclaration()
702 Decl *UED = Actions.ActOnUsingEnumDeclaration(getCurScope(), AS, UsingLoc, in ParseUsingDeclaration()
745 TemplateInfo, UsingLoc, D, DeclEnd, AS, Attrs, &DeclFromDeclSpec); in ParseUsingDeclaration()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaDeclCXX.cpp11445 Decl *Sema::ActOnUsingDirective(Scope *S, SourceLocation UsingLoc, in ActOnUsingDirective() argument
11508 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
11542 SourceLocation UsingLoc, in ActOnUsingDeclaration() argument
11594 if (UsingLoc.isInvalid()) { in ActOnUsingDeclaration()
11615 BuildUsingDeclaration(S, AS, UsingLoc, TypenameLoc.isValid(), TypenameLoc, in ActOnUsingDeclaration()
11626 SourceLocation UsingLoc, in ActOnUsingEnumDeclaration() argument
11650 auto *UD = BuildUsingEnumDeclaration(S, AS, UsingLoc, EnumLoc, in ActOnUsingEnumDeclaration()
12086 Scope *S, AccessSpecifier AS, SourceLocation UsingLoc, in BuildUsingDeclaration() argument
12136 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword, in BuildUsingDeclaration()
12143 Diag(UsingLoc, diag::err_using_if_exists_on_ctor); in BuildUsingDeclaration()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
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-12-stable/contrib/llvm-project/clang/include/clang/Parse/
DParser.h3067 SourceLocation UsingLoc,
3087 SourceLocation UsingLoc,
3092 const ParsedTemplateInfo &TemplateInfo, SourceLocation UsingLoc,
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
DSema.h5715 Decl *ActOnUsingDirective(Scope *CurScope, SourceLocation UsingLoc,
5740 bool CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
5745 bool CheckUsingDeclQualifier(SourceLocation UsingLoc, bool HasTypename,
5753 Scope *S, AccessSpecifier AS, SourceLocation UsingLoc,
5759 SourceLocation UsingLoc,
5775 SourceLocation UsingLoc,
5780 SourceLocation UsingLoc,
5784 SourceLocation UsingLoc, UnqualifiedId &Name,
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReaderDecl.cpp1698 D->UsingLoc = readSourceLocation(); in VisitUsingDirectiveDecl()