Lines Matching full:pointee
841 * For ``__weak`` objects, the current pointee is retained and then released at
843 respect to assignments and to the final release of the pointee.
849 * For ``__strong`` objects, the new pointee is first retained; second, the
850 lvalue is loaded with primitive semantics; third, the new pointee is stored
851 into the lvalue with primitive semantics; and finally, the old pointee is
854 * For ``__weak`` objects, the lvalue is updated to point to the new pointee,
855 unless the new pointee is an object currently undergoing deallocation, in
858 object, and to the final release of the new pointee.
859 * For ``__unsafe_unretained`` objects, the new pointee is stored into the
861 * For ``__autoreleasing`` objects, the new pointee is retained, autoreleased,
878 from", meaning that its current pointee will be used but the object may be left