Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDeclCXX.h2378 SourceLocation UsingLoc;
2400 UsingDirectiveDecl(DeclContext *DC, SourceLocation UsingLoc,
2406 : NamedDecl(UsingDirective, DC, IdentLoc, getName()), UsingLoc(UsingLoc),
2439 SourceLocation getUsingLoc() const { return UsingLoc; }
2449 SourceLocation UsingLoc,
2458 return SourceRange(UsingLoc, getLocation());
2778 SourceLocation UsingLoc,
2783 UsingLocation(UsingLoc), QualifierLoc(QualifierLoc),
2808 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc,
2848 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc,
[all …]
/external/clang/lib/Parse/
DParseDeclCXX.cpp335 SourceLocation UsingLoc = ConsumeToken(); in ParseUsingDirectiveOrDeclaration() local
348 Diag(UsingLoc, diag::err_templated_using_directive) in ParseUsingDirectiveOrDeclaration()
352 return ParseUsingDirective(Context, UsingLoc, DeclEnd, attrs); in ParseUsingDirectiveOrDeclaration()
360 return ParseUsingDeclaration(Context, TemplateInfo, UsingLoc, DeclEnd, in ParseUsingDirectiveOrDeclaration()
375 SourceLocation UsingLoc, in ParseUsingDirective() argument
423 return Actions.ActOnUsingDirective(getCurScope(), UsingLoc, NamespcLoc, SS, in ParseUsingDirective()
440 SourceLocation UsingLoc, in ParseUsingDeclaration() argument
552 Diag(UsingLoc, diag::err_templated_using_declaration) in ParseUsingDeclaration()
576 UsingLoc, Name, TypeAlias); in ParseUsingDeclaration()
579 return Actions.ActOnUsingDeclaration(getCurScope(), AS, true, UsingLoc, SS, in ParseUsingDeclaration()
[all …]
/external/clang/lib/AST/
DDeclCXX.cpp1864 SourceLocation UsingLoc, in Create() argument
1872 return new (C) NamespaceAliasDecl(DC, UsingLoc, AliasLoc, Alias, in Create()
1950 SourceLocation UsingLoc, in Create() argument
1953 return new (C) UnresolvedUsingValueDecl(DC, C.DependentTy, UsingLoc, in Create()
1969 SourceLocation UsingLoc, in Create() argument
1974 return new (C) UnresolvedUsingTypenameDecl(DC, UsingLoc, TypenameLoc, in Create()
/external/clang/lib/Sema/
DSemaDeclCXX.cpp5814 SourceLocation UsingLoc, in ActOnUsingDirective() argument
5875 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
5910 SourceLocation UsingLoc, in ActOnUsingDeclaration() argument
5960 UsingLoc = Name.getLocStart(); in ActOnUsingDeclaration()
5962 Diag(UsingLoc, diag::warn_access_decl_deprecated) in ActOnUsingDeclaration()
5970 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS, in ActOnUsingDeclaration()
6214 SourceLocation UsingLoc, in BuildUsingDeclaration() argument
6254 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous)) in BuildUsingDeclaration()
6258 if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc)) in BuildUsingDeclaration()
6268 UsingLoc, TypenameLoc, in BuildUsingDeclaration()
[all …]
/external/clang/include/clang/Parse/
DParser.h2083 SourceLocation UsingLoc,
2088 SourceLocation UsingLoc,
/external/clang/include/clang/Sema/
DSema.h2969 SourceLocation UsingLoc,
2992 bool CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
2997 bool CheckUsingDeclQualifier(SourceLocation UsingLoc,
3002 SourceLocation UsingLoc,
3015 SourceLocation UsingLoc,
3024 SourceLocation UsingLoc,
/external/clang/lib/Serialization/
DASTReaderDecl.cpp1045 D->UsingLoc = ReadSourceLocation(Record, Idx); in VisitUsingDirectiveDecl()