Lines Matching defs:__ptr_
55 __ptr_(allocator_traits<_Alloc>::allocate(__alloc_, __n_)) // initialization order is important
64 __ptr_(__other.__ptr_) {
65 __other.__ptr_ = nullptr;
75 __ptr_ = __other.__ptr_;
76 __other.__ptr_ = nullptr;
84 _Pointer __tmp = __ptr_;
85 __ptr_ = nullptr;
89 _LIBCPP_HIDE_FROM_ABI _Pointer __get() const _NOEXCEPT { return __ptr_; }
93 if (__ptr_ != nullptr) {
94 allocator_traits<_Alloc>::deallocate(__alloc_, __ptr_, __n_);
100 _Pointer __ptr_;