Searched refs:PointeeT (Results 1 – 4 of 4) sorted by relevance
178 QualType PointeeT = DynT->getPointeeType(); in isDereferencableUninit() local180 if (PointeeT->isStructureOrClassType()) { in isDereferencableUninit()186 if (PointeeT->isUnionType()) { in isDereferencableUninit()198 if (PointeeT->isArrayType()) { in isDereferencableUninit()203 assert((isPrimitiveType(PointeeT) || isDereferencableType(PointeeT)) && in isDereferencableUninit()
50 QualType PointeeT = TP->getPointeeType(); in hasPointerToPointerSizedType() local51 if (!PointeeT.isNull()) { in hasPointerToPointerSizedType()55 if (const Type *TElem = PointeeT->getArrayElementTypeNoTypeQual()) in hasPointerToPointerSizedType()60 return isPointerSize(PointeeT.getTypePtr()); in hasPointerToPointerSizedType()
121 QualType PointeeT = T; in CheckSpecifiedExceptionType() local123 PointeeT = PT->getPointeeType(); in CheckSpecifiedExceptionType()128 if (PointeeT->isVoidType()) in CheckSpecifiedExceptionType()131 PointeeT = RT->getPointeeType(); in CheckSpecifiedExceptionType()157 if (!(PointeeT->isRecordType() && in CheckSpecifiedExceptionType()158 PointeeT->getAs<RecordType>()->isBeingDefined()) && in CheckSpecifiedExceptionType()159 RequireCompleteType(Range.getBegin(), PointeeT, DiagID, Kind, Range)) in CheckSpecifiedExceptionType()
67 template <typename PointeeT> PointeeT* getPtrTo() const { in getPtrTo()