/external/clang/include/clang/AST/ |
D | DeclCXX.h | 2041 SourceLocation UsingLoc; 2063 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, 2069 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc), 2102 SourceLocation getUsingLoc() const { return UsingLoc; } 2112 SourceLocation UsingLoc, 2120 return SourceRange(UsingLoc, getLocation()); 2428 SourceLocation UsingLoc, 2433 UsingLocation(UsingLoc), QualifierLoc(QualifierLoc), 2458 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc, 2493 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, [all …]
|
/external/clang/lib/Parse/ |
D | ParseDeclCXX.cpp | 322 SourceLocation UsingLoc = ConsumeToken(); in ParseUsingDirectiveOrDeclaration() local 334 Diag(UsingLoc, diag::err_templated_using_directive) in ParseUsingDirectiveOrDeclaration() 338 return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs); in ParseUsingDirectiveOrDeclaration() 346 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd, in ParseUsingDirectiveOrDeclaration() 361 SourceLocation UsingLoc, in ParseUsingDirective() argument 408 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS, in ParseUsingDirective() 425 SourceLocation UsingLoc, in ParseUsingDeclaration() argument 534 Diag(UsingLoc, diag::err_templated_using_declaration) in ParseUsingDeclaration() 549 UsingLoc, Name, TypeAlias); in ParseUsingDeclaration() 552 return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS, in ParseUsingDeclaration() [all …]
|
/external/clang/lib/AST/ |
D | DeclCXX.cpp | 1608 SourceLocation UsingLoc, in Create() argument 1616 return new (C) NamespaceAliasDecl(DC, UsingLoc, AliasLoc, Alias, in Create() 1667 SourceLocation UsingLoc, in Create() argument 1670 return new (C) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create() 1676 SourceLocation UsingLoc, in Create() argument 1681 return new (C) UnresolvedUsingTypenameDecl(DC, UsingLoc, TypenameLoc, in Create()
|
/external/clang/lib/Sema/ |
D | SemaDeclCXX.cpp | 4884 SourceLocation UsingLoc, in ActOnUsingDirective() argument 4945 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective() 4979 SourceLocation UsingLoc, in ActOnUsingDeclaration() argument 5025 UsingLoc = Name.getSourceRange().getBegin(); in ActOnUsingDeclaration() 5027 Diag(UsingLoc, diag::warn_access_decl_deprecated) in ActOnUsingDeclaration() 5035 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS, in ActOnUsingDeclaration() 5279 SourceLocation UsingLoc, in BuildUsingDeclaration() argument 5319 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous)) in BuildUsingDeclaration() 5323 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc)) in BuildUsingDeclaration() 5333 UsingLoc, TypenameLoc, in BuildUsingDeclaration() [all …]
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 1770 SourceLocation UsingLoc, 1775 SourceLocation UsingLoc,
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2525 SourceLocation UsingLoc, 2548 bool CheckUsingDeclRedeclaration(SourceLocation UsingLoc, 2553 bool CheckUsingDeclQualifier(SourceLocation UsingLoc, 2558 SourceLocation UsingLoc, 2571 SourceLocation UsingLoc, 2580 SourceLocation UsingLoc,
|
/external/clang/lib/Serialization/ |
D | ASTReaderDecl.cpp | 840 D->UsingLoc = ReadSourceLocation(Record, Idx); in VisitUsingDirectiveDecl()
|