Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclCXX.h2931 SourceLocation UsingLoc; variable
2946 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() argument
2952 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc), in UsingDirectiveDecl()
3000 SourceLocation getUsingLoc() const { return UsingLoc; } in getUsingLoc()
3010 SourceLocation UsingLoc,
3019 return SourceRange(UsingLoc, getLocation()); in getSourceRange()
3790 SourceLocation UsingLoc, in UnresolvedUsingValueDecl() argument
3796 UsingLocation(UsingLoc), EllipsisLoc(EllipsisLoc), in UnresolvedUsingValueDecl()
3838 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc,
3884 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, in UnresolvedUsingTypenameDecl() argument
[all …]
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseDeclCXX.cpp488 SourceLocation UsingLoc = ConsumeToken(); in ParseUsingDirectiveOrDeclaration() local
508 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDirectiveOrDeclaration()
512 Decl *UsingDir = ParseUsingDirective(Context, UsingLoc, DeclEnd, Attrs); in ParseUsingDirectiveOrDeclaration()
517 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd, Attrs, in ParseUsingDirectiveOrDeclaration()
532 SourceLocation UsingLoc, in ParseUsingDirective() argument
593 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS, in ParseUsingDirective()
696 SourceLocation UsingLoc, SourceLocation &DeclEnd, in ParseUsingDeclaration() argument
712 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDeclaration()
745 getCurScope(), AS, UsingLoc, UELoc, IdentLoc, *IdentInfo, &SS); in ParseUsingDeclaration()
795 TemplateInfo, UsingLoc, D, DeclEnd, AS, Attrs, &DeclFromDeclSpec); in ParseUsingDeclaration()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDeclCXX.cpp11743 Decl *Sema::ActOnUsingDirective(Scope *S, SourceLocation UsingLoc, in ActOnUsingDirective() argument
11806 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
11840 SourceLocation UsingLoc, in ActOnUsingDeclaration() argument
11892 if (UsingLoc.isInvalid()) { in ActOnUsingDeclaration()
11913 BuildUsingDeclaration(S, AS, UsingLoc, TypenameLoc.isValid(), TypenameLoc, in ActOnUsingDeclaration()
11924 SourceLocation UsingLoc, in ActOnUsingEnumDeclaration() argument
11958 BuildUsingEnumDeclaration(S, AS, UsingLoc, EnumLoc, IdentLoc, TSI, Enum); in ActOnUsingEnumDeclaration()
12394 Scope *S, AccessSpecifier AS, SourceLocation UsingLoc, in BuildUsingDeclaration() argument
12444 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword, in BuildUsingDeclaration()
12451 Diag(UsingLoc, diag::err_using_if_exists_on_ctor); in BuildUsingDeclaration()
[all …]
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDeclCXX.cpp2969 SourceLocation UsingLoc, in Create() argument
2978 return new (C, DC) NamespaceAliasDecl(C, DC, UsingLoc, AliasLoc, Alias, in Create()
3169 SourceLocation UsingLoc, in Create() argument
3173 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create()
3197 SourceLocation UsingLoc, in Create() argument
3204 DC, UsingLoc, TypenameLoc, QualifierLoc, TargetNameLoc, in Create()
/openbsd-src/gnu/llvm/clang/include/clang/Parse/
H A DParser.h3150 SourceLocation UsingLoc,
3170 SourceLocation UsingLoc,
3175 const ParsedTemplateInfo &TemplateInfo, SourceLocation UsingLoc,
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h6144 Decl *ActOnUsingDirective(Scope *CurScope, SourceLocation UsingLoc,
6169 bool CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
6174 bool CheckUsingDeclQualifier(SourceLocation UsingLoc, bool HasTypename,
6182 Scope *S, AccessSpecifier AS, SourceLocation UsingLoc,
6188 SourceLocation UsingLoc,
6205 SourceLocation UsingLoc,
6210 SourceLocation UsingLoc,
6216 SourceLocation UsingLoc, UnqualifiedId &Name,
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderDecl.cpp1865 D->UsingLoc = readSourceLocation(); in VisitUsingDirectiveDecl()