| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | TypeLoc.cpp | 767 SourceLocation TypeLoc::getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function in TypeLoc 769 return TSTL.getTemplateKeywordLoc(); in getTemplateKeywordLoc() 772 return DTSTL.getTemplateKeywordLoc(); in getTemplateKeywordLoc()
|
| H A D | DeclTemplate.cpp | 1072 else if (SourceLocation TemplateKW = getTemplateKeywordLoc(); in getSourceRange() 1492 else if (SourceLocation TemplateKW = getTemplateKeywordLoc(); in getSourceRange()
|
| H A D | ASTImporter.cpp | 6587 if (auto LocOrErr = import(D->getTemplateKeywordLoc())) in VisitClassTemplateSpecializationDecl() 7776 auto ToTemplateKeywordLoc = importChecked(Err, E->getTemplateKeywordLoc()); in VisitDeclRefExpr() 8726 auto ToTemplateKeywordLoc = importChecked(Err, E->getTemplateKeywordLoc()); in VisitMemberExpr() 8793 auto ToTemplateKeywordLoc = importChecked(Err, E->getTemplateKeywordLoc()); in VisitCXXDependentScopeMemberExpr() 8837 auto ToTemplateKeywordLoc = importChecked(Err, E->getTemplateKeywordLoc()); in VisitDependentScopeDeclRefExpr() 8918 ExpectedSLoc ToTemplateKeywordLocOrErr = import(E->getTemplateKeywordLoc()); in VisitUnresolvedLookupExpr() 8945 auto ToTemplateKeywordLoc = importChecked(Err, E->getTemplateKeywordLoc()); in VisitUnresolvedMemberExpr()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | TypeLoc.h | 194 SourceLocation getTemplateKeywordLoc() const; 1715 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function 1777 if (getTemplateKeywordLoc().isValid()) in getLocalSourceRange() 1778 return SourceRange(getTemplateKeywordLoc(), getRAngleLoc()); in getLocalSourceRange() 2545 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function 2599 else if (getTemplateKeywordLoc().isValid()) in getLocalSourceRange() 2600 return SourceRange(getTemplateKeywordLoc(), getRAngleLoc()); in getLocalSourceRange()
|
| H A D | ExprCXX.h | 3234 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function 3257 bool hasTemplateKeyword() const { return getTemplateKeywordLoc().isValid(); } in hasTemplateKeyword() 3506 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function 3529 bool hasTemplateKeyword() const { return getTemplateKeywordLoc().isValid(); } in hasTemplateKeyword() 3954 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function 3977 bool hasTemplateKeyword() const { return getTemplateKeywordLoc().isValid(); } in hasTemplateKeyword()
|
| H A D | DeclTemplate.h | 2063 SourceLocation getTemplateKeywordLoc() const { 2837 SourceLocation getTemplateKeywordLoc() const {
|
| H A D | Expr.h | 1395 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function 1419 bool hasTemplateKeyword() const { return getTemplateKeywordLoc().isValid(); } in hasTemplateKeyword() 3402 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function 3425 bool hasTemplateKeyword() const { return getTemplateKeywordLoc().isValid(); } in hasTemplateKeyword()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 734 Builder.findToken(C->getTemplateKeywordLoc()), Declaration, C); in TraverseClassTemplateSpecializationDecl() 941 SR.setBegin(DependentTL.getTemplateKeywordLoc()); in getLocalSourceRange() 1068 buildIdExpression(S->getQualifierLoc(), S->getTemplateKeywordLoc(), in WalkUpFromMemberExpr() 1074 S->getQualifierLoc(), S->getTemplateKeywordLoc(), in WalkUpFromMemberExpr() 1088 buildIdExpression(S->getQualifierLoc(), S->getTemplateKeywordLoc(), in WalkUpFromDeclRefExpr() 1096 buildIdExpression(S->getQualifierLoc(), S->getTemplateKeywordLoc(), in WalkUpFromDependentScopeDeclRefExpr()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaSYCL.cpp | 401 DRE->getTemplateKeywordLoc(), VD, false, DRE->getNameInfo(), in TransformDeclRefExpr()
|
| H A D | TreeTransform.h | 5443 SS, SpecTL.getTemplateKeywordLoc(), *II, SpecTL.getTemplateNameLoc(), in TransformTSIInObjectScope() 7427 NewTL.setTemplateKeywordLoc(TL.getTemplateKeywordLoc()); in TransformTemplateSpecializationType() 7438 NewTL.setTemplateKeywordLoc(TL.getTemplateKeywordLoc()); in TransformTemplateSpecializationType() 7476 NewTL.setTemplateKeywordLoc(TL.getTemplateKeywordLoc()); in TransformDependentTemplateSpecializationType() 7494 NewTL.setTemplateKeywordLoc(TL.getTemplateKeywordLoc()); in TransformDependentTemplateSpecializationType() 7832 SS, TL.getTemplateKeywordLoc(), DTN.getName(), TL.getTemplateNameLoc(), in TransformDependentTemplateSpecializationType() 7838 T->getKeyword(), SS.getScopeRep(), TL.getTemplateKeywordLoc(), Name, in TransformDependentTemplateSpecializationType() 7852 NamedTL.setTemplateKeywordLoc(TL.getTemplateKeywordLoc()); in TransformDependentTemplateSpecializationType() 7869 SpecTL.setTemplateKeywordLoc(TL.getTemplateKeywordLoc()); in TransformDependentTemplateSpecializationType() 13451 SourceLocation TemplateKWLoc = E->getTemplateKeywordLoc(); in TransformMemberExpr() [all …]
|
| H A D | SemaOverload.cpp | 14495 SourceLocation TemplateKWLoc = ULE->getTemplateKeywordLoc(); in BuildRecoveryCallExpr() 17039 Found.getDecl(), ULE->getTemplateKeywordLoc(), TemplateArgs); in FixOverloadedFunctionReference() 17061 MemExpr->getTemplateKeywordLoc(), TemplateArgs); in FixOverloadedFunctionReference() 17086 MemExpr->getQualifierLoc(), MemExpr->getTemplateKeywordLoc(), Fn, Found, in FixOverloadedFunctionReference()
|
| H A D | SemaExpr.cpp | 19613 S.Context, DRE->getQualifierLoc(), DRE->getTemplateKeywordLoc(), in rebuildPotentialResultsAsNonOdrUsed() 19660 ME->getQualifierLoc(), ME->getTemplateKeywordLoc(), in rebuildPotentialResultsAsNonOdrUsed() 19678 ME->getQualifierLoc(), ME->getTemplateKeywordLoc(), ME->getMemberDecl(), in rebuildPotentialResultsAsNonOdrUsed() 21345 DRE->getTemplateKeywordLoc(), in CheckPlaceholderExpr()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 4492 InstD->setTemplateKeywordLoc(D->getTemplateKeywordLoc()); in VisitClassTemplateSpecializationDecl()
|
| H A D | SemaTemplate.cpp | 559 << RequiredTemplate.getTemplateKeywordLoc(); in LookupTemplateName()
|
| H A D | SemaDecl.cpp | 6285 if (SourceLocation TemplateKeywordLoc = TL.getTemplateKeywordLoc(); in diagnoseQualifiedDeclaration()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriterDecl.cpp | 1957 Record.AddSourceLocation(D->getTemplateKeywordLoc()); in VisitClassTemplateSpecializationDecl() 2025 Record.AddSourceLocation(D->getTemplateKeywordLoc()); in VisitVarTemplateSpecializationDecl()
|
| H A D | ASTWriter.cpp | 615 addSourceLocation(TL.getTemplateKeywordLoc()); in VisitTemplateSpecializationTypeLoc() 652 addSourceLocation(TL.getTemplateKeywordLoc()); in VisitDependentTemplateSpecializationTypeLoc()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 11318 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function 11322 return getTemplateKeywordLoc().isValid(); in hasTemplateKeyword()
|