Home | History | Annotate | Download | only in Sema

Lines Matching refs:Pointee

2092     QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
2093 QualType PointeeElem = Context.getBaseElementType(Pointee);
2095 if (unsigned AddressSpace = Pointee.getAddressSpace())
2098 << Pointee.getUnqualifiedType() << AddressSpace;
2101 if (Pointee->isVoidType() && !isSFINAEContext()) {
2107 } else if (Pointee->isFunctionType() || Pointee->isVoidType()) {
2110 } else if (!Pointee->isDependentType()) {
2111 if (!RequireCompleteType(StartLoc, Pointee,
2124 if (Pointee->isArrayType() && !ArrayForm) {