/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/ |
_deque.c | 82 for (_Tp** __n = __nstart; __n < __nfinish; ++__n) 83 _M_map_size.deallocate(*__n, this->buffer_size()); 123 size_type __n, const value_type& __x) { 128 iterator __new_start = _M_reserve_elements_at_front(__n); 136 iterator __new_finish = _M_reserve_elements_at_back(__n); 144 _M_fill_insert_aux(__pos, __n, __x, _Movable()); 155 size_type __n = __last - __first; local 157 iterator __new_start = _M_reserve_elements_at_front(__n); 183 size_type __n = __last - __first; local 262 difference_type __n = __last - __first; local 326 difference_type __n = __last - __first; local [all...] |
_string.h | 169 basic_string(_Reserve_t, size_t __n, 172 basic_string(_Reserve_t, size_t __n) 173 : _STLP_PRIV _String_base<_CharT,_Alloc>(allocator_type(), __n + 1) 175 basic_string(_Reserve_t, size_t __n, const allocator_type& __a) 177 : _STLP_PRIV _String_base<_CharT,_Alloc>(__a, __n + 1) 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, 193 basic_string(const _Self& __s, size_type __pos, size_type __n) 199 __s._M_Start() + __pos + (min) (__n, __s.size() - __pos)); 201 basic_string(const _Self& __s, size_type __pos, size_type __n, 209 __s._M_Start() + __pos + (min) (__n, __s.size() - __pos)) 323 difference_type __n = _STLP_STD::distance(__f, __l); local 378 ptrdiff_t __n = __l - __f; local 471 size_type __n = __STATIC_CAST(size_type, _STLP_STD::distance(__first, __last)); local 634 _M_insert(begin() + __pos, __s, __s + __n, _M_inside(__s)); local 714 size_type __n = _STLP_STD::distance(__first, __last); local [all...] |
_iostream_string.h | 63 _CharT* allocate(size_type __n, const void* __ptr = 0) { 64 if (__n > _BUF_SIZE) { 65 return _Base::allocate(__n, __ptr); 69 void deallocate(pointer __p, size_type __n) { 70 if (__p != _M_static_buf) _Base::deallocate(__p, __n);
|
_hash_set.h | 85 explicit hash_set(size_type __n) 86 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {} 87 hash_set(size_type __n, const hasher& __hf) 88 : _M_ht(__n, __hf, key_equal(), allocator_type()) {} 90 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql, 93 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql) 94 : _M_ht(__n, __hf, __eql, allocator_type()) {} 95 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql, 98 : _M_ht(__n, __hf, __eql, __a) {} 111 hash_set(_InputIterator __f, _InputIterator __l, size_type __n) [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/ |
pod_char_traits.h | 109 compare(const char_type* __s1, const char_type* __s2, size_t __n) 111 for (size_t __i = 0; __i < __n; ++__i) 127 find(const char_type* __s, size_t __n, const char_type& __a) 129 for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p) 136 move(char_type* __s1, const char_type* __s2, size_t __n) 139 (__builtin_memmove(__s1, __s2, __n * sizeof(char_type))); 143 copy(char_type* __s1, const char_type* __s2, size_t __n) 145 std::copy(__s2, __s2 + __n, __s1); 150 assign(char_type* __s, size_t __n, char_type __a) 152 std::fill_n(__s, __n, __a) [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/ |
pod_char_traits.h | 109 compare(const char_type* __s1, const char_type* __s2, size_t __n) 111 for (size_t __i = 0; __i < __n; ++__i) 127 find(const char_type* __s, size_t __n, const char_type& __a) 129 for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p) 136 move(char_type* __s1, const char_type* __s2, size_t __n) 139 (__builtin_memmove(__s1, __s2, __n * sizeof(char_type))); 143 copy(char_type* __s1, const char_type* __s2, size_t __n) 145 std::copy(__s2, __s2 + __n, __s1); 150 assign(char_type* __s, size_t __n, char_type __a) 152 std::fill_n(__s, __n, __a) [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/ |
pod_char_traits.h | 109 compare(const char_type* __s1, const char_type* __s2, size_t __n) 111 for (size_t __i = 0; __i < __n; ++__i) 127 find(const char_type* __s, size_t __n, const char_type& __a) 129 for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p) 136 move(char_type* __s1, const char_type* __s2, size_t __n) 139 (__builtin_memmove(__s1, __s2, __n * sizeof(char_type))); 143 copy(char_type* __s1, const char_type* __s2, size_t __n) 145 std::copy(__s2, __s2 + __n, __s1); 150 assign(char_type* __s, size_t __n, char_type __a) 152 std::fill_n(__s, __n, __a) [all...] |
/external/stlport/stlport/stl/ |
_string.h | 169 basic_string(_Reserve_t, size_t __n, 172 basic_string(_Reserve_t, size_t __n) 173 : _STLP_PRIV _String_base<_CharT,_Alloc>(allocator_type(), __n + 1) 175 basic_string(_Reserve_t, size_t __n, const allocator_type& __a) 177 : _STLP_PRIV _String_base<_CharT,_Alloc>(__a, __n + 1) 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, 193 basic_string(const _Self& __s, size_type __pos, size_type __n) 199 __s._M_Start() + __pos + (min) (__n, __s.size() - __pos)); 201 basic_string(const _Self& __s, size_type __pos, size_type __n, 209 __s._M_Start() + __pos + (min) (__n, __s.size() - __pos)) 323 difference_type __n = _STLP_STD::distance(__f, __l); local 378 ptrdiff_t __n = __l - __f; local 471 size_type __n = __STATIC_CAST(size_type, _STLP_STD::distance(__first, __last)); local 634 _M_insert(begin() + __pos, __s, __s + __n, _M_inside(__s)); local 714 size_type __n = _STLP_STD::distance(__first, __last); local [all...] |
_iostream_string.h | 63 _CharT* allocate(size_type __n, const void* __ptr = 0) { 64 if (__n > _BUF_SIZE) { 65 return _Base::allocate(__n, __ptr); 69 void deallocate(pointer __p, size_type __n) { 70 if (__p != _M_static_buf) _Base::deallocate(__p, __n);
|
_hash_set.h | 85 explicit hash_set(size_type __n) 86 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {} 87 hash_set(size_type __n, const hasher& __hf) 88 : _M_ht(__n, __hf, key_equal(), allocator_type()) {} 90 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql, 93 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql) 94 : _M_ht(__n, __hf, __eql, allocator_type()) {} 95 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql, 98 : _M_ht(__n, __hf, __eql, __a) {} 111 hash_set(_InputIterator __f, _InputIterator __l, size_type __n) [all...] |
_unordered_map.h | 83 explicit unordered_map(size_type __n = 0, const hasher& __hf = hasher(), 86 : _M_ht(__n, __hf, __eql, __a) {} 96 size_type __n = 0, const hasher& __hf = hasher(), 99 : _M_ht(__n, __hf, __eql, __a) 103 size_type __n = 0, const hasher& __hf = hasher(), 106 : _M_ht(__n, __hf, __eql, __a) 110 size_type __n = 0, const hasher& __hf = hasher(), 113 : _M_ht(__n, __hf, __eql, __a) 177 size_type bucket_size(size_type __n) const { return _M_ht.elems_in_bucket(__n); } [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_string.h | 169 basic_string(_Reserve_t, size_t __n, 172 basic_string(_Reserve_t, size_t __n) 173 : _STLP_PRIV _String_base<_CharT,_Alloc>(allocator_type(), __n + 1) 175 basic_string(_Reserve_t, size_t __n, const allocator_type& __a) 177 : _STLP_PRIV _String_base<_CharT,_Alloc>(__a, __n + 1) 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, 193 basic_string(const _Self& __s, size_type __pos, size_type __n) 199 __s._M_Start() + __pos + (min) (__n, __s.size() - __pos)); 201 basic_string(const _Self& __s, size_type __pos, size_type __n, 209 __s._M_Start() + __pos + (min) (__n, __s.size() - __pos)) 323 difference_type __n = _STLP_STD::distance(__f, __l); local 378 ptrdiff_t __n = __l - __f; local 471 size_type __n = __STATIC_CAST(size_type, _STLP_STD::distance(__first, __last)); local 634 _M_insert(begin() + __pos, __s, __s + __n, _M_inside(__s)); local 714 size_type __n = _STLP_STD::distance(__first, __last); local [all...] |
_iostream_string.h | 63 _CharT* allocate(size_type __n, const void* __ptr = 0) { 64 if (__n > _BUF_SIZE) { 65 return _Base::allocate(__n, __ptr); 69 void deallocate(pointer __p, size_type __n) { 70 if (__p != _M_static_buf) _Base::deallocate(__p, __n);
|
_hash_set.h | 85 explicit hash_set(size_type __n) 86 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {} 87 hash_set(size_type __n, const hasher& __hf) 88 : _M_ht(__n, __hf, key_equal(), allocator_type()) {} 90 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql, 93 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql) 94 : _M_ht(__n, __hf, __eql, allocator_type()) {} 95 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql, 98 : _M_ht(__n, __hf, __eql, __a) {} 111 hash_set(_InputIterator __f, _InputIterator __l, size_type __n) [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/ |
_string.h | 169 basic_string(_Reserve_t, size_t __n, 172 basic_string(_Reserve_t, size_t __n) 173 : _STLP_PRIV _String_base<_CharT,_Alloc>(allocator_type(), __n + 1) 175 basic_string(_Reserve_t, size_t __n, const allocator_type& __a) 177 : _STLP_PRIV _String_base<_CharT,_Alloc>(__a, __n + 1) 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, 193 basic_string(const _Self& __s, size_type __pos, size_type __n) 199 __s._M_Start() + __pos + (min) (__n, __s.size() - __pos)); 201 basic_string(const _Self& __s, size_type __pos, size_type __n, 209 __s._M_Start() + __pos + (min) (__n, __s.size() - __pos)) 323 difference_type __n = _STLP_STD::distance(__f, __l); local 378 ptrdiff_t __n = __l - __f; local 471 size_type __n = __STATIC_CAST(size_type, _STLP_STD::distance(__first, __last)); local 634 _M_insert(begin() + __pos, __s, __s + __n, _M_inside(__s)); local 714 size_type __n = _STLP_STD::distance(__first, __last); local [all...] |
_iostream_string.h | 63 _CharT* allocate(size_type __n, const void* __ptr = 0) { 64 if (__n > _BUF_SIZE) { 65 return _Base::allocate(__n, __ptr); 69 void deallocate(pointer __p, size_type __n) { 70 if (__p != _M_static_buf) _Base::deallocate(__p, __n);
|
_hash_set.h | 85 explicit hash_set(size_type __n) 86 : _M_ht(__n, hasher(), key_equal(), allocator_type()) {} 87 hash_set(size_type __n, const hasher& __hf) 88 : _M_ht(__n, __hf, key_equal(), allocator_type()) {} 90 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql, 93 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql) 94 : _M_ht(__n, __hf, __eql, allocator_type()) {} 95 hash_set(size_type __n, const hasher& __hf, const key_equal& __eql, 98 : _M_ht(__n, __hf, __eql, __a) {} 111 hash_set(_InputIterator __f, _InputIterator __l, size_type __n) [all...] |
/external/stlport/stlport/stl/pointers/ |
_vector.h | 95 reference operator[](size_type __n) { return cast_traits::to_value_type_ref(_M_impl[__n]); } 96 const_reference operator[](size_type __n) const { return cast_traits::to_value_type_cref(_M_impl[__n]); } 103 reference at(size_type __n) { return cast_traits::to_value_type_ref(_M_impl.at(__n)); } 104 const_reference at(size_type __n) const { return cast_traits::to_value_type_cref(_M_impl.at(__n)); } 110 explicit vector(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type), 112 vector(size_type __n, const value_type& __val 206 _M_impl.insert(cast_traits::to_storage_type_ptr(__pos), __n, cast_traits::to_storage_type_cref(__x)); local [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_vector.h | 95 reference operator[](size_type __n) { return cast_traits::to_value_type_ref(_M_impl[__n]); } 96 const_reference operator[](size_type __n) const { return cast_traits::to_value_type_cref(_M_impl[__n]); } 103 reference at(size_type __n) { return cast_traits::to_value_type_ref(_M_impl.at(__n)); } 104 const_reference at(size_type __n) const { return cast_traits::to_value_type_cref(_M_impl.at(__n)); } 110 explicit vector(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type), 112 vector(size_type __n, const value_type& __val 206 _M_impl.insert(cast_traits::to_storage_type_ptr(__pos), __n, cast_traits::to_storage_type_cref(__x)); local [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_vector.h | 95 reference operator[](size_type __n) { return cast_traits::to_value_type_ref(_M_impl[__n]); } 96 const_reference operator[](size_type __n) const { return cast_traits::to_value_type_cref(_M_impl[__n]); } 103 reference at(size_type __n) { return cast_traits::to_value_type_ref(_M_impl.at(__n)); } 104 const_reference at(size_type __n) const { return cast_traits::to_value_type_cref(_M_impl.at(__n)); } 110 explicit vector(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type), 112 vector(size_type __n, const value_type& __val 206 _M_impl.insert(cast_traits::to_storage_type_ptr(__pos), __n, cast_traits::to_storage_type_cref(__x)); local [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_vector.h | 95 reference operator[](size_type __n) { return cast_traits::to_value_type_ref(_M_impl[__n]); } 96 const_reference operator[](size_type __n) const { return cast_traits::to_value_type_cref(_M_impl[__n]); } 103 reference at(size_type __n) { return cast_traits::to_value_type_ref(_M_impl.at(__n)); } 104 const_reference at(size_type __n) const { return cast_traits::to_value_type_cref(_M_impl.at(__n)); } 110 explicit vector(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type), 112 vector(size_type __n, const value_type& __val 206 _M_impl.insert(cast_traits::to_storage_type_ptr(__pos), __n, cast_traits::to_storage_type_cref(__x)); local [all...] |
/external/stlport/stlport/stl/debug/ |
_iterator.h | 57 void _Advance(_Iterator& __it, ptrdiff_t __n, const random_access_iterator_tag &) 58 { __it += __n; } 97 bool _Incrementable(const _Iterator& __it, ptrdiff_t __n, const forward_iterator_tag &) 98 { return (__n == 1) && _Dereferenceable(__it); } 101 bool _Incrementable(const _Iterator& __it, ptrdiff_t __n, const bidirectional_iterator_tag &) { 104 return (__c != 0) && ((__n == 1 && __it._M_iterator != __c->end() ) || 105 (__n == -1 && __it._M_iterator != __c->begin())); 109 bool _Incrementable(const _Iterator& __it, ptrdiff_t __n, const random_access_iterator_tag &) { 113 ptrdiff_t __new_pos = (__it._M_iterator - __c->begin()) + __n; 150 void __advance(ptrdiff_t __n); [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
_iterator.h | 57 void _Advance(_Iterator& __it, ptrdiff_t __n, const random_access_iterator_tag &) 58 { __it += __n; } 97 bool _Incrementable(const _Iterator& __it, ptrdiff_t __n, const forward_iterator_tag &) 98 { return (__n == 1) && _Dereferenceable(__it); } 101 bool _Incrementable(const _Iterator& __it, ptrdiff_t __n, const bidirectional_iterator_tag &) { 104 return (__c != 0) && ((__n == 1 && __it._M_iterator != __c->end() ) || 105 (__n == -1 && __it._M_iterator != __c->begin())); 109 bool _Incrementable(const _Iterator& __it, ptrdiff_t __n, const random_access_iterator_tag &) { 113 ptrdiff_t __new_pos = (__it._M_iterator - __c->begin()) + __n; 150 void __advance(ptrdiff_t __n); [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/debug/ |
_iterator.h | 57 void _Advance(_Iterator& __it, ptrdiff_t __n, const random_access_iterator_tag &) 58 { __it += __n; } 97 bool _Incrementable(const _Iterator& __it, ptrdiff_t __n, const forward_iterator_tag &) 98 { return (__n == 1) && _Dereferenceable(__it); } 101 bool _Incrementable(const _Iterator& __it, ptrdiff_t __n, const bidirectional_iterator_tag &) { 104 return (__c != 0) && ((__n == 1 && __it._M_iterator != __c->end() ) || 105 (__n == -1 && __it._M_iterator != __c->begin())); 109 bool _Incrementable(const _Iterator& __it, ptrdiff_t __n, const random_access_iterator_tag &) { 113 ptrdiff_t __new_pos = (__it._M_iterator - __c->begin()) + __n; 150 void __advance(ptrdiff_t __n); [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/debug/ |
_iterator.h | 57 void _Advance(_Iterator& __it, ptrdiff_t __n, const random_access_iterator_tag &) 58 { __it += __n; } 97 bool _Incrementable(const _Iterator& __it, ptrdiff_t __n, const forward_iterator_tag &) 98 { return (__n == 1) && _Dereferenceable(__it); } 101 bool _Incrementable(const _Iterator& __it, ptrdiff_t __n, const bidirectional_iterator_tag &) { 104 return (__c != 0) && ((__n == 1 && __it._M_iterator != __c->end() ) || 105 (__n == -1 && __it._M_iterator != __c->begin())); 109 bool _Incrementable(const _Iterator& __it, ptrdiff_t __n, const random_access_iterator_tag &) { 113 ptrdiff_t __new_pos = (__it._M_iterator - __c->begin()) + __n; 150 void __advance(ptrdiff_t __n); [all...] |