/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/ |
_string.h | 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, 186 basic_string(const _Self& __s, size_type __pos) 188 if (__pos > __s.size()) 191 _M_range_initialize(__s._M_Start() + __pos, __s._M_Finish()); 193 basic_string(const _Self& __s, size_type __pos, size_type __n) 195 if (__pos > __s.size()) 198 _M_range_initialize(__s._M_Start() + __pos, 199 __s._M_Start() + __pos + (min) (__n, __s.size() - __pos)); 201 basic_string(const _Self& __s, size_type __pos, size_type __n [all...] |
_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...] |
_vector.c | 81 void vector<_Tp, _Alloc>::_M_insert_overflow_aux(pointer __pos, const _Tp& __x, const __false_type& /*DO NOT USE!!*/, 91 __new_finish = _STLP_PRIV __uninitialized_move(this->_M_start, __pos, __new_start, _TrivialUCopy(), _Movable()); 99 __new_finish = _STLP_PRIV __uninitialized_move(__pos, this->_M_finish, __new_finish, _TrivialUCopy(), _Movable()); // copy remainder 108 void vector<_Tp, _Alloc>::_M_insert_overflow(pointer __pos, const _Tp& __x, const __true_type& /*_TrivialCopy*/, 112 pointer __new_finish = __STATIC_CAST(pointer, _STLP_PRIV __copy_trivial(this->_M_start, __pos, __new_start)); 116 __new_finish = __STATIC_CAST(pointer, _STLP_PRIV __copy_trivial(__pos, this->_M_finish, __new_finish)); // copy remainder 122 void vector<_Tp, _Alloc>::_M_fill_insert_aux(iterator __pos, size_type __n, 126 _M_fill_insert_aux(__pos, __n, __x_copy, __true_type()); 131 for (; __src >= __pos; --__dst, --__src) { 135 _STLP_PRIV __uninitialized_fill_n(__pos, __n, __x) [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/ |
_string.h | 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, 186 basic_string(const _Self& __s, size_type __pos) 188 if (__pos > __s.size()) 191 _M_range_initialize(__s._M_Start() + __pos, __s._M_Finish()); 193 basic_string(const _Self& __s, size_type __pos, size_type __n) 195 if (__pos > __s.size()) 198 _M_range_initialize(__s._M_Start() + __pos, 199 __s._M_Start() + __pos + (min) (__n, __s.size() - __pos)); 201 basic_string(const _Self& __s, size_type __pos, size_type __n [all...] |
_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...] |
/external/stlport/stlport/stl/debug/ |
_string.h | 101 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, 103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a), 280 _Self& append(const _Self& __s, size_type __pos, size_type __n) { 282 _M_non_dbg_impl.append(__s._M_non_dbg_impl, __pos, __n); 330 _Self& assign(const _Self& __s, size_type __pos, size_type __n) { 331 if (__pos < __s.size()) { 334 _M_non_dbg_impl.assign(__s._M_non_dbg_impl, __pos, __n); 389 _Self& insert(size_type __pos, const _Self& __s) { 391 _M_non_dbg_impl.insert(__pos, __s._M_non_dbg_impl); 396 _Self& insert(size_type __pos, const _Self& __s [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
_string.h | 101 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, 103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a), 280 _Self& append(const _Self& __s, size_type __pos, size_type __n) { 282 _M_non_dbg_impl.append(__s._M_non_dbg_impl, __pos, __n); 330 _Self& assign(const _Self& __s, size_type __pos, size_type __n) { 331 if (__pos < __s.size()) { 334 _M_non_dbg_impl.assign(__s._M_non_dbg_impl, __pos, __n); 389 _Self& insert(size_type __pos, const _Self& __s) { 391 _M_non_dbg_impl.insert(__pos, __s._M_non_dbg_impl); 396 _Self& insert(size_type __pos, const _Self& __s [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/debug/ |
_string.h | 101 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, 103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a), 280 _Self& append(const _Self& __s, size_type __pos, size_type __n) { 282 _M_non_dbg_impl.append(__s._M_non_dbg_impl, __pos, __n); 330 _Self& assign(const _Self& __s, size_type __pos, size_type __n) { 331 if (__pos < __s.size()) { 334 _M_non_dbg_impl.assign(__s._M_non_dbg_impl, __pos, __n); 389 _Self& insert(size_type __pos, const _Self& __s) { 391 _M_non_dbg_impl.insert(__pos, __s._M_non_dbg_impl); 396 _Self& insert(size_type __pos, const _Self& __s [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/debug/ |
_string.h | 101 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, 103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a), 280 _Self& append(const _Self& __s, size_type __pos, size_type __n) { 282 _M_non_dbg_impl.append(__s._M_non_dbg_impl, __pos, __n); 330 _Self& assign(const _Self& __s, size_type __pos, size_type __n) { 331 if (__pos < __s.size()) { 334 _M_non_dbg_impl.assign(__s._M_non_dbg_impl, __pos, __n); 389 _Self& insert(size_type __pos, const _Self& __s) { 391 _M_non_dbg_impl.insert(__pos, __s._M_non_dbg_impl); 396 _Self& insert(size_type __pos, const _Self& __s [all...] |
/external/stlport/stlport/stl/pointers/ |
_slist.h | 220 iterator previous(const_iterator __pos) 221 { return iterator(_M_impl.previous(_BaseConstIte(__pos._M_node))._M_node); } 222 const_iterator previous(const_iterator __pos) const 223 { return const_iterator(const_cast<_Node_base*>(_M_impl.previous(_BaseConstIte(__pos._M_node))._M_node)); } 226 iterator insert_after(iterator __pos, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) 228 iterator insert_after(iterator __pos, const value_type& __x) 230 { return iterator(_M_impl.insert_after(_BaseIte(__pos._M_node), 234 iterator insert_after(iterator __pos) 235 { return iterator(_M_impl.insert_after(_BaseIte(__pos._M_node))._M_node);} 238 void insert_after(iterator __pos, size_type __n, const value_type& __x [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_slist.h | 220 iterator previous(const_iterator __pos) 221 { return iterator(_M_impl.previous(_BaseConstIte(__pos._M_node))._M_node); } 222 const_iterator previous(const_iterator __pos) const 223 { return const_iterator(const_cast<_Node_base*>(_M_impl.previous(_BaseConstIte(__pos._M_node))._M_node)); } 226 iterator insert_after(iterator __pos, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) 228 iterator insert_after(iterator __pos, const value_type& __x) 230 { return iterator(_M_impl.insert_after(_BaseIte(__pos._M_node), 234 iterator insert_after(iterator __pos) 235 { return iterator(_M_impl.insert_after(_BaseIte(__pos._M_node))._M_node);} 238 void insert_after(iterator __pos, size_type __n, const value_type& __x [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_slist.h | 220 iterator previous(const_iterator __pos) 221 { return iterator(_M_impl.previous(_BaseConstIte(__pos._M_node))._M_node); } 222 const_iterator previous(const_iterator __pos) const 223 { return const_iterator(const_cast<_Node_base*>(_M_impl.previous(_BaseConstIte(__pos._M_node))._M_node)); } 226 iterator insert_after(iterator __pos, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) 228 iterator insert_after(iterator __pos, const value_type& __x) 230 { return iterator(_M_impl.insert_after(_BaseIte(__pos._M_node), 234 iterator insert_after(iterator __pos) 235 { return iterator(_M_impl.insert_after(_BaseIte(__pos._M_node))._M_node);} 238 void insert_after(iterator __pos, size_type __n, const value_type& __x [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_slist.h | 220 iterator previous(const_iterator __pos) 221 { return iterator(_M_impl.previous(_BaseConstIte(__pos._M_node))._M_node); } 222 const_iterator previous(const_iterator __pos) const 223 { return const_iterator(const_cast<_Node_base*>(_M_impl.previous(_BaseConstIte(__pos._M_node))._M_node)); } 226 iterator insert_after(iterator __pos, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) 228 iterator insert_after(iterator __pos, const value_type& __x) 230 { return iterator(_M_impl.insert_after(_BaseIte(__pos._M_node), 234 iterator insert_after(iterator __pos) 235 { return iterator(_M_impl.insert_after(_BaseIte(__pos._M_node))._M_node);} 238 void insert_after(iterator __pos, size_type __n, const value_type& __x [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/debug/ |
string | 87 basic_string(const basic_string& __str, size_type __pos, 90 : _Base(__str, __pos, __n, __a) 219 operator[](size_type __pos) const 221 _GLIBCXX_DEBUG_VERIFY(__pos <= this->size(), 224 ._M_integer(__pos, "__pos") 226 return _M_base()[__pos]; 230 operator[](size_type __pos) 233 __glibcxx_check_subscript(__pos); 236 _GLIBCXX_DEBUG_VERIFY(__pos <= this->size() [all...] |
bitset | 128 __pos = 0, 131 : _Base(__str, __pos, __n) { } 138 __pos, 142 : _Base(__str, __pos, __n, __zero, __one) { } 169 operator<<=(size_t __pos) 171 _M_base() <<= __pos; 176 operator>>=(size_t __pos) 178 _M_base() >>= __pos; 192 set(size_t __pos, bool __val = true) 194 _Base::set(__pos, __val) [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/debug/ |
string | 87 basic_string(const basic_string& __str, size_type __pos, 90 : _Base(__str, __pos, __n, __a) 219 operator[](size_type __pos) const 221 _GLIBCXX_DEBUG_VERIFY(__pos <= this->size(), 224 ._M_integer(__pos, "__pos") 226 return _M_base()[__pos]; 230 operator[](size_type __pos) 233 __glibcxx_check_subscript(__pos); 236 _GLIBCXX_DEBUG_VERIFY(__pos <= this->size() [all...] |
bitset | 128 __pos = 0, 131 : _Base(__str, __pos, __n) { } 138 __pos, 142 : _Base(__str, __pos, __n, __zero, __one) { } 169 operator<<=(size_t __pos) 171 _M_base() <<= __pos; 176 operator>>=(size_t __pos) 178 _M_base() >>= __pos; 192 set(size_t __pos, bool __val = true) 194 _Base::set(__pos, __val) [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/debug/ |
string | 87 basic_string(const basic_string& __str, size_type __pos, 90 : _Base(__str, __pos, __n, __a) 219 operator[](size_type __pos) const 221 _GLIBCXX_DEBUG_VERIFY(__pos <= this->size(), 224 ._M_integer(__pos, "__pos") 226 return _M_base()[__pos]; 230 operator[](size_type __pos) 233 __glibcxx_check_subscript(__pos); 236 _GLIBCXX_DEBUG_VERIFY(__pos <= this->size() [all...] |
/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...] |
_vector.c | 81 void vector<_Tp, _Alloc>::_M_insert_overflow_aux(pointer __pos, const _Tp& __x, const __false_type& /*DO NOT USE!!*/, 91 __new_finish = _STLP_PRIV __uninitialized_move(this->_M_start, __pos, __new_start, _TrivialUCopy(), _Movable()); 99 __new_finish = _STLP_PRIV __uninitialized_move(__pos, this->_M_finish, __new_finish, _TrivialUCopy(), _Movable()); // copy remainder 108 void vector<_Tp, _Alloc>::_M_insert_overflow(pointer __pos, const _Tp& __x, const __true_type& /*_TrivialCopy*/, 112 pointer __new_finish = __STATIC_CAST(pointer, _STLP_PRIV __copy_trivial(this->_M_start, __pos, __new_start)); 116 __new_finish = __STATIC_CAST(pointer, _STLP_PRIV __copy_trivial(__pos, this->_M_finish, __new_finish)); // copy remainder 122 void vector<_Tp, _Alloc>::_M_fill_insert_aux(iterator __pos, size_type __n, 126 _M_fill_insert_aux(__pos, __n, __x_copy, __true_type()); 131 for (; __src >= __pos; --__dst, --__src) { 135 _STLP_PRIV __uninitialized_fill_n(__pos, __n, __x) [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...] |
_vector.c | 81 void vector<_Tp, _Alloc>::_M_insert_overflow_aux(pointer __pos, const _Tp& __x, const __false_type& /*DO NOT USE!!*/, 91 __new_finish = _STLP_PRIV __uninitialized_move(this->_M_start, __pos, __new_start, _TrivialUCopy(), _Movable()); 99 __new_finish = _STLP_PRIV __uninitialized_move(__pos, this->_M_finish, __new_finish, _TrivialUCopy(), _Movable()); // copy remainder 108 void vector<_Tp, _Alloc>::_M_insert_overflow(pointer __pos, const _Tp& __x, const __true_type& /*_TrivialCopy*/, 112 pointer __new_finish = __STATIC_CAST(pointer, _STLP_PRIV __copy_trivial(this->_M_start, __pos, __new_start)); 116 __new_finish = __STATIC_CAST(pointer, _STLP_PRIV __copy_trivial(__pos, this->_M_finish, __new_finish)); // copy remainder 122 void vector<_Tp, _Alloc>::_M_fill_insert_aux(iterator __pos, size_type __n, 126 _M_fill_insert_aux(__pos, __n, __x_copy, __true_type()); 131 for (; __src >= __pos; --__dst, --__src) { 135 _STLP_PRIV __uninitialized_fill_n(__pos, __n, __x) [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
basic_string.tcc | 185 basic_string(const basic_string& __str, size_type __pos, size_type __n) 187 + __str._M_check(__pos, 189 __str._M_data() + __str._M_limit(__pos, __n) 190 + __pos, _Alloc()), _Alloc()) 195 basic_string(const basic_string& __str, size_type __pos, 198 + __str._M_check(__pos, 200 __str._M_data() + __str._M_limit(__pos, __n) 201 + __pos, __a), __a) 269 const size_type __pos = __s - _M_data(); 270 if (__pos >= __n [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
basic_string.tcc | 185 basic_string(const basic_string& __str, size_type __pos, size_type __n) 187 + __str._M_check(__pos, 189 __str._M_data() + __str._M_limit(__pos, __n) 190 + __pos, _Alloc()), _Alloc()) 195 basic_string(const basic_string& __str, size_type __pos, 198 + __str._M_check(__pos, 200 __str._M_data() + __str._M_limit(__pos, __n) 201 + __pos, __a), __a) 269 const size_type __pos = __s - _M_data(); 270 if (__pos >= __n [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
basic_string.tcc | 185 basic_string(const basic_string& __str, size_type __pos, size_type __n) 187 + __str._M_check(__pos, 189 __str._M_data() + __str._M_limit(__pos, __n) 190 + __pos, _Alloc()), _Alloc()) 195 basic_string(const basic_string& __str, size_type __pos, 198 + __str._M_check(__pos, 200 __str._M_data() + __str._M_limit(__pos, __n) 201 + __pos, __a), __a) 269 const size_type __pos = __s - _M_data(); 270 if (__pos >= __n [all...] |