HomeSort by relevance Sort by last modified time
    Searched defs:resize (Results 201 - 225 of 382) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_vector.h 545 * This function will %resize the %vector to the specified
552 resize(size_type __new_size, value_type __x = value_type()) function in class:vector
    [all...]
  /prebuilts/ndk/6/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)) function in class:deque
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); } function in class:deque
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_vector.h 545 * This function will %resize the %vector to the specified
552 resize(size_type __new_size, value_type __x = value_type()) function in class:vector
    [all...]
  /prebuilts/ndk/7/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)) function in class:deque
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); } function in class:deque
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_vector.h 545 * This function will %resize the %vector to the specified
552 resize(size_type __new_size, value_type __x = value_type()) function in class:vector
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_vector.h 623 * This function will %resize the %vector to the specified
629 resize(size_type __new_size) function in class:vector
642 * This function will %resize the %vector to the specified
649 resize(size_type __new_size, const value_type& __x) function in class:vector
662 * This function will %resize the %vector to the specified
669 resize(size_type __new_size, value_type __x = value_type()) function in class:vector
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_vector.h 638 * This function will %resize the %vector to the specified
644 resize(size_type __new_size) function in class:vector
657 * This function will %resize the %vector to the specified
664 resize(size_type __new_size, const value_type& __x) function in class:vector
677 * This function will %resize the %vector to the specified
684 resize(size_type __new_size, value_type __x = value_type()) function in class:vector
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
vstring.h 444 * This function will %resize the %string to the specified
450 resize(size_type __n, _CharT __c);
456 * This function will resize the %string to the specified
463 resize(size_type __n) function in class:__versa_string
464 { this->resize(__n, _CharT()); }
    [all...]
  /prebuilts/ndk/8/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)) function in class:deque
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); } function in class:deque
  /cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java 240 circle.resize(x, y);
  /external/clang/include/clang/Basic/
OnDiskHashTable.h 152 void resize(size_t newsize) { function in class:clang::OnDiskChainedHashTableGenerator
180 if (4*NumEntries >= 3*NumBuckets) resize(NumBuckets*2);
  /external/icu4c/common/
dictbe.cpp 726 // resize without copy
727 void resize(size_t size) { function in class:AutoBuffer
801 charPositions.resize(normalizedString.length() + 1);
    [all...]
  /external/llvm/include/llvm/ADT/
SmallVector.h 399 void resize(unsigned N) { function in class:llvm::SmallVectorImpl
411 void resize(unsigned N, const T &NV) { function in class:llvm::SmallVectorImpl
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_events.h 237 SDL_ResizeEvent resize; member in union:SDL_Event
  /external/stlport/stlport/stl/
_hashtable.h 263 * - avoid _STLP_DEBUG performance trouble: with a vector of iterator on slist the resize
580 void resize(size_type __num_buckets_hint) function in class:hashtable
_list.h 536 void resize(size_type __new_size, const_reference __x = value_type());
538 void resize(size_type __new_size, const_reference __x);
539 void resize(size_type __new_size) function in class:list
540 { this->resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(value_type)); }
_slist.h 682 void resize(size_type new_size, const value_type& __x = _Tp());
684 void resize(size_type new_size, const value_type& __x);
688 void resize(size_type new_size) { resize(new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } function in class:slist
_string.h 404 void resize(size_type __n, _CharT __c) { function in class:basic_string
411 void resize(size_type __n) { resize(__n, _M_null()); } function in class:basic_string
    [all...]
_vector.h 636 void resize(size_type __new_size, const _Tp& __x = _STLP_DEFAULT_CONSTRUCTED(_Tp)) { function in class:vector
638 void resize(size_type __new_size, const _Tp& __x) {
647 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } function in class:vector
  /external/stlport/test/unit/
string_test.cpp 60 CPPUNIT_TEST(resize);
119 void resize();
610 void StringTest::resize() function in class:StringTest
614 s.resize(0);
620 s.resize(0);
624 s.resize(1);
630 s.resize(10);
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderFrameSet.cpp 181 void RenderFrameSet::GridAxis::resize(int size) function in class:WebCore::RenderFrameSet::GridAxis
183 m_sizes.resize(size);
184 m_deltas.resize(size);
190 m_preventResize.resize(size + 1);
191 m_allowBorder.resize(size + 1);
477 m_rows.resize(rows);
478 m_cols.resize(cols);
618 // has to be resized and itself resize its contents
669 // has to be resized and itself resize its contents
  /external/webkit/Source/WebKit/chromium/tests/
PopupMenuTest.cpp 128 virtual void resize(const WebSize&) { } function in class:__anon17971::TestWebWidget
  /frameworks/rs/
rs_hal.h 149 void (*resize)(const Context *rsc, const Allocation *alloc, const Type *newType, member in struct:android::renderscript::__anon20278::__anon20280
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_hashtable.h 263 * - avoid _STLP_DEBUG performance trouble: with a vector of iterator on slist the resize
580 void resize(size_type __num_buckets_hint) function in class:hashtable
_list.h 536 void resize(size_type __new_size, const_reference __x = value_type());
538 void resize(size_type __new_size, const_reference __x);
539 void resize(size_type __new_size) function in class:list
540 { this->resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(value_type)); }

Completed in 1811 milliseconds

1 2 3 4 5 6 7 891011>>