Searched defs:__j (Results 1 - 7 of 7) sorted by relevance

/external/stlport/stlport/stl/
H A D_tree.c414 iterator __j = iterator(__y); local
416 if (__j == begin())
419 --__j;
421 if (_M_key_compare(_S_key(__j._M_node), _KeyOfValue()(__val))) {
424 return pair<iterator,bool>(__j, false);
H A D_bitset.h281 for ( size_t __j = 0; __j < sizeof(_WordT); __j++ ) {
285 return __j*CHAR_BIT + _Bs_G::_S_first_one(__this_byte);
314 for ( size_t __j = _S_whichbyte(__prev); __j < sizeof(_WordT); __j++ ) {
318 return __j*CHAR_BIT + _Bs_G::_S_first_one(__this_byte);
391 // for b[i] = b[__j];
392 reference& operator=(const reference& __j) { argument
[all...]
H A Dconcept_checks.h470 __difference_operator_requirement_violation(_Iterator __i, _Iterator __j, argument
472 __n = __i - __j;
H A D_list.h611 iterator __j = __i; local
612 ++__j;
613 if (__pos == __i || __pos == __j) return;
615 _STLP_PRIV _List_global_inst::_Transfer(__pos._M_node, __i._M_node, __j._M_node);
H A D_rope.c193 int __j = __curr_depth + 1 - _S_path_cache_len; local
195 if (__j < 0) __j = 0;
196 while (__j <= __curr_depth) {
197 __x._M_path_end._M_data[++__i] = __path[__j++];
H A D_algo.c468 for (_Distance __j = 0; __j < __l/__d; __j++) {
480 for (_Distance __j = 0; __j < __k/__d - 1; __j ++) {
1877 _BidirectionalIter __j = __last; local
1878 while (!__comp(*__i, *--__j)) {}
1879 iter_swap(__i, __j);
1928 _BidirectionalIter __j local
[all...]
H A D_rope.h259 size_t __j = 0; local
260 for (; __j < __len; __i++, __j++) {
261 _M_buffer[__i] = __s[__j];
1768 void insert(size_t __p, const _CharT* __i, const _CharT* __j) { argument
1769 _Self __r(__i, __j);
1774 const const_iterator& __j) {
1775 _Self __r(__i, __j);
1780 const iterator& __j) {
1781 _Self __r(__i, __j);
1773 insert(size_t __p, const const_iterator& __i, const const_iterator& __j) argument
1779 insert(size_t __p, const iterator& __i, const iterator& __j) argument
1807 replace(size_t __p, size_t __n, const _CharT* __i, const _CharT* __j) argument
1813 replace(size_t __p, size_t __n, const const_iterator& __i, const const_iterator& __j) argument
1819 replace(size_t __p, size_t __n, const iterator& __i, const iterator& __j) argument
1844 replace(size_t __p, const _CharT* __i, const _CharT* __j) argument
1848 replace(size_t __p, const const_iterator& __i, const const_iterator& __j) argument
1853 replace(size_t __p, const iterator& __i, const iterator& __j) argument
1882 insert(const iterator& __p, const _CharT* __i, const _CharT* __j) argument
1885 insert(const iterator& __p, const const_iterator& __i, const const_iterator& __j) argument
1888 insert(const iterator& __p, const iterator& __i, const iterator& __j) argument
1904 replace(const iterator& __p, const iterator& __q, const _CharT* __i, const _CharT* __j) argument
1907 replace(const iterator& __p, const iterator& __q, const const_iterator& __i, const const_iterator& __j) argument
1910 replace(const iterator& __p, const iterator& __q, const iterator& __i, const iterator& __j) argument
1923 replace(const iterator& __p, const _CharT* __i, const _CharT* __j) argument
1925 replace(const iterator& __p, const_iterator __i, const_iterator __j) argument
1928 replace(const iterator& __p, iterator __i, iterator __j) argument
[all...]

Completed in 459 milliseconds