HomeSort by relevance Sort by last modified time
    Searched full:__new_size (Results 51 - 75 of 299) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/r11/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); }
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/debug/
_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/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); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_deque.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_deque.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_deque.h     [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_deque.h     [all...]
stl_vector.h 739 * @param __new_size Number of elements the %vector should contain.
747 resize(size_type __new_size)
749 if (__new_size > size())
750 _M_default_append(__new_size - size());
751 else if (__new_size < size())
752 _M_erase_at_end(this->_M_impl._M_start + __new_size);
757 * @param __new_size Number of elements the %vector should contain.
767 resize(size_type __new_size, const value_type& __x)
769 if (__new_size > size())
770 insert(end(), __new_size - size(), __x)
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_deque.h     [all...]
stl_vector.h 739 * @param __new_size Number of elements the %vector should contain.
747 resize(size_type __new_size)
749 if (__new_size > size())
750 _M_default_append(__new_size - size());
751 else if (__new_size < size())
752 _M_erase_at_end(this->_M_impl._M_start + __new_size);
757 * @param __new_size Number of elements the %vector should contain.
767 resize(size_type __new_size, const value_type& __x)
769 if (__new_size > size())
770 insert(end(), __new_size - size(), __x)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_deque.h     [all...]
stl_vector.h 739 * @param __new_size Number of elements the %vector should contain.
747 resize(size_type __new_size)
749 if (__new_size > size())
750 _M_default_append(__new_size - size());
751 else if (__new_size < size())
752 _M_erase_at_end(this->_M_impl._M_start + __new_size);
757 * @param __new_size Number of elements the %vector should contain.
767 resize(size_type __new_size, const value_type& __x)
769 if (__new_size > size())
770 insert(end(), __new_size - size(), __x)
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_vector.h 636 void resize(size_type __new_size, const _Tp& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)) {
638 void resize(size_type __new_size, const _Tp& __x) {
640 if (__new_size < size())
641 erase(begin() + __new_size, end());
643 insert(end(), __new_size - size(), __x);
647 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
_deque.h 811 void resize(size_type __new_size,
814 void resize(size_type __new_size, const value_type& __x) {
817 if (__new_size < __len)
818 erase(this->_M_start + __new_size, this->_M_finish);
820 insert(this->_M_finish, __new_size - __len, __x);
824 void resize(size_type __new_size)
825 { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_vector.h 636 void resize(size_type __new_size, const _Tp& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)) {
638 void resize(size_type __new_size, const _Tp& __x) {
640 if (__new_size < size())
641 erase(begin() + __new_size, end());
643 insert(end(), __new_size - size(), __x);
647 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_vector.h 636 void resize(size_type __new_size, const _Tp& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)) {
638 void resize(size_type __new_size, const _Tp& __x) {
640 if (__new_size < size())
641 erase(begin() + __new_size, end());
643 insert(end(), __new_size - size(), __x);
647 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); }
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/
vector 518 size_type __new_size)
520 if (__old_size < __new_size) {
521 __profcxx_vector_resize(this, this->size(), __new_size);
522 __profcxx_vector_resize2(this, this->size(), __new_size);
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/
vector 518 size_type __new_size)
520 if (__old_size < __new_size) {
521 __profcxx_vector_resize(this, this->size(), __new_size);
522 __profcxx_vector_resize2(this, this->size(), __new_size);
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/
vector 518 size_type __new_size)
520 if (__old_size < __new_size) {
521 __profcxx_vector_resize(this, this->size(), __new_size);
522 __profcxx_vector_resize2(this, this->size(), __new_size);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.tcc 103 const size_type __new_size = __old_size + __n2 - __n1;
105 if (__new_size <= this->capacity() && !this->_M_is_shared())
119 this->_M_set_length(__new_size);
133 const size_type __new_size = __old_size + __len2 - __len1;
135 if (__new_size <= this->capacity() && !this->_M_is_shared())
173 this->_M_set_length(__new_size);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.tcc 103 const size_type __new_size = __old_size + __n2 - __n1;
105 if (__new_size <= this->capacity() && !this->_M_is_shared())
119 this->_M_set_length(__new_size);
133 const size_type __new_size = __old_size + __len2 - __len1;
135 if (__new_size <= this->capacity() && !this->_M_is_shared())
173 this->_M_set_length(__new_size);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
vstring.tcc 103 const size_type __new_size = __old_size + __n2 - __n1;
105 if (__new_size <= this->capacity() && !this->_M_is_shared())
119 this->_M_set_length(__new_size);
133 const size_type __new_size = __old_size + __len2 - __len1;
135 if (__new_size <= this->capacity() && !this->_M_is_shared())
173 this->_M_set_length(__new_size);
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
vstring.tcc 104 const size_type __new_size = __old_size + __n2 - __n1;
106 if (__new_size <= this->capacity() && !this->_M_is_shared())
120 this->_M_set_length(__new_size);
134 const size_type __new_size = __old_size + __len2 - __len1;
136 if (__new_size <= this->capacity() && !this->_M_is_shared())
174 this->_M_set_length(__new_size);
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
vstring.tcc 104 const size_type __new_size = __old_size + __n2 - __n1;
106 if (__new_size <= this->capacity() && !this->_M_is_shared())
120 this->_M_set_length(__new_size);
134 const size_type __new_size = __old_size + __len2 - __len1;
136 if (__new_size <= this->capacity() && !this->_M_is_shared())
174 this->_M_set_length(__new_size);
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
vstring.tcc 104 const size_type __new_size = __old_size + __n2 - __n1;
106 if (__new_size <= this->capacity() && !this->_M_is_shared())
120 this->_M_set_length(__new_size);
134 const size_type __new_size = __old_size + __len2 - __len1;
136 if (__new_size <= this->capacity() && !this->_M_is_shared())
174 this->_M_set_length(__new_size);

Completed in 513 milliseconds

1 23 4 5 6 7 8 91011>>