/external/stlport/stlport/stl/ |
D | _deque.c | 113 const_iterator __mid = __x.begin() + difference_type(__len); 210 difference_type __index = __pos - this->_M_start; in _M_erase() 247 difference_type __index = __pos - this->_M_start; in _M_erase() 262 difference_type __n = __last - __first; in _M_erase() 263 difference_type __elems_before = __first - this->_M_start; in _M_erase() 264 if (__elems_before <= difference_type(this->size() - __n) / 2) { in _M_erase() 326 difference_type __n = __last - __first; in _M_erase() 327 difference_type __elems_before = __first - this->_M_start; in _M_erase() 328 if (__elems_before <= difference_type(this->size() - __n) / 2) { in _M_erase() 467 const difference_type __elems_before = __pos - this->_M_start; in _M_fill_insert_aux() [all …]
|
D | _bvector.h | 104 typedef ptrdiff_t difference_type; 131 void _M_advance (difference_type __i) { 132 difference_type __n = __i + _M_offset; 142 difference_type _M_subtract(const _Bit_iterator_base& __x) const { 175 typedef ptrdiff_t difference_type; 208 _Self& operator+=(difference_type __i) { 212 _Self& operator-=(difference_type __i) { 216 _Self operator+(difference_type __i) const { 220 _Self operator-(difference_type __i) const { 224 difference_type operator-(const _Self& __x) const { [all …]
|
D | _deque.h | 95 typedef ptrdiff_t difference_type; typedef 119 difference_type _M_subtract(const _Self& __x) const { in _M_subtract() 120 return difference_type(_S_buffer_size()) * (_M_node - __x._M_node - 1) + in _M_subtract() 139 void _M_advance(difference_type __n) { in _M_advance() 141 difference_type __offset = __n + (_M_cur - _M_first); in _M_advance() 142 if (__offset >= 0 && __offset < difference_type(buffersize)) in _M_advance() 145 difference_type __node_offset = in _M_advance() 147 : -difference_type((-__offset - 1) / buffersize) - 1; in _M_advance() 151 (__offset - __node_offset * difference_type(buffersize)); in _M_advance() 156 _M_last = (_M_first = *(_M_node = __new_node)) + difference_type(_S_buffer_size()); in _M_set_node() [all …]
|
D | _iterator.h | 50 typename iterator_traits<_Iterator>::difference_type, 57 typedef typename iterator_traits<_Iterator>::difference_type difference_type; typedef 99 _Self operator+(difference_type __n) const { return _Self(current - __n); } 100 _Self& operator+=(difference_type __n) { 104 _Self operator-(difference_type __n) const { return _Self(current + __n); } 105 _Self& operator-=(difference_type __n) { 109 reference operator[](difference_type __n) const { return *(*this + __n); } 148 inline typename reverse_iterator<_Iterator>::difference_type _STLP_CALL
|
D | _iterator_base.h | 62 typedef _Distance difference_type; typedef 71 typedef void difference_type; 87 …P_DISTANCE_TYPE(_It, _Tp) (_STLP_TYPENAME _STLP_STD::iterator_traits< _Tp >::difference_type*)0 151 typedef typename _Iterator::difference_type difference_type; 157 # define _STLP_DIFFERENCE_TYPE(_Iterator) typename iterator_traits<_Iterator>::difference_type 169 typedef ptrdiff_t difference_type; 178 typedef ptrdiff_t difference_type; 188 typedef ptrdiff_t difference_type; 227 inline _STLP_TYPENAME_ON_RETURN_TYPE _STLP_STD::iterator_traits<_Iter>::difference_type* 229 typedef _STLP_TYPENAME _STLP_STD::iterator_traits<_Iter>::difference_type _diff_type;
|
D | _time_facets.c | 79 typedef ptrdiff_t difference_type; in __match() typedef 80 difference_type __n = __name_end - __name; in __match() 81 difference_type __i, __start = 0; in __match() 83 difference_type __check_count = __n; in __match() 90 difference_type __new_n = __n; in __match()
|
D | _unordered_set.h | 55 typedef typename _Ht::difference_type difference_type; in _STLP_CREATE_HASH_ITERATOR_TRAITS() typedef 205 typedef typename _Ht::difference_type difference_type; in _STLP_CREATE_HASH_ITERATOR_TRAITS() typedef 366 typedef void difference_type; 393 typedef void difference_type;
|
D | _pthread_alloc.h | 101 typedef ptrdiff_t difference_type; typedef 193 typedef ptrdiff_t difference_type; typedef 282 typedef ptrdiff_t difference_type; 376 typedef ptrdiff_t difference_type;
|
D | _unordered_map.h | 61 typedef typename _Ht::difference_type difference_type; in _STLP_CREATE_HASH_ITERATOR_TRAITS() typedef 229 typedef typename _Ht::difference_type difference_type; in _STLP_CREATE_HASH_ITERATOR_TRAITS() typedef 391 typedef void difference_type; 418 typedef void difference_type;
|
D | _iterator_old.h | 73 typedef _Distance difference_type; typedef 167 typedef _Distance difference_type; typedef 181 _Reference operator*() const { return *(__current - (difference_type)1); }
|
/external/astl/include/ |
D | iterator | 55 typedef _Distance difference_type; // Distance between iterators. 67 typedef typename _Iterator::difference_type difference_type; 79 typedef ptrdiff_t difference_type; 89 typedef ptrdiff_t difference_type; 105 typedef typename iterator_traits<_Iterator>::difference_type 106 difference_type; 139 reference operator[](const difference_type& n) const { 143 __wrapper_iterator& operator+=(const difference_type& n) { 148 __wrapper_iterator operator+(const difference_type& n) const { 152 __wrapper_iterator& operator-=(const difference_type& n) { [all …]
|
D | memory | 86 difference_type difference_type; 87 const difference_type len = std::distance(begin, end); 88 const difference_type kMaxSize = 89 std::numeric_limits<difference_type>::max();
|
/external/clang/include/clang/AST/ |
D | UnresolvedSet.h | 44 typedef std::iterator_traits<IteratorTy>::difference_type difference_type; typedef 62 UnresolvedSetIterator &operator+=(difference_type d) { 65 UnresolvedSetIterator operator+(difference_type d) const { 68 UnresolvedSetIterator &operator-=(difference_type d) { 71 UnresolvedSetIterator operator-(difference_type d) const { 74 value_type operator[](difference_type d) const { return *(*this + d); } 76 difference_type operator-(const UnresolvedSetIterator &o) const {
|
D | CanonicalType.h | 393 typedef typename std::iterator_traits<InputIterator>::difference_type 394 difference_type; 439 reference operator[](difference_type n) const { 443 CanTypeIterator &operator+=(difference_type n) { 448 CanTypeIterator &operator-=(difference_type n) { 453 friend CanTypeIterator operator+(CanTypeIterator X, difference_type n) { 458 friend CanTypeIterator operator+(difference_type n, CanTypeIterator X) { 463 friend CanTypeIterator operator-(CanTypeIterator X, difference_type n) { 468 friend difference_type operator-(const CanTypeIterator &X,
|
D | DeclFriend.h | 141 typedef int difference_type; typedef 166 friend_iterator &operator+=(difference_type N) { 173 friend_iterator operator+(difference_type N) const {
|
D | DependentDiagnostic.h | 134 typedef int difference_type; typedef 159 ddiag_iterator &operator+=(difference_type N) { 166 ddiag_iterator operator+(difference_type N) const {
|
/external/llvm/include/llvm/ADT/ |
D | STLExtras.h | 72 typedef typename std::iterator_traits<RootIt>::difference_type 73 difference_type; typedef 99 _Self operator+ (difference_type n) const { 102 _Self& operator+= (difference_type n) { current += n; return *this; } 103 _Self operator- (difference_type n) const { 106 _Self& operator-= (difference_type n) { current -= n; return *this; } 107 reference operator[](difference_type n) const { return *(*this + n); } 113 inline difference_type operator-(const _Self &X) const { 120 operator+(typename mapped_iterator<_Iterator, Func>::difference_type N,
|
D | DenseSet.h | 66 typedef typename MapTy::iterator::difference_type difference_type; typedef 86 typedef typename MapTy::const_iterator::difference_type difference_type; typedef
|
D | ilist.h | 153 typedef typename super::difference_type difference_type; 163 void operator[](difference_type) const; 164 void operator+(difference_type) const; 165 void operator-(difference_type) const; 166 void operator+=(difference_type) const; 167 void operator-=(difference_type) const; 346 typedef ptrdiff_t difference_type;
|
/external/astl/tests/ |
D | test_iterator.cpp | 41 typedef ptrdiff_t difference_type; typedef 49 typedef ptrdiff_t difference_type; typedef 57 typedef ptrdiff_t difference_type; typedef 65 typedef ptrdiff_t difference_type; typedef
|
/external/protobuf/src/google/protobuf/ |
D | repeated_field.h | 937 typedef typename superclass::difference_type difference_type; typedef 974 iterator& operator+=(difference_type d) { 978 friend iterator operator+(iterator it, difference_type d) { 982 friend iterator operator+(difference_type d, iterator it) { 986 iterator& operator-=(difference_type d) { 990 friend iterator operator-(iterator it, difference_type d) { 996 reference operator[](difference_type d) const { return *(*this + d); } 999 difference_type operator-(const iterator& x) const { return it_ - x.it_; } 1025 typedef typename superclass::difference_type difference_type; typedef 1051 iterator& operator+=(difference_type d) { [all …]
|
/external/stlport/stlport/stl/debug/ |
D | _iterator.h | 124 typedef ptrdiff_t difference_type; typedef 202 typedef typename _Base::difference_type difference_type; typedef 269 _Self& operator+=(difference_type __n) { 274 _Self& operator-=(difference_type __n) { 278 _Self operator+(difference_type __n) const { 283 _Self operator-(difference_type __n) const { 288 reference operator[](difference_type __n) const { return *(*this + __n); }
|
/external/clang/include/clang/Index/ |
D | STLExtras.h | 32 typedef typename iter_type::difference_type difference_type; typedef
|
/external/stlport/stlport/stl/config/ |
D | features.h | 730 const_pointer, difference_type> const_reverse_iterator; \ 731 typedef _STLP_STD::__reverse_iterator<iterator, value_type, reference, pointer, difference_type> \ 736 difference_type> const_reverse_iterator; \ 738 reference, difference_type> \ 751 typedef typename _Super::difference_type difference_type; \
|
/external/stlport/stlport/stl/pointers/ |
D | _tools.h | 342 typedef typename _IteTraits::difference_type difference_type; 371 _Self& operator += (difference_type __offset) { 375 difference_type operator -(_Self const& __other) const
|