HomeSort by relevance Sort by last modified time
    Searched defs:__pos (Results 101 - 123 of 123) sorted by null

1 2 3 45

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
basic_string.h 316 _M_check(size_type __pos, const char* __s) const
318 if (__pos > this->size())
320 return __pos;
330 // NB: _M_limit doesn't check for a bad __pos value.
332 _M_limit(size_type __pos, size_type __off) const
334 const bool __testoff = __off < this->size() - __pos;
335 return __testoff ? __off : this->size() - __pos;
415 _M_mutate(size_type __pos, size_type __len1, size_type __len2);
457 basic_string(const basic_string& __str, size_type __pos,
466 basic_string(const basic_string& __str, size_type __pos,
1326 const size_type __pos = __p - _M_ibegin(); local
1367 const size_type __pos = __position - _M_ibegin(); local
    [all...]
stl_deque.h 1823 _M_destroy_data(begin(), __pos, _M_get_Tp_allocator()); local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
ropeimpl.h 74 size_t __pos = __x._M_current_pos; local
80 __x._M_buf_ptr = __x._M_buf_start + (__pos - __leaf_pos);
91 if (__buf_start_pos + __len <= __pos)
93 __buf_start_pos = __pos - __len / 4;
100 __x._M_buf_ptr = __x._M_tmp_buf + (__pos - __buf_start_pos);
121 size_t __pos = __x._M_current_pos; local
124 if (__pos >= __x._M_root->_M_size)
135 __x._M_buf_ptr = __curr_rope->_M_c_string + __pos;
160 if (__pos >= __curr_start_pos + __left_len)
318 _Rope_iterator(rope<_CharT, _Alloc>& __r, size_t __pos)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
basic_string.h 318 _M_check(size_type __pos, const char* __s) const
320 if (__pos > this->size())
322 return __pos;
332 // NB: _M_limit doesn't check for a bad __pos value.
334 _M_limit(size_type __pos, size_type __off) const
336 const bool __testoff = __off < this->size() - __pos;
337 return __testoff ? __off : this->size() - __pos;
417 _M_mutate(size_type __pos, size_type __len1, size_type __len2);
456 * @param __pos Index of first character to copy from.
459 basic_string(const basic_string& __str, size_type __pos,
1337 const size_type __pos = __p - _M_ibegin(); local
1379 const size_type __pos = __position - _M_ibegin(); local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
ropeimpl.h 74 size_t __pos = __x._M_current_pos; local
80 __x._M_buf_ptr = __x._M_buf_start + (__pos - __leaf_pos);
91 if (__buf_start_pos + __len <= __pos)
93 __buf_start_pos = __pos - __len / 4;
100 __x._M_buf_ptr = __x._M_tmp_buf + (__pos - __buf_start_pos);
121 size_t __pos = __x._M_current_pos; local
124 if (__pos >= __x._M_root->_M_size)
135 __x._M_buf_ptr = __curr_rope->_M_c_string + __pos;
160 if (__pos >= __curr_start_pos + __left_len)
318 _Rope_iterator(rope<_CharT, _Alloc>& __r, size_t __pos)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_rope.c 59 _Rope_iterator<_CharT, _Alloc>::_Rope_iterator(rope<_CharT,_Alloc>* __r, size_t __pos)
60 : _Rope_iterator_base<_CharT,_Alloc>(__r->_M_tree_ptr._M_data, __pos),
64 _Rope_iterator<_CharT, _Alloc>::_Rope_iterator(rope<_CharT,_Alloc>& __r, size_t __pos):
65 _Rope_iterator_base<_CharT,_Alloc>(__r._M_tree_ptr._M_data, __pos),
94 size_t __pos = __x._M_current_pos; local
100 __x._M_buf_ptr = __x._M_buf_start + (__pos - __leaf_pos);
112 if (__buf_start_pos + __len <= __pos) {
113 __buf_start_pos = __pos - __len/4;
122 __x._M_buf_ptr = __x._M_tmp_buf._M_data + (__pos - __buf_start_pos);
142 size_t __pos = __x._M_current_pos local
    [all...]
_rope.h 787 // Last valid __pos in path_end;
818 _Rope_iterator_base(_RopeRep* __root, size_t __pos)
819 : _M_current_pos(__pos),_M_root(__root), _M_buf_ptr(0) {}
881 _Rope_const_iterator(const _RopeRep* __root, size_t __pos):
882 _Rope_iterator_base<_CharT,_Alloc>(__CONST_CAST(_RopeRep*,__root), __pos)
900 _Rope_const_iterator(const rope<_CharT,_Alloc>& __r, size_t __pos) :
901 _Rope_iterator_base<_CharT,_Alloc>(__r._M_tree_ptr._M_data, __pos) {}
1953 size_t __pos = __start.index(); local
1964 size_t __pos = __start.index(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_rope.c 59 _Rope_iterator<_CharT, _Alloc>::_Rope_iterator(rope<_CharT,_Alloc>* __r, size_t __pos)
60 : _Rope_iterator_base<_CharT,_Alloc>(__r->_M_tree_ptr._M_data, __pos),
64 _Rope_iterator<_CharT, _Alloc>::_Rope_iterator(rope<_CharT,_Alloc>& __r, size_t __pos):
65 _Rope_iterator_base<_CharT,_Alloc>(__r._M_tree_ptr._M_data, __pos),
94 size_t __pos = __x._M_current_pos; local
100 __x._M_buf_ptr = __x._M_buf_start + (__pos - __leaf_pos);
112 if (__buf_start_pos + __len <= __pos) {
113 __buf_start_pos = __pos - __len/4;
122 __x._M_buf_ptr = __x._M_tmp_buf._M_data + (__pos - __buf_start_pos);
142 size_t __pos = __x._M_current_pos local
    [all...]
_rope.h 787 // Last valid __pos in path_end;
818 _Rope_iterator_base(_RopeRep* __root, size_t __pos)
819 : _M_current_pos(__pos),_M_root(__root), _M_buf_ptr(0) {}
881 _Rope_const_iterator(const _RopeRep* __root, size_t __pos):
882 _Rope_iterator_base<_CharT,_Alloc>(__CONST_CAST(_RopeRep*,__root), __pos)
900 _Rope_const_iterator(const rope<_CharT,_Alloc>& __r, size_t __pos) :
901 _Rope_iterator_base<_CharT,_Alloc>(__r._M_tree_ptr._M_data, __pos) {}
1953 size_t __pos = __start.index(); local
1964 size_t __pos = __start.index(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
basic_string.h 316 _M_check(size_type __pos, const char* __s) const
318 if (__pos > this->size())
320 return __pos;
330 // NB: _M_limit doesn't check for a bad __pos value.
332 _M_limit(size_type __pos, size_type __off) const
334 const bool __testoff = __off < this->size() - __pos;
335 return __testoff ? __off : this->size() - __pos;
415 _M_mutate(size_type __pos, size_type __len1, size_type __len2);
457 basic_string(const basic_string& __str, size_type __pos,
466 basic_string(const basic_string& __str, size_type __pos,
1326 const size_type __pos = __p - _M_ibegin(); local
1367 const size_type __pos = __position - _M_ibegin(); local
    [all...]
stl_deque.h 1823 _M_destroy_data(begin(), __pos, _M_get_Tp_allocator()); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
ropeimpl.h 74 size_t __pos = __x._M_current_pos; local
80 __x._M_buf_ptr = __x._M_buf_start + (__pos - __leaf_pos);
91 if (__buf_start_pos + __len <= __pos)
93 __buf_start_pos = __pos - __len / 4;
100 __x._M_buf_ptr = __x._M_tmp_buf + (__pos - __buf_start_pos);
121 size_t __pos = __x._M_current_pos; local
124 if (__pos >= __x._M_root->_M_size)
135 __x._M_buf_ptr = __curr_rope->_M_c_string + __pos;
160 if (__pos >= __curr_start_pos + __left_len)
318 _Rope_iterator(rope<_CharT, _Alloc>& __r, size_t __pos)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
basic_string.h 318 _M_check(size_type __pos, const char* __s) const
320 if (__pos > this->size())
322 return __pos;
332 // NB: _M_limit doesn't check for a bad __pos value.
334 _M_limit(size_type __pos, size_type __off) const
336 const bool __testoff = __off < this->size() - __pos;
337 return __testoff ? __off : this->size() - __pos;
417 _M_mutate(size_type __pos, size_type __len1, size_type __len2);
456 * @param __pos Index of first character to copy from.
459 basic_string(const basic_string& __str, size_type __pos,
1337 const size_type __pos = __p - _M_ibegin(); local
1379 const size_type __pos = __position - _M_ibegin(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
ropeimpl.h 74 size_t __pos = __x._M_current_pos; local
80 __x._M_buf_ptr = __x._M_buf_start + (__pos - __leaf_pos);
91 if (__buf_start_pos + __len <= __pos)
93 __buf_start_pos = __pos - __len / 4;
100 __x._M_buf_ptr = __x._M_tmp_buf + (__pos - __buf_start_pos);
121 size_t __pos = __x._M_current_pos; local
124 if (__pos >= __x._M_root->_M_size)
135 __x._M_buf_ptr = __curr_rope->_M_c_string + __pos;
160 if (__pos >= __curr_start_pos + __left_len)
318 _Rope_iterator(rope<_CharT, _Alloc>& __r, size_t __pos)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
basic_string.h 321 _M_check(size_type __pos, const char* __s) const
323 if (__pos > this->size())
325 return __pos;
335 // NB: _M_limit doesn't check for a bad __pos value.
337 _M_limit(size_type __pos, size_type __off) const
339 const bool __testoff = __off < this->size() - __pos;
340 return __testoff ? __off : this->size() - __pos;
420 _M_mutate(size_type __pos, size_type __len1, size_type __len2);
459 * @param __pos Index of first character to copy from.
462 basic_string(const basic_string& __str, size_type __pos,
1340 const size_type __pos = __p - _M_ibegin(); local
1382 const size_type __pos = __position - _M_ibegin(); local
    [all...]
stl_tree.h 582 _M_get_insert_hint_unique_pos(const_iterator __pos,
586 _M_get_insert_hint_equal_pos(const_iterator __pos,
765 _M_emplace_hint_unique(const_iterator __pos, _Args&&... __args);
769 _M_emplace_hint_equal(const_iterator __pos, _Args&&... __args);
1412 iterator __pos = __position._M_const_cast(); local
1492 iterator __pos = __position._M_const_cast(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
ropeimpl.h 73 size_t __pos = __x._M_current_pos; local
79 __x._M_buf_ptr = __x._M_buf_start + (__pos - __leaf_pos);
90 if (__buf_start_pos + __len <= __pos)
92 __buf_start_pos = __pos - __len / 4;
99 __x._M_buf_ptr = __x._M_tmp_buf + (__pos - __buf_start_pos);
120 size_t __pos = __x._M_current_pos; local
123 if (__pos >= __x._M_root->_M_size)
134 __x._M_buf_ptr = __curr_rope->_M_c_string + __pos;
159 if (__pos >= __curr_start_pos + __left_len)
317 _Rope_iterator(rope<_CharT, _Alloc>& __r, size_t __pos)
    [all...]
  /external/stlport/stlport/stl/
_rope.h 787 // Last valid __pos in path_end;
818 _Rope_iterator_base(_RopeRep* __root, size_t __pos)
819 : _M_current_pos(__pos),_M_root(__root), _M_buf_ptr(0) {}
881 _Rope_const_iterator(const _RopeRep* __root, size_t __pos):
882 _Rope_iterator_base<_CharT,_Alloc>(__CONST_CAST(_RopeRep*,__root), __pos)
900 _Rope_const_iterator(const rope<_CharT,_Alloc>& __r, size_t __pos) :
901 _Rope_iterator_base<_CharT,_Alloc>(__r._M_tree_ptr._M_data, __pos) {}
1953 size_t __pos = __start.index(); local
1964 size_t __pos = __start.index(); local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_rope.h 787 // Last valid __pos in path_end;
818 _Rope_iterator_base(_RopeRep* __root, size_t __pos)
819 : _M_current_pos(__pos),_M_root(__root), _M_buf_ptr(0) {}
881 _Rope_const_iterator(const _RopeRep* __root, size_t __pos):
882 _Rope_iterator_base<_CharT,_Alloc>(__CONST_CAST(_RopeRep*,__root), __pos)
900 _Rope_const_iterator(const rope<_CharT,_Alloc>& __r, size_t __pos) :
901 _Rope_iterator_base<_CharT,_Alloc>(__r._M_tree_ptr._M_data, __pos) {}
1953 size_t __pos = __start.index(); local
1964 size_t __pos = __start.index(); local
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_rope.h 787 // Last valid __pos in path_end;
818 _Rope_iterator_base(_RopeRep* __root, size_t __pos)
819 : _M_current_pos(__pos),_M_root(__root), _M_buf_ptr(0) {}
881 _Rope_const_iterator(const _RopeRep* __root, size_t __pos):
882 _Rope_iterator_base<_CharT,_Alloc>(__CONST_CAST(_RopeRep*,__root), __pos)
900 _Rope_const_iterator(const rope<_CharT,_Alloc>& __r, size_t __pos) :
901 _Rope_iterator_base<_CharT,_Alloc>(__r._M_tree_ptr._M_data, __pos) {}
1951 size_t __pos = __start.index(); local
1962 size_t __pos = __start.index(); local
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_rope.h 787 // Last valid __pos in path_end;
818 _Rope_iterator_base(_RopeRep* __root, size_t __pos)
819 : _M_current_pos(__pos),_M_root(__root), _M_buf_ptr(0) {}
881 _Rope_const_iterator(const _RopeRep* __root, size_t __pos):
882 _Rope_iterator_base<_CharT,_Alloc>(__CONST_CAST(_RopeRep*,__root), __pos)
900 _Rope_const_iterator(const rope<_CharT,_Alloc>& __r, size_t __pos) :
901 _Rope_iterator_base<_CharT,_Alloc>(__r._M_tree_ptr._M_data, __pos) {}
1951 size_t __pos = __start.index(); local
1962 size_t __pos = __start.index(); local
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_rope.h 787 // Last valid __pos in path_end;
818 _Rope_iterator_base(_RopeRep* __root, size_t __pos)
819 : _M_current_pos(__pos),_M_root(__root), _M_buf_ptr(0) {}
881 _Rope_const_iterator(const _RopeRep* __root, size_t __pos):
882 _Rope_iterator_base<_CharT,_Alloc>(__CONST_CAST(_RopeRep*,__root), __pos)
900 _Rope_const_iterator(const rope<_CharT,_Alloc>& __r, size_t __pos) :
901 _Rope_iterator_base<_CharT,_Alloc>(__r._M_tree_ptr._M_data, __pos) {}
1951 size_t __pos = __start.index(); local
1962 size_t __pos = __start.index(); local
    [all...]
  /external/valgrind/main/perf/
test_input_for_tinycc.c 4897 __off_t __pos; member in struct:__anon30284
4902 __off64_t __pos; member in struct:__anon30285
    [all...]

Completed in 1173 milliseconds

1 2 3 45