Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h2881 SourceLocation UsingLoc; variable
2896 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() argument
2902 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc), in UsingDirectiveDecl()
2950 SourceLocation getUsingLoc() const { return UsingLoc; } in getUsingLoc()
2960 SourceLocation UsingLoc,
2969 return SourceRange(UsingLoc, getLocation()); in getSourceRange()
3620 SourceLocation UsingLoc, in UnresolvedUsingValueDecl() argument
3626 UsingLocation(UsingLoc), EllipsisLoc(EllipsisLoc), in UnresolvedUsingValueDecl()
3668 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc,
3714 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, in UnresolvedUsingTypenameDecl() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A 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()
504 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd, in ParseUsingDirectiveOrDeclaration()
519 SourceLocation UsingLoc, in ParseUsingDirective() argument
580 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS, in ParseUsingDirective()
676 SourceLocation UsingLoc, SourceLocation &DeclEnd, in ParseUsingDeclaration() argument
709 TemplateInfo, UsingLoc, D, DeclEnd, AS, Attrs, &DeclFromDeclSpec); in ParseUsingDeclaration()
723 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDeclaration()
751 Decl *UD = Actions.ActOnUsingDeclaration(getCurScope(), AS, UsingLoc, in ParseUsingDeclaration()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclCXX.cpp11438 Decl *Sema::ActOnUsingDirective(Scope *S, SourceLocation UsingLoc, in ActOnUsingDirective() argument
11501 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
11535 SourceLocation UsingLoc, in ActOnUsingDeclaration() argument
11587 if (UsingLoc.isInvalid()) { in ActOnUsingDeclaration()
11608 BuildUsingDeclaration(S, AS, UsingLoc, TypenameLoc.isValid(), TypenameLoc, in ActOnUsingDeclaration()
12001 Scope *S, AccessSpecifier AS, SourceLocation UsingLoc, in BuildUsingDeclaration() argument
12064 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword, in BuildUsingDeclaration()
12069 if (CheckUsingDeclQualifier(UsingLoc, HasTypenameKeyword, SS, NameInfo, in BuildUsingDeclaration()
12080 UsingLoc, TypenameLoc, in BuildUsingDeclaration()
12085 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc, in BuildUsingDeclaration()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclCXX.cpp2932 SourceLocation UsingLoc, in Create() argument
2941 return new (C, DC) NamespaceAliasDecl(C, DC, UsingLoc, AliasLoc, Alias, in Create()
3107 SourceLocation UsingLoc, in Create() argument
3111 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create()
3135 SourceLocation UsingLoc, in Create() argument
3142 DC, UsingLoc, TypenameLoc, QualifierLoc, TargetNameLoc, in Create()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h3039 SourceLocation UsingLoc,
3059 SourceLocation UsingLoc,
3063 const ParsedTemplateInfo &TemplateInfo, SourceLocation UsingLoc,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h5661 Decl *ActOnUsingDirective(Scope *CurScope, SourceLocation UsingLoc,
5685 bool CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
5690 bool CheckUsingDeclQualifier(SourceLocation UsingLoc,
5697 Scope *S, AccessSpecifier AS, SourceLocation UsingLoc,
5714 SourceLocation UsingLoc,
5720 SourceLocation UsingLoc, UnqualifiedId &Name,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp1685 D->UsingLoc = readSourceLocation(); in VisitUsingDirectiveDecl()