Home | History | Annotate | Download | only in Sema

Lines Matching refs:Pointee

1837     QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
1838 QualType PointeeElem = Context.getBaseElementType(Pointee);
1840 if (unsigned AddressSpace = Pointee.getAddressSpace())
1843 << Pointee.getUnqualifiedType() << AddressSpace;
1846 if (Pointee->isVoidType() && !isSFINAEContext()) {
1852 } else if (Pointee->isFunctionType() || Pointee->isVoidType()) {
1855 } else if (!Pointee->isDependentType()) {
1856 if (!RequireCompleteType(StartLoc, Pointee,
1873 if (Pointee->isArrayType() && !ArrayForm) {