/prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_deque.h | 352 void resize(size_type __new_size, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) 354 void resize(size_type __new_size, const value_type& __x) 356 { _M_impl.resize(__new_size, cast_traits::to_storage_type_cref(__x)); } 359 void resize(size_type __new_size) { _M_impl.resize(__new_size); }
|
_list.h | 243 void resize(size_type __new_size, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) 245 void resize(size_type __new_size) { _M_impl.resize(__new_size); } 246 void resize(size_type __new_size, const value_type& __x) 248 {_M_impl.resize(__new_size, cast_traits::to_storage_type_cref(__x));}
|
/prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_deque.h | 352 void resize(size_type __new_size, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) 354 void resize(size_type __new_size, const value_type& __x) 356 { _M_impl.resize(__new_size, cast_traits::to_storage_type_cref(__x)); } 359 void resize(size_type __new_size) { _M_impl.resize(__new_size); }
|
_list.h | 243 void resize(size_type __new_size, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) 245 void resize(size_type __new_size) { _M_impl.resize(__new_size); } 246 void resize(size_type __new_size, const value_type& __x) 248 {_M_impl.resize(__new_size, cast_traits::to_storage_type_cref(__x));}
|
/prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/debug/ |
_list.h | 289 void resize(size_type __new_size, const _Tp& __x = _Tp()) { 291 void resize(size_type __new_size, const _Tp& __x) { 295 for ( ; __i != _M_non_dbg_impl.end() && __len < __new_size; ++__i, ++__len); 297 if (__len == __new_size) 300 _M_non_dbg_impl.insert(_M_non_dbg_impl.end(), __new_size - __len, __x); 304 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
|
_slist.h | 382 void resize(size_type __new_size, const value_type& __x = _Tp()) { 384 void resize(size_type __new_size, const value_type& __x) { 386 _M_non_dbg_impl.resize(__new_size, __x); 390 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
|
/prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/debug/ |
_list.h | 289 void resize(size_type __new_size, const _Tp& __x = _Tp()) { 291 void resize(size_type __new_size, const _Tp& __x) { 295 for ( ; __i != _M_non_dbg_impl.end() && __len < __new_size; ++__i, ++__len); 297 if (__len == __new_size) 300 _M_non_dbg_impl.insert(_M_non_dbg_impl.end(), __new_size - __len, __x); 304 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
|
_slist.h | 382 void resize(size_type __new_size, const value_type& __x = _Tp()) { 384 void resize(size_type __new_size, const value_type& __x) { 386 _M_non_dbg_impl.resize(__new_size, __x); 390 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
|
/prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/debug/ |
_list.h | 289 void resize(size_type __new_size, const _Tp& __x = _Tp()) { 291 void resize(size_type __new_size, const _Tp& __x) { 295 for ( ; __i != _M_non_dbg_impl.end() && __len < __new_size; ++__i, ++__len); 297 if (__len == __new_size) 300 _M_non_dbg_impl.insert(_M_non_dbg_impl.end(), __new_size - __len, __x); 304 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/ |
stl_vector.h | 656 * @param __new_size Number of elements the %vector should contain. 664 resize(size_type __new_size) 666 if (__new_size > size()) 667 _M_default_append(__new_size - size()); 668 else if (__new_size < size()) 669 _M_erase_at_end(this->_M_impl._M_start + __new_size); 674 * @param __new_size Number of elements the %vector should contain. 684 resize(size_type __new_size, const value_type& __x) 686 if (__new_size > size()) 687 insert(end(), __new_size - size(), __x) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/ |
stl_vector.h | 656 * @param __new_size Number of elements the %vector should contain. 664 resize(size_type __new_size) 666 if (__new_size > size()) 667 _M_default_append(__new_size - size()); 668 else if (__new_size < size()) 669 _M_erase_at_end(this->_M_impl._M_start + __new_size); 674 * @param __new_size Number of elements the %vector should contain. 684 resize(size_type __new_size, const value_type& __x) 686 if (__new_size > size()) 687 insert(end(), __new_size - size(), __x) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
stl_vector.h | 656 * @param __new_size Number of elements the %vector should contain. 664 resize(size_type __new_size) 666 if (__new_size > size()) 667 _M_default_append(__new_size - size()); 668 else if (__new_size < size()) 669 _M_erase_at_end(this->_M_impl._M_start + __new_size); 674 * @param __new_size Number of elements the %vector should contain. 684 resize(size_type __new_size, const value_type& __x) 686 if (__new_size > size()) 687 insert(end(), __new_size - size(), __x) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/profile/ |
unordered_map | 250 size_type __new_size = _Base::bucket_count(); 251 if (__old_size != __new_size) 252 __profcxx_hashtable_resize(this, __old_size, __new_size); 467 size_type __new_size = _Base::bucket_count(); 468 if (__old_size != __new_size) 469 __profcxx_hashtable_resize(this, __old_size, __new_size);
|
vector | 474 size_type __new_size) 476 if (__old_size < __new_size) { 477 __profcxx_vector_resize(this, this->size(), __new_size); 478 __profcxx_vector_resize2(this, this->size(), __new_size);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/ |
unordered_map | 250 size_type __new_size = _Base::bucket_count(); 251 if (__old_size != __new_size) 252 __profcxx_hashtable_resize(this, __old_size, __new_size); 467 size_type __new_size = _Base::bucket_count(); 468 if (__old_size != __new_size) 469 __profcxx_hashtable_resize(this, __old_size, __new_size);
|
vector | 474 size_type __new_size) 476 if (__old_size < __new_size) { 477 __profcxx_vector_resize(this, this->size(), __new_size); 478 __profcxx_vector_resize2(this, this->size(), __new_size);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/ |
unordered_map | 250 size_type __new_size = _Base::bucket_count(); 251 if (__old_size != __new_size) 252 __profcxx_hashtable_resize(this, __old_size, __new_size); 467 size_type __new_size = _Base::bucket_count(); 468 if (__old_size != __new_size) 469 __profcxx_hashtable_resize(this, __old_size, __new_size);
|
vector | 474 size_type __new_size) 476 if (__old_size < __new_size) { 477 __profcxx_vector_resize(this, this->size(), __new_size); 478 __profcxx_vector_resize2(this, this->size(), __new_size);
|
/prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/ |
unordered_map | 266 size_type __new_size = _Base::bucket_count(); 267 if (__old_size != __new_size) 268 __profcxx_hashtable_resize(this, __old_size, __new_size); 499 size_type __new_size = _Base::bucket_count(); 500 if (__old_size != __new_size) 501 __profcxx_hashtable_resize(this, __old_size, __new_size);
|
unordered_set | 240 size_type __new_size = _Base::bucket_count(); 241 if (__old_size != __new_size) 242 __profcxx_hashtable_resize(this, __old_size, __new_size); 463 size_type __new_size = _Base::bucket_count(); 464 if (__old_size != __new_size) 465 __profcxx_hashtable_resize(this, __old_size, __new_size);
|
/prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/ |
unordered_map | 266 size_type __new_size = _Base::bucket_count(); 267 if (__old_size != __new_size) 268 __profcxx_hashtable_resize(this, __old_size, __new_size); 499 size_type __new_size = _Base::bucket_count(); 500 if (__old_size != __new_size) 501 __profcxx_hashtable_resize(this, __old_size, __new_size);
|
unordered_set | 240 size_type __new_size = _Base::bucket_count(); 241 if (__old_size != __new_size) 242 __profcxx_hashtable_resize(this, __old_size, __new_size); 463 size_type __new_size = _Base::bucket_count(); 464 if (__old_size != __new_size) 465 __profcxx_hashtable_resize(this, __old_size, __new_size);
|
/prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/ |
unordered_map | 266 size_type __new_size = _Base::bucket_count(); 267 if (__old_size != __new_size) 268 __profcxx_hashtable_resize(this, __old_size, __new_size); 499 size_type __new_size = _Base::bucket_count(); 500 if (__old_size != __new_size) 501 __profcxx_hashtable_resize(this, __old_size, __new_size);
|
unordered_set | 240 size_type __new_size = _Base::bucket_count(); 241 if (__old_size != __new_size) 242 __profcxx_hashtable_resize(this, __old_size, __new_size); 463 size_type __new_size = _Base::bucket_count(); 464 if (__old_size != __new_size) 465 __profcxx_hashtable_resize(this, __old_size, __new_size);
|
/prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_slist.h | 353 void resize(size_type __new_size, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) 355 void resize(size_type __new_size, const value_type& __x) 357 { _M_impl.resize(__new_size, cast_traits::to_storage_type_cref(__x));} 360 void resize(size_type __new_size) { _M_impl.resize(__new_size); }
|