Searched refs:TTPDecl (Results 1 – 3 of 3) sorted by relevance
/external/clang/lib/AST/ |
D | DeclTemplate.cpp | 477 TemplateTypeParmDecl *TTPDecl = in Create() local 479 QualType TTPType = C.getTemplateTypeParmType(D, P, ParameterPack, TTPDecl); in Create() 480 TTPDecl->setTypeForDecl(TTPType.getTypePtr()); in Create() 481 return TTPDecl; in Create()
|
D | ASTContext.cpp | 3341 TemplateTypeParmDecl *TTPDecl) const { in getTemplateTypeParmType() 3343 TemplateTypeParmType::Profile(ID, Depth, Index, ParameterPack, TTPDecl); in getTemplateTypeParmType() 3351 if (TTPDecl) { in getTemplateTypeParmType() 3353 TypeParm = new (*this, TypeAlignment) TemplateTypeParmType(TTPDecl, Canon); in getTemplateTypeParmType()
|
/external/clang/include/clang/AST/ |
D | Type.h | 3918 TemplateTypeParmDecl *TTPDecl; 3922 TemplateTypeParmType(TemplateTypeParmDecl *TTPDecl, QualType Canon) 3927 TTPDecl(TTPDecl) { } 3953 return isCanonicalUnqualified() ? nullptr : TTPDecl; 3967 TemplateTypeParmDecl *TTPDecl) { 3971 ID.AddPointer(TTPDecl);
|