Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDeclCXX.h2041 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/
DParseDeclCXX.cpp322 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/
DDeclCXX.cpp1608 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/
DSemaDeclCXX.cpp4884 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/
DParser.h1770 SourceLocation UsingLoc,
1775 SourceLocation UsingLoc,
/external/clang/include/clang/Sema/
DSema.h2525 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/
DASTReaderDecl.cpp840 D->UsingLoc = ReadSourceLocation(Record, Idx); in VisitUsingDirectiveDecl()