Searched refs:__ptr_ (Results 1 – 8 of 8) sorted by relevance
168 void* __ptr_; member184 __cxa_decrement_exception_refcount(__ptr_); in ~exception_ptr()199 : __ptr_(other.__ptr_) in exception_ptr()202 __cxa_increment_exception_refcount(__ptr_); in exception_ptr()220 if (__ptr_ != other.__ptr_) in operator =()222 __cxa_increment_exception_refcount(other.__ptr_); in operator =()223 __cxa_decrement_exception_refcount(__ptr_); in operator =()224 __ptr_ = other.__ptr_; in operator =()243 : __ptr_(current_exception()) in nested_exception()259 if (__ptr_ == nullptr) in rethrow_nested()[all …]
244 __node_pointer __ptr_;249 : __ptr_(__p)255 explicit __list_iterator(__node_pointer __p) _NOEXCEPT : __ptr_(__p) {}277 __list_iterator() _NOEXCEPT : __ptr_(nullptr)288 : __ptr_(__p.__ptr_)305 __ptr_ = __p.__ptr_;319 return __ptr_->__value_;328 return pointer_traits<pointer>::pointer_to(__ptr_->__value_);338 __ptr_ = __ptr_->__next_;351 __ptr_ = __ptr_->__prev_;[all …]
130 void* __ptr_;132 _LIBCPP_INLINE_VISIBILITY exception_ptr() _NOEXCEPT : __ptr_() {}133 _LIBCPP_INLINE_VISIBILITY exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}140 operator bool() const _NOEXCEPT {return __ptr_ != nullptr;}144 {return __x.__ptr_ == __y.__ptr_;}173 exception_ptr __ptr_;182 _LIBCPP_INLINE_VISIBILITY exception_ptr nested_ptr() const _NOEXCEPT {return __ptr_;}
229 __node_pointer __ptr_;232 explicit __forward_list_iterator(__node_pointer __p) _NOEXCEPT : __ptr_(__p) {}253 __forward_list_iterator() _NOEXCEPT : __ptr_(nullptr) {}256 reference operator*() const {return __ptr_->__value_;}258 pointer operator->() const {return pointer_traits<pointer>::pointer_to(__ptr_->__value_);}263 __ptr_ = __ptr_->__next_;277 {return __x.__ptr_ == __y.__ptr_;}289 __node_const_pointer __ptr_;293 : __ptr_(__p) {}324 __forward_list_const_iterator() _NOEXCEPT : __ptr_(nullptr) {}[all …]
1851 _Tp* __ptr_;1858 _Tp* __ptr_;1862 _LIBCPP_INLINE_VISIBILITY explicit auto_ptr(_Tp* __p = 0) throw() : __ptr_(__p) {}1863 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr& __p) throw() : __ptr_(__p.release()) {}1865 : __ptr_(__p.release()) {}1871 {reset(__p.__ptr_); return *this;}1872 _LIBCPP_INLINE_VISIBILITY ~auto_ptr() throw() {delete __ptr_;}1875 {return *__ptr_;}1876 _LIBCPP_INLINE_VISIBILITY _Tp* operator->() const throw() {return __ptr_;}1877 _LIBCPP_INLINE_VISIBILITY _Tp* get() const throw() {return __ptr_;}[all …]
628 __node_pointer __ptr_;646 : __ptr_(nullptr)650 _LIBCPP_INLINE_VISIBILITY reference operator*() const {return __ptr_->__value_;}652 {return pointer_traits<pointer>::pointer_to(__ptr_->__value_);}656 … {__ptr_ = static_cast<__node_pointer>(__tree_next(static_cast<__node_base_pointer>(__ptr_)));664 … {__ptr_ = static_cast<__node_pointer>(__tree_prev(static_cast<__node_base_pointer>(__ptr_)));672 {return __x.__ptr_ == __y.__ptr_;}679 explicit __tree_iterator(__node_pointer __p) _NOEXCEPT : __ptr_(__p) {}703 __node_pointer __ptr_;721 : __ptr_(nullptr)[all …]
274 pointer __ptr_;284 : __m_iter_(nullptr), __ptr_(nullptr)292 : __m_iter_(__it.__m_iter_), __ptr_(__it.__ptr_) {}294 _LIBCPP_INLINE_VISIBILITY reference operator*() const {return *__ptr_;}295 _LIBCPP_INLINE_VISIBILITY pointer operator->() const {return __ptr_;}299 if (++__ptr_ - *__m_iter_ == __block_size)302 __ptr_ = *__m_iter_;316 if (__ptr_ == *__m_iter_)319 __ptr_ = *__m_iter_ + __block_size;321 --__ptr_;[all …]
1449 if (__r.__i_.__ptr_ == __h.get())