Home | History | Annotate | Download | only in Sema

Lines Matching refs:Pointee

2605   /// \brief Checks whether pointee of a delete-expression is initialized with
2621 /// List of mismatching new-expressions used for initialization of the pointee
2632 /// \param E Expression used for initializing pointee in delete-expression.
2651 /// \brief Checks whether the constructor initializes pointee with mismatching
2926 QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
2927 QualType PointeeElem = Context.getBaseElementType(Pointee);
2929 if (unsigned AddressSpace = Pointee.getAddressSpace())
2932 << Pointee.getUnqualifiedType() << AddressSpace;
2935 if (Pointee->isVoidType() && !isSFINAEContext()) {
2941 } else if (Pointee->isFunctionType() || Pointee->isVoidType()) {
2944 } else if (!Pointee->isDependentType()) {
2947 if (!RequireCompleteType(StartLoc, Pointee,
2954 if (Pointee->isArrayType() && !ArrayForm) {
3002 StartLoc, isCompleteType(StartLoc, Pointee) &&
3004 Pointee.isDestructedType()),