/external/clang/lib/Sema/ |
D | SemaTemplateVariadic.cpp | 64 bool VisitTemplateTypeParmType(TemplateTypeParmType *T) { in VisitTemplateTypeParmType() 241 if (const TemplateTypeParmType *TTP in DiagnoseUnexpandedParameterPacks() 242 = Unexpanded[I].first.dyn_cast<const TemplateTypeParmType *>()) in DiagnoseUnexpandedParameterPacks() 556 if (const TemplateTypeParmType *TTP in CheckParameterPacksForExpansion() 557 = i->first.dyn_cast<const TemplateTypeParmType *>()) { in CheckParameterPacksForExpansion() 658 if (const TemplateTypeParmType *TTP in getNumArgumentsInExpansion() 659 = Unexpanded[I].first.dyn_cast<const TemplateTypeParmType *>()) { in getNumArgumentsInExpansion()
|
D | SemaTemplateDeduction.cpp | 540 if (const TemplateTypeParmType *TTP in getDepthAndIndex() 541 = UPP.first.dyn_cast<const TemplateTypeParmType *>()) in getDepthAndIndex() 1047 if (isa<TemplateTypeParmType>(ParamRef->getPointeeType()) && in DeduceTemplateArgumentsByTypeMatch() 1062 if (const TemplateTypeParmType *TemplateTypeParm in DeduceTemplateArgumentsByTypeMatch() 1063 = Param->getAs<TemplateTypeParmType>()) { in DeduceTemplateArgumentsByTypeMatch() 3146 isa<TemplateTypeParmType>(ParamType) && in AdjustFunctionParmAndArgTypesForDeduction() 3950 if (!Replacement.isNull() && isa<TemplateTypeParmType>(Replacement)) { in TransformAutoType() 4827 const TemplateTypeParmType *TTP = cast<TemplateTypeParmType>(T); in MarkUsedTemplateParameters()
|
D | SemaTemplateInstantiate.cpp | 912 const TemplateTypeParmType *TTP in TransformFirstQualifierInScope() 913 = cast<TemplateTypeParmType>(getSema().Context.getTypeDeclType(TTPD)); in TransformFirstQualifierInScope() 1328 const TemplateTypeParmType *T = TL.getTypePtr(); in TransformTemplateTypeParmType()
|
D | SemaCXXScopeSpec.cpp | 705 } else if (isa<TemplateTypeParmType>(T)) { in BuildCXXNestedNameSpecifier()
|
D | SemaTemplate.cpp | 1546 bool VisitTemplateTypeParmType(const TemplateTypeParmType *T) { in VisitTemplateTypeParmType() 2422 const TemplateTypeParmType *TPT = in isTemplateArgumentTemplateParameter() 2423 Arg.getAsType()->getAs<TemplateTypeParmType>(); in isTemplateArgumentTemplateParameter() 4134 const TemplateTypeParmType*) { in VisitTemplateTypeParmType() argument
|
D | SemaDeclCXX.cpp | 11784 const TemplateTypeParmType *TArgs = in CheckLiteralOperatorDeclaration() 11785 PmArgs->getType()->getAs<TemplateTypeParmType>(); in CheckLiteralOperatorDeclaration()
|
/external/clang/include/clang/AST/ |
D | Type.h | 3736 class TemplateTypeParmType : public Type, public llvm::FoldingSetNode { 3752 TemplateTypeParmType(TemplateTypeParmDecl *TTPDecl, QualType Canon) 3760 TemplateTypeParmType(unsigned D, unsigned I, bool PP) 3774 return Can->castAs<TemplateTypeParmType>()->CanTTPTInfo; 3818 const TemplateTypeParmType *Replaced; 3820 SubstTemplateTypeParmType(const TemplateTypeParmType *Param, QualType Canon) 3831 const TemplateTypeParmType *getReplacedParameter() const { 3848 const TemplateTypeParmType *Replaced, 3873 const TemplateTypeParmType *Replaced; 3882 SubstTemplateTypeParmPackType(const TemplateTypeParmType *Param, [all …]
|
D | CanonicalType.h | 547 struct CanProxyAdaptor<TemplateTypeParmType> 548 : public CanProxyBase<TemplateTypeParmType> {
|
D | ASTContext.h | 114 mutable llvm::FoldingSet<TemplateTypeParmType> TemplateTypeParmTypes; 1215 QualType getSubstTemplateTypeParmType(const TemplateTypeParmType *Replaced, 1218 const TemplateTypeParmType *Replaced,
|
D | RecursiveASTVisitor.h | 931 DEF_TRAVERSE_TYPE(TemplateTypeParmType, {}) 1150 DEF_TRAVERSE_TYPELOC(TemplateTypeParmType, {})
|
D | TypeLoc.h | 691 TemplateTypeParmType> {
|
/external/clang/lib/Index/ |
D | USRGeneration.cpp | 691 if (const TemplateTypeParmType *TTP = T->getAs<TemplateTypeParmType>()) { in VisitType()
|
/external/clang/lib/AST/ |
D | DeclTemplate.cpp | 524 return getTypeForDecl()->getAs<TemplateTypeParmType>()->getDepth(); in getDepth() 528 return getTypeForDecl()->getAs<TemplateTypeParmType>()->getIndex(); in getIndex() 532 return getTypeForDecl()->getAs<TemplateTypeParmType>()->isParameterPack(); in isParameterPack()
|
D | TypePrinter.cpp | 991 void TypePrinter::printTemplateTypeParmBefore(const TemplateTypeParmType *T, in printTemplateTypeParmBefore() 999 void TypePrinter::printTemplateTypeParmAfter(const TemplateTypeParmType *T, in printTemplateTypeParmAfter()
|
D | ASTContext.cpp | 3238 ASTContext::getSubstTemplateTypeParmType(const TemplateTypeParmType *Parm, in getSubstTemplateTypeParmType() 3261 const TemplateTypeParmType *Parm, in getSubstTemplateTypeParmPackType() 3280 Canon = getSubstTemplateTypeParmPackType(cast<TemplateTypeParmType>(Canon), in getSubstTemplateTypeParmPackType() 3300 TemplateTypeParmType::Profile(ID, Depth, Index, ParameterPack, TTPDecl); in getTemplateTypeParmType() 3302 TemplateTypeParmType *TypeParm in getTemplateTypeParmType() 3310 TypeParm = new (*this, TypeAlignment) TemplateTypeParmType(TTPDecl, Canon); in getTemplateTypeParmType() 3312 TemplateTypeParmType *TypeCheck in getTemplateTypeParmType() 3318 TemplateTypeParmType(Depth, Index, ParameterPack); in getTemplateTypeParmType()
|
D | Type.cpp | 3064 IdentifierInfo *TemplateTypeParmType::getIdentifier() const { in getIdentifier() 3069 SubstTemplateTypeParmPackType(const TemplateTypeParmType *Param, in SubstTemplateTypeParmPackType() 3087 const TemplateTypeParmType *Replaced, in Profile()
|
D | ASTImporter.cpp | 703 const TemplateTypeParmType *Parm1 = cast<TemplateTypeParmType>(T1); in IsStructurallyEquivalent() 704 const TemplateTypeParmType *Parm2 = cast<TemplateTypeParmType>(T2); in IsStructurallyEquivalent()
|
D | ASTDumper.cpp | 367 void VisitTemplateTypeParmType(const TemplateTypeParmType *T) { in VisitTemplateTypeParmType()
|
D | MicrosoftMangle.cpp | 2102 void MicrosoftCXXNameMangler::mangleType(const TemplateTypeParmType *T, in mangleType()
|
D | ItaniumMangle.cpp | 2295 void CXXNameMangler::mangleType(const TemplateTypeParmType *T) { in mangleType()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchersInternal.h | 687 else if (auto *TTP = dyn_cast<TemplateTypeParmType>(Node.getTypePtr())) in matchesSpecialized() 937 TemplateTypeParmType, TypedefType,
|
D | ASTMatchers.h | 4258 AST_TYPE_MATCHER(TemplateTypeParmType, templateTypeParmType);
|
/external/clang/tools/libclang/ |
D | CXCursor.cpp | 1036 if (const TemplateTypeParmType *TemplP = Ty->getAs<TemplateTypeParmType>()) in getTypeRefCursor()
|
/external/clang/lib/ASTMatchers/ |
D | ASTMatchFinder.cpp | 751 TypeNode->getAs<TemplateTypeParmType>() != nullptr) in getAsCXXRecordDecl()
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 5525 cast<TemplateTypeParmType>(Parm), in readTypeRecord() 5534 cast<TemplateTypeParmType>(Parm), in readTypeRecord()
|