Home | History | Annotate | Download | only in Sema

Lines Matching refs:Pointee

2328     QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
2329 QualType PointeeElem = Context.getBaseElementType(Pointee);
2331 if (unsigned AddressSpace = Pointee.getAddressSpace())
2334 << Pointee.getUnqualifiedType() << AddressSpace;
2337 if (Pointee->isVoidType() && !isSFINAEContext()) {
2343 } else if (Pointee->isFunctionType() || Pointee->isVoidType()) {
2346 } else if (!Pointee->isDependentType()) {
2347 if (!RequireCompleteType(StartLoc, Pointee,
2360 if (Pointee->isArrayType() && !ArrayForm) {
2428 StartLoc, !RequireCompleteType(StartLoc, Pointee, 0) &&
2430 Pointee.isDestructedType()),