Home
last modified time | relevance | path

Searched refs:getRAngleLoc (Results 1 – 22 of 22) sorted by relevance

/external/clang/include/clang/AST/
DTypeLoc.h1462 SourceLocation getRAngleLoc() const { in getRAngleLoc() function
1504 return SourceRange(getTemplateKeywordLoc(), getRAngleLoc()); in getLocalSourceRange()
1506 return SourceRange(getTemplateNameLoc(), getRAngleLoc()); in getLocalSourceRange()
1892 SourceLocation getRAngleLoc() const { in getRAngleLoc() function
1916 return SourceRange(getElaboratedKeywordLoc(), getRAngleLoc()); in getLocalSourceRange()
1918 return SourceRange(getQualifierLoc().getBeginLoc(), getRAngleLoc()); in getLocalSourceRange()
1920 return SourceRange(getTemplateKeywordLoc(), getRAngleLoc()); in getLocalSourceRange()
1922 return SourceRange(getTemplateNameLoc(), getRAngleLoc()); in getLocalSourceRange()
DExprCXX.h2560 SourceLocation getRAngleLoc() const { in getRAngleLoc() function
2710 return getRAngleLoc(); in getLocEnd()
2815 SourceLocation getRAngleLoc() const { in getRAngleLoc() function
2871 return getRAngleLoc(); in getLocEnd()
3240 SourceLocation getRAngleLoc() const { in getRAngleLoc() function
3308 return getRAngleLoc(); in getLocEnd()
3452 return getRAngleLoc(); in getLocEnd()
DTemplateBase.h533 SourceLocation getRAngleLoc() const { return RAngleLoc; } in getRAngleLoc() function
DDeclObjC.h678 SourceLocation getRAngleLoc() const { in getRAngleLoc() function
682 return SourceRange(getLAngleLoc(), getRAngleLoc()); in getSourceRange()
DDeclTemplate.h134 SourceLocation getRAngleLoc() const { return RAngleLoc; } in LLVM_ALIGNAS()
616 SourceLocation getRAngleLoc() const { in getRAngleLoc() function
DExpr.h1112 SourceLocation getRAngleLoc() const { in getRAngleLoc() function
2517 SourceLocation getRAngleLoc() const { in getRAngleLoc() function
/external/clang/lib/AST/
DTemplateBase.cpp535 RAngleLoc = Info.getRAngleLoc(); in initializeFrom()
549 RAngleLoc = Info.getRAngleLoc(); in initializeFrom()
DDeclTemplate.cpp1147 TemplateArgsInfo.setRAngleLoc(ArgsInfo.getRAngleLoc()); in setTemplateArgsInfo()
DExpr.cpp445 return getRAngleLoc(); in getLocEnd()
1493 EndLoc = getRAngleLoc(); in getLocEnd()
DDecl.cpp3148 : AngleLocs(TArgs.getLAngleLoc(), TArgs.getRAngleLoc()) { in DependentFunctionTemplateSpecializationInfo()
DASTImporter.cpp2148 Importer.Import(Params->getRAngleLoc())); in ImportTemplateParameterList()
3779 Importer.Import(list->getRAngleLoc())); in ImportObjCTypeParamList()
DASTContext.cpp3341 TL.setRAngleLoc(Args.getRAngleLoc()); in getTemplateSpecializationTypeInfo()
/external/clang/unittests/AST/
DSourceLocationTest.cpp208 return SourceRange(T.getLAngleLoc(), T.getRAngleLoc()); in getRange()
/external/clang/lib/Sema/
DTreeTransform.h5401 NewTemplateArgs.setRAngleLoc(TL.getRAngleLoc()); in TransformTemplateSpecializationType()
5429 NewTL.setRAngleLoc(TL.getRAngleLoc()); in TransformTemplateSpecializationType()
5440 NewTL.setRAngleLoc(TL.getRAngleLoc()); in TransformTemplateSpecializationType()
5456 NewTemplateArgs.setRAngleLoc(TL.getRAngleLoc()); in TransformDependentTemplateSpecializationType()
5481 NewTL.setRAngleLoc(TL.getRAngleLoc()); in TransformDependentTemplateSpecializationType()
5499 NewTL.setRAngleLoc(TL.getRAngleLoc()); in TransformDependentTemplateSpecializationType()
5690 NewTemplateArgs.setRAngleLoc(TL.getRAngleLoc()); in TransformDependentTemplateSpecializationType()
5717 NamedTL.setRAngleLoc(TL.getRAngleLoc()); in TransformDependentTemplateSpecializationType()
5733 SpecTL.setRAngleLoc(TL.getRAngleLoc()); in TransformDependentTemplateSpecializationType()
5742 SpecTL.setRAngleLoc(TL.getRAngleLoc()); in TransformDependentTemplateSpecializationType()
[all …]
DSemaTemplate.cpp43 return SourceRange(Ps[0]->getTemplateLoc(), Ps[N-1]->getRAngleLoc()); in getTemplateParamsRange()
770 << SourceRange(Params->getLAngleLoc(), Params->getRAngleLoc()); in ActOnTemplateTemplateParameter()
1871 ParamLists[ParamIdx]->getRAngleLoc()) in MatchTemplateParametersToScopeSpecifier()
1963 ParamLists[ParamLists.size() - 2]->getRAngleLoc()); in MatchTemplateParametersToScopeSpecifier()
3673 TemplateArgs.getRAngleLoc()); in diagnoseArityMismatch()
3755 SourceLocation RAngleLoc = NewArgs.getRAngleLoc(); in CheckTemplateArgumentList()
5657 << SourceRange(New->getTemplateLoc(), New->getRAngleLoc()); in DiagnoseTemplateParameterListArityMismatch()
5660 << SourceRange(Old->getTemplateLoc(), Old->getRAngleLoc()); in DiagnoseTemplateParameterListArityMismatch()
6226 TemplateParams->getRAngleLoc())) in ActOnClassTemplateSpecialization()
DSemaTemplateInstantiateDecl.cpp1535 Info->getRAngleLoc()); in VisitFunctionDecl()
2519 Loc.getRAngleLoc()); in VisitClassTemplateSpecializationDecl()
2645 VarTemplateArgsInfo.setRAngleLoc(TemplateArgsInfo.getRAngleLoc()); in VisitVarTemplateSpecializationDecl()
2771 L->getRAngleLoc()); in SubstTemplateParams()
DSemaType.cpp4586 assert(TL.getRAngleLoc() == OldTL.castAs<TemplateSpecializationTypeLoc>().getRAngleLoc()); in VisitTemplateSpecializationTypeLoc()
DSemaDeclCXX.cpp2153 TemplateParams->getRAngleLoc()); in ActOnCXXMemberDeclarator()
2160 TemplateParams->getRAngleLoc()); in ActOnCXXMemberDeclarator()
8568 TemplateParamLists[TemplateParamLists.size()-1]->getRAngleLoc()); in ActOnAliasDeclaration()
DSemaDecl.cpp5896 TemplateParams->getRAngleLoc()); in ActOnVariableDeclarator()
/external/clang/lib/Serialization/
DASTWriterDecl.cpp148 Writer.AddSourceLocation(typeParams->getRAngleLoc(), Record); in AddObjCTypeParamList()
571 Writer.AddSourceLocation(DFTSInfo->getRAngleLoc(), Record); in VisitFunctionDecl()
DASTWriter.cpp617 Writer.AddSourceLocation(TL.getRAngleLoc(), Record); in VisitTemplateSpecializationTypeLoc()
645 Writer.AddSourceLocation(TL.getRAngleLoc(), Record); in VisitDependentTemplateSpecializationTypeLoc()
5328 AddSourceLocation(TemplateParams->getRAngleLoc(), Record); in AddTemplateParameterList()
DASTWriterStmt.cpp568 Writer.AddSourceLocation(E->getRAngleLoc(), Record); in VisitMemberExpr()