Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDeclCXX.h2618 SourceLocation UsingLoc; variable
2641 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc, in UsingDirectiveDecl() argument
2647 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc), in UsingDirectiveDecl()
2680 SourceLocation getUsingLoc() const { return UsingLoc; } in getUsingLoc()
2690 SourceLocation UsingLoc,
2699 return SourceRange(UsingLoc, getLocation()); in getSourceRange()
3200 SourceLocation UsingLoc, in UnresolvedUsingValueDecl() argument
3205 UsingLocation(UsingLoc), QualifierLoc(QualifierLoc), in UnresolvedUsingValueDecl()
3233 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc,
3279 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.cpp2123 SourceLocation UsingLoc, in Create() argument
2132 return new (C, DC) NamespaceAliasDecl(C, DC, UsingLoc, AliasLoc, Alias, in Create()
2249 SourceLocation UsingLoc, in Create() argument
2252 return new (C, DC) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create()
2274 SourceLocation UsingLoc, in Create() argument
2280 DC, UsingLoc, TypenameLoc, QualifierLoc, TargetNameLoc, in Create()
/external/clang/lib/Sema/
DSemaDeclCXX.cpp7704 SourceLocation UsingLoc, in ActOnUsingDirective() argument
7768 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
7805 SourceLocation UsingLoc, in ActOnUsingDeclaration() argument
7862 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS, in ActOnUsingDeclaration()
8233 SourceLocation UsingLoc, in BuildUsingDeclaration() argument
8289 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword, in BuildUsingDeclaration()
8294 if (CheckUsingDeclQualifier(UsingLoc, SS, NameInfo, IdentLoc)) in BuildUsingDeclaration()
8304 UsingLoc, TypenameLoc, in BuildUsingDeclaration()
8308 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc, in BuildUsingDeclaration()
8318 UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc, in BuildUsingDeclaration()
[all …]
/external/clang/include/clang/Parse/
DParser.h2405 SourceLocation UsingLoc,
2410 SourceLocation UsingLoc,
/external/clang/include/clang/Sema/
DSema.h4217 SourceLocation UsingLoc,
4242 bool CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
4247 bool CheckUsingDeclQualifier(SourceLocation UsingLoc,
4253 SourceLocation UsingLoc,
4273 SourceLocation UsingLoc,
4282 SourceLocation UsingLoc,
/external/clang/lib/Serialization/
DASTReaderDecl.cpp1437 D->UsingLoc = ReadSourceLocation(Record, Idx); in VisitUsingDirectiveDecl()