Home | History | Annotate | Download | only in Core

Lines Matching refs:PointeeTy

96   QualType PointeeTy = CastToTy->getPointeeType();
97 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy);
140 return MakeElementRegion(R, PointeeTy);
179 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy);
185 return MakeElementRegion(baseR, PointeeTy);
189 // if the offset can be evenly divided by sizeof(PointeeTy). If so,
198 // We can only compute sizeof(PointeeTy) if it is a complete type.
199 if (IsCompleteType(Ctx, PointeeTy)) {
201 CharUnits pointeeTySize = Ctx.getTypeSizeInChars(PointeeTy);
204 // ElementRegion (with elementType == PointeeTy) directly on top of
219 return MakeElementRegion(newSuperR, PointeeTy, newIndex);