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

1 23 4 5

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/profile/impl/
profiler_trace.h 523 std::string::size_type __pos = __line.find("="); local
524 std::string __factor_name = __line.substr(0, __pos);
526 std::string __factor_value = __line.substr(__pos + 1, __end - __pos);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
vstring.h 86 _M_check(size_type __pos, const char* __s) const
88 if (__pos > this->size())
90 return __pos;
100 // NB: _M_limit doesn't check for a bad __pos value.
102 _M_limit(size_type __pos, size_type __off) const
104 const bool __testoff = __off < this->size() - __pos;
105 return __testoff ? __off : this->size() - __pos;
178 * @param __pos Index of first character to copy from.
181 __versa_string(const __versa_string& __str, size_type __pos,
184 + __str._M_check(__pos,
1074 const size_type __pos = __p - _M_ibegin(); local
1116 const size_type __pos = __position - _M_ibegin(); local
1137 const size_type __pos = __first - _M_ibegin(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/profile/impl/
profiler_trace.h 516 std::string::size_type __pos = __line.find("="); local
517 std::string __factor_name = __line.substr(0, __pos);
519 std::string __factor_value = __line.substr(__pos + 1, __end - __pos);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
vstring.h 85 _M_check(size_type __pos, const char* __s) const
87 if (__pos > this->size())
89 return __pos;
99 // NB: _M_limit doesn't check for a bad __pos value.
101 _M_limit(size_type __pos, size_type __off) const
103 const bool __testoff = __off < this->size() - __pos;
104 return __testoff ? __off : this->size() - __pos;
177 * @param __pos Index of first character to copy from.
180 __versa_string(const __versa_string& __str, size_type __pos,
183 + __str._M_check(__pos,
1093 const size_type __pos = __p - _M_ibegin(); local
1135 const size_type __pos = __position - _M_ibegin(); local
1156 const size_type __pos = __first - _M_ibegin(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/profile/impl/
profiler_trace.h 516 std::string::size_type __pos = __line.find("="); local
517 std::string __factor_name = __line.substr(0, __pos);
519 std::string __factor_value = __line.substr(__pos + 1, __end - __pos);
  /external/stlport/stlport/stl/
_bitset.h 119 static size_t _STLP_CALL _S_whichword( size_t __pos ) {
120 return __pos / __BITS_PER_WORD;
122 static size_t _STLP_CALL _S_whichbyte( size_t __pos ) {
123 return (__pos % __BITS_PER_WORD) / CHAR_BIT;
125 static size_t _STLP_CALL _S_whichbit( size_t __pos ) {
126 return __pos % __BITS_PER_WORD;
128 static _WordT _STLP_CALL _S_maskbit( size_t __pos ) {
129 return __STATIC_CAST(_WordT,1) << _S_whichbit(__pos);
132 _WordT& _M_getword(size_t __pos) { return _M_w[_S_whichword(__pos)]; }
604 __result <<= __pos ; return __result; local
608 __result >>= __pos ; return __result; local
    [all...]
_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...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_bitset.h 119 static size_t _STLP_CALL _S_whichword( size_t __pos ) {
120 return __pos / __BITS_PER_WORD;
122 static size_t _STLP_CALL _S_whichbyte( size_t __pos ) {
123 return (__pos % __BITS_PER_WORD) / CHAR_BIT;
125 static size_t _STLP_CALL _S_whichbit( size_t __pos ) {
126 return __pos % __BITS_PER_WORD;
128 static _WordT _STLP_CALL _S_maskbit( size_t __pos ) {
129 return __STATIC_CAST(_WordT,1) << _S_whichbit(__pos);
132 _WordT& _M_getword(size_t __pos) { return _M_w[_S_whichword(__pos)]; }
604 __result <<= __pos ; return __result; local
608 __result >>= __pos ; return __result; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
vstring.h 93 _M_check(size_type __pos, const char* __s) const
95 if (__pos > this->size())
97 return __pos;
107 // NB: _M_limit doesn't check for a bad __pos value.
109 _M_limit(size_type __pos, size_type __off) const
111 const bool __testoff = __off < this->size() - __pos;
112 return __testoff ? __off : this->size() - __pos;
185 * @param __pos Index of first character to copy from.
188 __versa_string(const __versa_string& __str, size_type __pos,
191 + __str._M_check(__pos,
1048 const size_type __pos = __p - _M_ibegin(); local
1090 const size_type __pos = __position - _M_ibegin(); local
1111 const size_type __pos = __first - _M_ibegin(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/
vstring.h 98 _M_check(size_type __pos, const char* __s) const
100 if (__pos > this->size())
102 return __pos;
112 // NB: _M_limit doesn't check for a bad __pos value.
114 _M_limit(size_type __pos, size_type __off) const
116 const bool __testoff = __off < this->size() - __pos;
117 return __testoff ? __off : this->size() - __pos;
190 * @param __pos Index of first character to copy from.
193 __versa_string(const __versa_string& __str, size_type __pos,
196 + __str._M_check(__pos,
1083 const size_type __pos = __p - _M_ibegin(); local
1125 const size_type __pos = __position - _M_ibegin(); local
1146 const size_type __pos = __first - _M_ibegin(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/
vstring.h 98 _M_check(size_type __pos, const char* __s) const
100 if (__pos > this->size())
102 return __pos;
112 // NB: _M_limit doesn't check for a bad __pos value.
114 _M_limit(size_type __pos, size_type __off) const
116 const bool __testoff = __off < this->size() - __pos;
117 return __testoff ? __off : this->size() - __pos;
190 * @param __pos Index of first character to copy from.
193 __versa_string(const __versa_string& __str, size_type __pos,
196 + __str._M_check(__pos,
1083 const size_type __pos = __p - _M_ibegin(); local
1125 const size_type __pos = __position - _M_ibegin(); local
1146 const size_type __pos = __first - _M_ibegin(); local
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring.h 93 _M_check(size_type __pos, const char* __s) const
95 if (__pos > this->size())
97 return __pos;
107 // NB: _M_limit doesn't check for a bad __pos value.
109 _M_limit(size_type __pos, size_type __off) const
111 const bool __testoff = __off < this->size() - __pos;
112 return __testoff ? __off : this->size() - __pos;
185 * @param __pos Index of first character to copy from.
188 __versa_string(const __versa_string& __str, size_type __pos,
191 + __str._M_check(__pos,
1048 const size_type __pos = __p - _M_ibegin(); local
1090 const size_type __pos = __position - _M_ibegin(); local
1111 const size_type __pos = __first - _M_ibegin(); local
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_bitset.h 119 static size_t _STLP_CALL _S_whichword( size_t __pos ) {
120 return __pos / __BITS_PER_WORD;
122 static size_t _STLP_CALL _S_whichbyte( size_t __pos ) {
123 return (__pos % __BITS_PER_WORD) / CHAR_BIT;
125 static size_t _STLP_CALL _S_whichbit( size_t __pos ) {
126 return __pos % __BITS_PER_WORD;
128 static _WordT _STLP_CALL _S_maskbit( size_t __pos ) {
129 return __STATIC_CAST(_WordT,1) << _S_whichbit(__pos);
132 _WordT& _M_getword(size_t __pos) { return _M_w[_S_whichword(__pos)]; }
604 __result <<= __pos ; return __result; local
608 __result >>= __pos ; return __result; local
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring.h 93 _M_check(size_type __pos, const char* __s) const
95 if (__pos > this->size())
97 return __pos;
107 // NB: _M_limit doesn't check for a bad __pos value.
109 _M_limit(size_type __pos, size_type __off) const
111 const bool __testoff = __off < this->size() - __pos;
112 return __testoff ? __off : this->size() - __pos;
185 * @param __pos Index of first character to copy from.
188 __versa_string(const __versa_string& __str, size_type __pos,
191 + __str._M_check(__pos,
1048 const size_type __pos = __p - _M_ibegin(); local
1090 const size_type __pos = __position - _M_ibegin(); local
1111 const size_type __pos = __first - _M_ibegin(); local
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_bitset.h 119 static size_t _STLP_CALL _S_whichword( size_t __pos ) {
120 return __pos / __BITS_PER_WORD;
122 static size_t _STLP_CALL _S_whichbyte( size_t __pos ) {
123 return (__pos % __BITS_PER_WORD) / CHAR_BIT;
125 static size_t _STLP_CALL _S_whichbit( size_t __pos ) {
126 return __pos % __BITS_PER_WORD;
128 static _WordT _STLP_CALL _S_maskbit( size_t __pos ) {
129 return __STATIC_CAST(_WordT,1) << _S_whichbit(__pos);
132 _WordT& _M_getword(size_t __pos) { return _M_w[_S_whichword(__pos)]; }
604 __result <<= __pos ; return __result; local
608 __result >>= __pos ; return __result; local
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring.h 93 _M_check(size_type __pos, const char* __s) const
95 if (__pos > this->size())
97 return __pos;
107 // NB: _M_limit doesn't check for a bad __pos value.
109 _M_limit(size_type __pos, size_type __off) const
111 const bool __testoff = __off < this->size() - __pos;
112 return __testoff ? __off : this->size() - __pos;
185 * @param __pos Index of first character to copy from.
188 __versa_string(const __versa_string& __str, size_type __pos,
191 + __str._M_check(__pos,
1048 const size_type __pos = __p - _M_ibegin(); local
1090 const size_type __pos = __position - _M_ibegin(); local
1111 const size_type __pos = __first - _M_ibegin(); local
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_bitset.h 119 static size_t _STLP_CALL _S_whichword( size_t __pos ) {
120 return __pos / __BITS_PER_WORD;
122 static size_t _STLP_CALL _S_whichbyte( size_t __pos ) {
123 return (__pos % __BITS_PER_WORD) / CHAR_BIT;
125 static size_t _STLP_CALL _S_whichbit( size_t __pos ) {
126 return __pos % __BITS_PER_WORD;
128 static _WordT _STLP_CALL _S_maskbit( size_t __pos ) {
129 return __STATIC_CAST(_WordT,1) << _S_whichbit(__pos);
132 _WordT& _M_getword(size_t __pos) { return _M_w[_S_whichword(__pos)]; }
604 __result <<= __pos ; return __result; local
608 __result >>= __pos ; return __result; local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
vstring.h 93 _M_check(size_type __pos, const char* __s) const
95 if (__pos > this->size())
97 return __pos;
107 // NB: _M_limit doesn't check for a bad __pos value.
109 _M_limit(size_type __pos, size_type __off) const
111 const bool __testoff = __off < this->size() - __pos;
112 return __testoff ? __off : this->size() - __pos;
185 * @param __pos Index of first character to copy from.
188 __versa_string(const __versa_string& __str, size_type __pos,
191 + __str._M_check(__pos,
1048 const size_type __pos = __p - _M_ibegin(); local
1090 const size_type __pos = __position - _M_ibegin(); local
1111 const size_type __pos = __first - _M_ibegin(); local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
vstring.h 98 _M_check(size_type __pos, const char* __s) const
100 if (__pos > this->size())
102 return __pos;
112 // NB: _M_limit doesn't check for a bad __pos value.
114 _M_limit(size_type __pos, size_type __off) const
116 const bool __testoff = __off < this->size() - __pos;
117 return __testoff ? __off : this->size() - __pos;
190 * @param __pos Index of first character to copy from.
193 __versa_string(const __versa_string& __str, size_type __pos,
196 + __str._M_check(__pos,
1083 const size_type __pos = __p - _M_ibegin(); local
1125 const size_type __pos = __position - _M_ibegin(); local
1146 const size_type __pos = __first - _M_ibegin(); local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_deque.h 1832 _M_destroy_data(begin(), __pos, _M_get_Tp_allocator()); local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_bitset.h 119 static size_t _STLP_CALL _S_whichword( size_t __pos ) {
120 return __pos / __BITS_PER_WORD;
122 static size_t _STLP_CALL _S_whichbyte( size_t __pos ) {
123 return (__pos % __BITS_PER_WORD) / CHAR_BIT;
125 static size_t _STLP_CALL _S_whichbit( size_t __pos ) {
126 return __pos % __BITS_PER_WORD;
128 static _WordT _STLP_CALL _S_maskbit( size_t __pos ) {
129 return __STATIC_CAST(_WordT,1) << _S_whichbit(__pos);
132 _WordT& _M_getword(size_t __pos) { return _M_w[_S_whichword(__pos)]; }
604 __result <<= __pos ; return __result; local
608 __result >>= __pos ; return __result; local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_bitset.h 119 static size_t _STLP_CALL _S_whichword( size_t __pos ) {
120 return __pos / __BITS_PER_WORD;
122 static size_t _STLP_CALL _S_whichbyte( size_t __pos ) {
123 return (__pos % __BITS_PER_WORD) / CHAR_BIT;
125 static size_t _STLP_CALL _S_whichbit( size_t __pos ) {
126 return __pos % __BITS_PER_WORD;
128 static _WordT _STLP_CALL _S_maskbit( size_t __pos ) {
129 return __STATIC_CAST(_WordT,1) << _S_whichbit(__pos);
132 _WordT& _M_getword(size_t __pos) { return _M_w[_S_whichword(__pos)]; }
604 __result <<= __pos ; return __result; local
608 __result >>= __pos ; return __result; local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
vstring.h 98 _M_check(size_type __pos, const char* __s) const
100 if (__pos > this->size())
102 return __pos;
112 // NB: _M_limit doesn't check for a bad __pos value.
114 _M_limit(size_type __pos, size_type __off) const
116 const bool __testoff = __off < this->size() - __pos;
117 return __testoff ? __off : this->size() - __pos;
190 * @param __pos Index of first character to copy from.
193 __versa_string(const __versa_string& __str, size_type __pos,
196 + __str._M_check(__pos,
1083 const size_type __pos = __p - _M_ibegin(); local
1125 const size_type __pos = __position - _M_ibegin(); local
1146 const size_type __pos = __first - _M_ibegin(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_deque.h 1832 _M_destroy_data(begin(), __pos, _M_get_Tp_allocator()); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
stl_deque.h 1860 _M_destroy_data(begin(), __pos, _M_get_Tp_allocator()); local
    [all...]

Completed in 1313 milliseconds

1 23 4 5