Searched defs:TypenameLoc (Results 1 - 6 of 6) sorted by relevance
/external/clang/lib/Parse/ |
H A D | Parser.cpp | 1462 SourceLocation TypenameLoc = ConsumeToken(); local 1492 Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS, 1506 Ty = Actions.ActOnTypenameType(getCurScope(), TypenameLoc, SS, 1523 Tok.setLocation(TypenameLoc);
|
H A D | ParseDeclCXX.cpp | 453 SourceLocation TypenameLoc; local 466 TypenameLoc = ConsumeToken(); 537 Diag(TypenameLoc, diag::err_alias_declaration_not_identifier) 538 << FixItHint::CreateRemoval(SourceRange(TypenameLoc, 539 SS.isNotEmpty() ? SS.getEndLoc() : TypenameLoc)); 582 << FixItHint::CreateRemoval(SourceRange(TypenameLoc)); 599 IsTypeName, TypenameLoc);
|
/external/clang/lib/AST/ |
H A D | DeclCXX.cpp | 1964 SourceLocation TypenameLoc, 1968 return new (C) UnresolvedUsingTypenameDecl(DC, UsingLoc, TypenameLoc, 1962 Create(ASTContext &C, DeclContext *DC, SourceLocation UsingLoc, SourceLocation TypenameLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TargetNameLoc, DeclarationName TargetName) argument
|
/external/clang/include/clang/AST/ |
H A D | DeclCXX.h | 2908 SourceLocation TypenameLoc, 2914 TypenameLocation(TypenameLoc), QualifierLoc(QualifierLoc) { } 2936 SourceLocation TypenameLoc, NestedNameSpecifierLoc QualifierLoc, 2907 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc, SourceLocation TypenameLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TargetNameLoc, IdentifierInfo *TargetName) argument
|
/external/clang/lib/Sema/ |
H A D | SemaTemplate.cpp | 6944 Sema::ActOnTypenameType(Scope *S, SourceLocation TypenameLoc, argument 6950 if (TypenameLoc.isValid() && S && !S->getTemplateParamParent()) 6951 Diag(TypenameLoc, 6955 << FixItHint::CreateRemoval(TypenameLoc); 6958 QualType T = CheckTypenameType(TypenameLoc.isValid()? ETK_Typename : ETK_None, 6959 TypenameLoc, QualifierLoc, II, IdLoc); 6966 TL.setElaboratedKeywordLoc(TypenameLoc); 6971 TL.setElaboratedKeywordLoc(TypenameLoc); 6981 SourceLocation TypenameLoc, 6989 if (TypenameLoc 6980 ActOnTypenameType(Scope *S, SourceLocation TypenameLoc, const CXXScopeSpec &SS, SourceLocation TemplateKWLoc, TemplateTy TemplateIn, SourceLocation TemplateNameLoc, SourceLocation LAngleLoc, ASTTemplateArgsPtr TemplateArgsIn, SourceLocation RAngleLoc) argument [all...] |
H A D | SemaDeclCXX.cpp | 6537 SourceLocation TypenameLoc) { 6595 IsTypeName, TypenameLoc); 6842 SourceLocation TypenameLoc) { 6890 UsingLoc, TypenameLoc, 6529 ActOnUsingDeclaration(Scope *S, AccessSpecifier AS, bool HasUsingKeyword, SourceLocation UsingLoc, CXXScopeSpec &SS, UnqualifiedId &Name, AttributeList *AttrList, bool IsTypeName, SourceLocation TypenameLoc) argument 6835 BuildUsingDeclaration(Scope *S, AccessSpecifier AS, SourceLocation UsingLoc, CXXScopeSpec &SS, const DeclarationNameInfo &NameInfo, AttributeList *AttrList, bool IsInstantiation, bool IsTypeName, SourceLocation TypenameLoc) argument
|
Completed in 451 milliseconds