Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h2558 SourceLocation UsingLoc; variable
2581 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() argument
2587 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc), in UsingDirectiveDecl()
2620 SourceLocation getUsingLoc() const { return UsingLoc; } in getUsingLoc()
2630 SourceLocation UsingLoc,
2639 return SourceRange(UsingLoc, getLocation()); in getSourceRange()
3028 SourceLocation UsingLoc, in UnresolvedUsingValueDecl() argument
3033 UsingLocation(UsingLoc), QualifierLoc(QualifierLoc), in UnresolvedUsingValueDecl()
3061 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc,
3107 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, in UnresolvedUsingTypenameDecl() argument
[all …]
/minix3/external/bsd/llvm/dist/clang/lib/Parse/
H A DParseDeclCXX.cpp383 SourceLocation UsingLoc = ConsumeToken(); in ParseUsingDirectiveOrDeclaration() local
396 Diag(UsingLoc, diag::err_templated_using_directive) in ParseUsingDirectiveOrDeclaration()
400 return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs); in ParseUsingDirectiveOrDeclaration()
408 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd, in ParseUsingDirectiveOrDeclaration()
423 SourceLocation UsingLoc, in ParseUsingDirective() argument
471 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS, in ParseUsingDirective()
488 SourceLocation UsingLoc, in ParseUsingDeclaration() argument
642 Diag(UsingLoc, diag::err_templated_using_declaration) in ParseUsingDeclaration()
666 UsingLoc, Name, Attrs.getList(), in ParseUsingDeclaration()
671 /* HasUsingKeyword */ true, UsingLoc, in ParseUsingDeclaration()
[all …]
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DDeclCXX.cpp2015 SourceLocation UsingLoc, in Create() argument
2024 return new (C, DC) NamespaceAliasDecl(C, DC, UsingLoc, AliasLoc, Alias, in Create()
2108 SourceLocation UsingLoc, in Create() argument
2111 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create()
2133 SourceLocation UsingLoc, in Create() argument
2139 DC, UsingLoc, TypenameLoc, QualifierLoc, TargetNameLoc, in Create()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaDeclCXX.cpp7452 SourceLocation UsingLoc, in ActOnUsingDirective() argument
7517 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
7554 SourceLocation UsingLoc, in ActOnUsingDeclaration() argument
7611 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS, in ActOnUsingDeclaration()
7943 SourceLocation UsingLoc, in BuildUsingDeclaration() argument
7990 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword, in BuildUsingDeclaration()
7995 if (CheckUsingDeclQualifier(UsingLoc, SS, NameInfo, IdentLoc)) in BuildUsingDeclaration()
8005 UsingLoc, TypenameLoc, in BuildUsingDeclaration()
8009 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc, in BuildUsingDeclaration()
8019 UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc, NameInfo, in BuildUsingDeclaration()
[all …]
/minix3/external/bsd/llvm/dist/clang/include/clang/Parse/
H A DParser.h2268 SourceLocation UsingLoc,
2273 SourceLocation UsingLoc,
/minix3/external/bsd/llvm/dist/clang/include/clang/Sema/
H A DSema.h3931 SourceLocation UsingLoc,
3956 bool CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
3961 bool CheckUsingDeclQualifier(SourceLocation UsingLoc,
3967 SourceLocation UsingLoc,
3980 SourceLocation UsingLoc,
3989 SourceLocation UsingLoc,
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp1243 D->UsingLoc = ReadSourceLocation(Record, Idx); in VisitUsingDirectiveDecl()