Lines Matching refs:PointeeType

638   QualType RebuildPointerType(QualType PointeeType, SourceLocation Sigil);
644 QualType RebuildBlockPointerType(QualType PointeeType, SourceLocation Sigil);
663 QualType RebuildMemberPointerType(QualType PointeeType, QualType ClassType,
3813 QualType PointeeType
3815 if (PointeeType.isNull())
3819 if (PointeeType->getAs<ObjCObjectType>()) {
3824 Result = SemaRef.Context.getObjCObjectPointerType(PointeeType);
3832 PointeeType != TL.getPointeeLoc().getType()) {
3833 Result = getDerived().RebuildPointerType(PointeeType, TL.getSigilLoc());
3851 QualType PointeeType
3853 if (PointeeType.isNull())
3858 PointeeType != TL.getPointeeLoc().getType()) {
3859 Result = getDerived().RebuildBlockPointerType(PointeeType,
3881 QualType PointeeType = getDerived().TransformType(TLB, TL.getPointeeLoc());
3882 if (PointeeType.isNull())
3887 PointeeType != T->getPointeeTypeAsWritten()) {
3888 Result = getDerived().RebuildReferenceType(PointeeType,
3929 QualType PointeeType = getDerived().TransformType(TLB, TL.getPointeeLoc());
3930 if (PointeeType.isNull())
3954 PointeeType != T->getPointeeType() ||
3956 Result = getDerived().RebuildMemberPointerType(PointeeType, NewClsType,
3965 if (MPT && PointeeType != MPT->getPointeeType()) {
9768 QualType TreeTransform<Derived>::RebuildPointerType(QualType PointeeType,
9770 return SemaRef.BuildPointerType(PointeeType, Star,
9775 QualType TreeTransform<Derived>::RebuildBlockPointerType(QualType PointeeType,
9777 return SemaRef.BuildBlockPointerType(PointeeType, Star,
9792 TreeTransform<Derived>::RebuildMemberPointerType(QualType PointeeType,
9795 return SemaRef.BuildMemberPointerType(PointeeType, ClassType, Sigil,