Searched refs:TTPDecl (Results 1 – 3 of 3) sorted by relevance
/external/clang/lib/AST/ |
D | DeclTemplate.cpp | 496 TemplateTypeParmDecl *TTPDecl = in Create() local 498 QualType TTPType = C.getTemplateTypeParmType(D, P, ParameterPack, TTPDecl); in Create() 499 TTPDecl->setTypeForDecl(TTPType.getTypePtr()); in Create() 500 return TTPDecl; in Create()
|
D | ASTContext.cpp | 3298 TemplateTypeParmDecl *TTPDecl) const { in getTemplateTypeParmType() 3300 TemplateTypeParmType::Profile(ID, Depth, Index, ParameterPack, TTPDecl); in getTemplateTypeParmType() 3308 if (TTPDecl) { in getTemplateTypeParmType() 3310 TypeParm = new (*this, TypeAlignment) TemplateTypeParmType(TTPDecl, Canon); in getTemplateTypeParmType()
|
/external/clang/include/clang/AST/ |
D | Type.h | 3748 TemplateTypeParmDecl *TTPDecl; 3752 TemplateTypeParmType(TemplateTypeParmDecl *TTPDecl, QualType Canon) 3757 TTPDecl(TTPDecl) { } 3783 return isCanonicalUnqualified() ? nullptr : TTPDecl; 3797 TemplateTypeParmDecl *TTPDecl) { 3801 ID.AddPointer(TTPDecl);
|