Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDeclCXX.h2552 SourceLocation UsingLoc; variable
2575 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() argument
2581 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc), in UsingDirectiveDecl()
2614 SourceLocation getUsingLoc() const { return UsingLoc; } in getUsingLoc()
2624 SourceLocation UsingLoc,
2633 return SourceRange(UsingLoc, getLocation()); in getSourceRange()
3022 SourceLocation UsingLoc, in UnresolvedUsingValueDecl() argument
3027 UsingLocation(UsingLoc), QualifierLoc(QualifierLoc), in UnresolvedUsingValueDecl()
3055 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc,
3101 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, in UnresolvedUsingTypenameDecl() argument
[all …]
/external/clang/lib/Parse/
DParseDeclCXX.cpp389 SourceLocation UsingLoc = ConsumeToken(); in ParseUsingDirectiveOrDeclaration() local
402 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDirectiveOrDeclaration()
406 return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs); in ParseUsingDirectiveOrDeclaration()
414 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd, in ParseUsingDirectiveOrDeclaration()
429 SourceLocation UsingLoc, in ParseUsingDirective() argument
477 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS, in ParseUsingDirective()
494 SourceLocation UsingLoc, in ParseUsingDeclaration() argument
653 Diag(UsingLoc, diag::err_templated_using_directive_declaration) in ParseUsingDeclaration()
677 UsingLoc, Name, Attrs.getList(), in ParseUsingDeclaration()
682 /* HasUsingKeyword */ true, UsingLoc, in ParseUsingDeclaration()
[all …]
/external/clang/lib/AST/
DDeclCXX.cpp2043 SourceLocation UsingLoc, in Create() argument
2052 return new (C, DC) NamespaceAliasDecl(C, DC, UsingLoc, AliasLoc, Alias, in Create()
2136 SourceLocation UsingLoc, in Create() argument
2139 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create()
2161 SourceLocation UsingLoc, in Create() argument
2167 DC, UsingLoc, TypenameLoc, QualifierLoc, TargetNameLoc, in Create()
/external/clang/lib/Sema/
DSemaDeclCXX.cpp7539 SourceLocation UsingLoc, in ActOnUsingDirective() argument
7604 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
7641 SourceLocation UsingLoc, in ActOnUsingDeclaration() argument
7698 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS, in ActOnUsingDeclaration()
8035 SourceLocation UsingLoc, in BuildUsingDeclaration() argument
8082 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword, in BuildUsingDeclaration()
8087 if (CheckUsingDeclQualifier(UsingLoc, SS, NameInfo, IdentLoc)) in BuildUsingDeclaration()
8097 UsingLoc, TypenameLoc, in BuildUsingDeclaration()
8101 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc, in BuildUsingDeclaration()
8111 UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc, NameInfo, in BuildUsingDeclaration()
[all …]
/external/clang/include/clang/Parse/
DParser.h2355 SourceLocation UsingLoc,
2360 SourceLocation UsingLoc,
/external/clang/include/clang/Sema/
DSema.h4124 SourceLocation UsingLoc,
4149 bool CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
4154 bool CheckUsingDeclQualifier(SourceLocation UsingLoc,
4160 SourceLocation UsingLoc,
4173 SourceLocation UsingLoc,
4182 SourceLocation UsingLoc,
/external/clang/lib/Serialization/
DASTReaderDecl.cpp1370 D->UsingLoc = ReadSourceLocation(Record, Idx); in VisitUsingDirectiveDecl()