Lines Matching defs:PointeeTy
97 QualType PointeeTy = CastToTy->getPointeeType();
98 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy);
150 return MakeElementRegion(cast<SubRegion>(R), PointeeTy);
190 return MakeElementRegion(cast<SubRegion>(baseR), PointeeTy);
194 // if the offset can be evenly divided by sizeof(PointeeTy). If so,
203 // We can only compute sizeof(PointeeTy) if it is a complete type.
204 if (!PointeeTy->isIncompleteType()) {
206 CharUnits pointeeTySize = Ctx.getTypeSizeInChars(PointeeTy);
209 // ElementRegion (with elementType == PointeeTy) directly on top of
225 return MakeElementRegion(cast<SubRegion>(newSuperR), PointeeTy, newIndex);
451 QualType PointeeTy = BT->getPointeeType();
452 if (!PointeeTy.isNull() &&
453 PointeeTy.getCanonicalType() == elementType.getCanonicalType())