Home
last modified time | relevance | path

Searched refs:getTemplateKeywordLoc (Results 1 – 15 of 15) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp739 Builder.findToken(C->getTemplateKeywordLoc()), Declaration, C); in TraverseClassTemplateSpecializationDecl()
946 SR.setBegin(DependentTL.getTemplateKeywordLoc()); in getLocalSourceRange()
1075 buildIdExpression(S->getQualifierLoc(), S->getTemplateKeywordLoc(), in WalkUpFromMemberExpr()
1081 S->getQualifierLoc(), S->getTemplateKeywordLoc(), in WalkUpFromMemberExpr()
1095 buildIdExpression(S->getQualifierLoc(), S->getTemplateKeywordLoc(), in WalkUpFromDeclRefExpr()
1103 buildIdExpression(S->getQualifierLoc(), S->getTemplateKeywordLoc(), in WalkUpFromDependentScopeDeclRefExpr()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DTypeLoc.h1612 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function
1674 if (getTemplateKeywordLoc().isValid()) in getLocalSourceRange()
1675 return SourceRange(getTemplateKeywordLoc(), getRAngleLoc()); in getLocalSourceRange()
2435 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function
2489 else if (getTemplateKeywordLoc().isValid()) in getLocalSourceRange()
2490 return SourceRange(getTemplateKeywordLoc(), getRAngleLoc()); in getLocalSourceRange()
H A DExprCXX.h3079 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function
3102 bool hasTemplateKeyword() const { return getTemplateKeywordLoc().isValid(); } in hasTemplateKeyword()
3327 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function
3350 bool hasTemplateKeyword() const { return getTemplateKeywordLoc().isValid(); } in hasTemplateKeyword()
3777 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function
3800 bool hasTemplateKeyword() const { return getTemplateKeywordLoc().isValid(); } in hasTemplateKeyword()
H A DDeclTemplate.h2072 SourceLocation getTemplateKeywordLoc() const {
2925 SourceLocation getTemplateKeywordLoc() const {
H A DExpr.h1359 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function
1383 bool hasTemplateKeyword() const { return getTemplateKeywordLoc().isValid(); } in hasTemplateKeyword()
3288 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function
3311 bool hasTemplateKeyword() const { return getTemplateKeywordLoc().isValid(); } in hasTemplateKeyword()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DTreeTransform.h5038 SpecTL.getTemplateKeywordLoc(), in TransformTSIInObjectScope()
6827 NewTL.setTemplateKeywordLoc(TL.getTemplateKeywordLoc()); in TransformTemplateSpecializationType()
6838 NewTL.setTemplateKeywordLoc(TL.getTemplateKeywordLoc()); in TransformTemplateSpecializationType()
6876 NewTL.setTemplateKeywordLoc(TL.getTemplateKeywordLoc()); in TransformDependentTemplateSpecializationType()
6894 NewTL.setTemplateKeywordLoc(TL.getTemplateKeywordLoc()); in TransformDependentTemplateSpecializationType()
7135 T->getKeyword(), QualifierLoc, TL.getTemplateKeywordLoc(), in TransformDependentTemplateSpecializationType()
7147 NamedTL.setTemplateKeywordLoc(TL.getTemplateKeywordLoc()); in TransformDependentTemplateSpecializationType()
7163 SpecTL.setTemplateKeywordLoc(TL.getTemplateKeywordLoc()); in TransformDependentTemplateSpecializationType()
7172 SpecTL.setTemplateKeywordLoc(TL.getTemplateKeywordLoc()); in TransformDependentTemplateSpecializationType()
11264 SourceLocation TemplateKWLoc = E->getTemplateKeywordLoc(); in TransformMemberExpr()
[all …]
H A DSemaOverload.cpp13201 SourceLocation TemplateKWLoc = ULE->getTemplateKeywordLoc(); in BuildRecoveryCallExpr()
15503 Found.getDecl(), ULE->getTemplateKeywordLoc(), TemplateArgs); in FixOverloadedFunctionReference()
15525 MemExpr->getTemplateKeywordLoc(), TemplateArgs); in FixOverloadedFunctionReference()
15550 MemExpr->getQualifierLoc(), MemExpr->getTemplateKeywordLoc(), Fn, Found, in FixOverloadedFunctionReference()
H A DSemaExpr.cpp19441 S.Context, DRE->getQualifierLoc(), DRE->getTemplateKeywordLoc(), in rebuildPotentialResultsAsNonOdrUsed()
19488 ME->getQualifierLoc(), ME->getTemplateKeywordLoc(), in rebuildPotentialResultsAsNonOdrUsed()
19506 ME->getQualifierLoc(), ME->getTemplateKeywordLoc(), ME->getMemberDecl(), in rebuildPotentialResultsAsNonOdrUsed()
21066 DRE->getTemplateKeywordLoc(), in CheckPlaceholderExpr()
H A DSemaTemplateInstantiateDecl.cpp3844 InstD->setTemplateKeywordLoc(D->getTemplateKeywordLoc()); in VisitClassTemplateSpecializationDecl()
H A DSemaTemplate.cpp559 << RequiredTemplate.getTemplateKeywordLoc(); in LookupTemplateName()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTImporter.cpp5975 if (auto LocOrErr = import(D->getTemplateKeywordLoc())) in VisitClassTemplateSpecializationDecl()
7042 auto ToTemplateKeywordLoc = importChecked(Err, E->getTemplateKeywordLoc()); in VisitDeclRefExpr()
7960 auto ToTemplateKeywordLoc = importChecked(Err, E->getTemplateKeywordLoc()); in VisitMemberExpr()
8027 auto ToTemplateKeywordLoc = importChecked(Err, E->getTemplateKeywordLoc()); in VisitCXXDependentScopeMemberExpr()
8071 auto ToTemplateKeywordLoc = importChecked(Err, E->getTemplateKeywordLoc()); in VisitDependentScopeDeclRefExpr()
8152 ExpectedSLoc ToTemplateKeywordLocOrErr = import(E->getTemplateKeywordLoc()); in VisitUnresolvedLookupExpr()
8174 auto ToTemplateKeywordLoc = importChecked(Err, E->getTemplateKeywordLoc()); in VisitUnresolvedMemberExpr()
H A DDeclTemplate.cpp994 SourceLocation Begin = getTemplateKeywordLoc(); in getSourceRange()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriterDecl.cpp1603 Record.AddSourceLocation(D->getTemplateKeywordLoc()); in VisitClassTemplateSpecializationDecl()
1650 Record.AddSourceLocation(D->getTemplateKeywordLoc()); in VisitVarTemplateSpecializationDecl()
H A DASTWriter.cpp520 addSourceLocation(TL.getTemplateKeywordLoc()); in VisitTemplateSpecializationTypeLoc()
557 addSourceLocation(TL.getTemplateKeywordLoc()); in VisitDependentTemplateSpecializationTypeLoc()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h7994 SourceLocation getTemplateKeywordLoc() const { in getTemplateKeywordLoc() function
7997 bool hasTemplateKeyword() const { return getTemplateKeywordLoc().isValid(); } in hasTemplateKeyword()