Searched refs:__end_ (Results 1 – 8 of 8) sorted by relevance
/external/libcxx/include/ |
D | __split_buffer | 48 pointer __end_; 81 _LIBCPP_INLINE_VISIBILITY iterator end() _NOEXCEPT {return __end_;} 82 _LIBCPP_INLINE_VISIBILITY const_iterator end() const _NOEXCEPT {return __end_;} 87 …_LIBCPP_INLINE_VISIBILITY size_type size() const {return static_cast<size_type>(__end_ - __begin_)… 88 _LIBCPP_INLINE_VISIBILITY bool empty() const {return __end_ == __begin_;} 91 …NE_VISIBILITY size_type __back_spare() const {return static_cast<size_type>(__end_cap() - __end_);} 95 _LIBCPP_INLINE_VISIBILITY reference back() {return *(__end_ - 1);} 96 _LIBCPP_INLINE_VISIBILITY const_reference back() const {return *(__end_ - 1);} 112 _LIBCPP_INLINE_VISIBILITY void pop_back() {__destruct_at_end(__end_-1);} 174 if (__end_ != nullptr) [all …]
|
D | vector | 338 pointer __end_; 389 __begin_ = __end_ = __end_cap() = nullptr; 416 while (__new_last != __end_) 417 __alloc_traits::destroy(__alloc(), _VSTD::__to_raw_pointer(--__end_)); 425 __end_(nullptr), 434 __end_(nullptr), 632 {return static_cast<size_type>(this->__end_ - this->__begin_);} 638 {return this->__begin_ == this->__end_;} 661 return *(this->__end_ - 1); 666 return *(this->__end_ - 1); [all …]
|
D | valarray | 798 value_type* __end_; 803 valarray() : __begin_(0), __end_(0) {} 1014 size_t size() const {return static_cast<size_t>(__end_ - __begin_);} 1681 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j) 1697 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j) 1713 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j) 1729 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j) 1745 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j) 1761 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j) 1777 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j) [all …]
|
D | regex | 2498 __owns_one_state<_CharT>* __end_; 2520 __end_(0) 2525 __end_(0) 2530 __end_(0) 2539 __end_(0) 2546 __end_(0) 2553 __end_(0) 2618 __end_ = nullptr; 2953 swap(__end_, __r.__end_); 3025 __end_ = __start_.get(); [all …]
|
D | list | 552 __node_base __end_; 558 const_cast<__node_base&>(__end_).__self()); 594 return iterator(__end_.__next_, this); 596 return iterator(__end_.__next_); 603 return const_iterator(__end_.__next_, this); 605 return const_iterator(__end_.__next_); 723 __link_pointer __f = __end_.__next_; 755 swap(__end_, __c.__end_); 757 __end_.__next_ = __end_.__prev_ = __end_as_link(); 759 __end_.__prev_->__next_ = __end_.__next_->__prev_ = __end_as_link(); [all …]
|
D | deque | 2346 _VSTD::swap(__base::__map_.__end_, __buf.__end_); 2433 _VSTD::swap(__base::__map_.__end_, __buf.__end_); 2489 _VSTD::swap(__base::__map_.__end_, __buf.__end_); 2575 _VSTD::swap(__base::__map_.__end_, __buf.__end_);
|
/external/clang/test/CodeGenCXX/ |
D | cxx0x-initializer-stdinitializerlist-startend.cpp | 11 const _E* __end_; member in std::initializer_list 15 __end_(__e) in initializer_list() 27 initializer_list() : __begin_(nullptr), __end_(nullptr) {} in initializer_list() 29 size_t size() const {return __end_ - __begin_;} in size() 31 const _E* end() const {return __end_;} in end()
|
D | cxx0x-initializer-stdinitializerlist-pr12086.cpp | 14 const _E* __end_; member in std::initializer_list 22 __end_(__b + __s) in initializer_list() 38 constexpr initializer_list() : __begin_(nullptr), __end_(nullptr) {} in initializer_list() 40 size_t size() const {return __end_ - __begin_;} in size() 42 const _E* end() const {return __end_;} in end()
|