Lines Matching full:pointee
2380 /// \brief Checks whether pointee of a delete-expression is initialized with
2396 /// List of mismatching new-expressions used for initialization of the pointee
2407 /// \param E Expression used for initializing pointee in delete-expression.
2426 /// \brief Checks whether the constructor initializes pointee with mismatching
2701 QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
2702 QualType PointeeElem = Context.getBaseElementType(Pointee);
2704 if (unsigned AddressSpace = Pointee.getAddressSpace())
2707 << Pointee.getUnqualifiedType() << AddressSpace;
2710 if (Pointee->isVoidType() && !isSFINAEContext()) {
2716 } else if (Pointee->isFunctionType() || Pointee->isVoidType()) {
2719 } else if (!Pointee->isDependentType()) {
2722 if (!RequireCompleteType(StartLoc, Pointee,
2729 if (Pointee->isArrayType() && !ArrayForm) {
2797 StartLoc, isCompleteType(StartLoc, Pointee) &&
2799 Pointee.isDestructedType()),