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

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_valarray.h 363 void resize(size_t __n, value_type __x = value_type()) { function in class:valarray
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/debug/
_hashtable.h 306 void resize(size_type __num_elements_hint) { _M_non_dbg_impl.resize(__num_elements_hint); } function in class:hashtable
_list.h 289 void resize(size_type __new_size, const _Tp& __x = _Tp()) { function in class:list
291 void resize(size_type __new_size, const _Tp& __x) {
304 void resize(size_type __new_size) { resize(__new_size, _STLP_DEFAULT_CONSTRUCTED(_Tp)); } function in class:list
_slist.h 382 void resize(size_type __new_size, const value_type& __x = _Tp()) { function in class:slist
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)); } function in class:slist
_string.h 198 void resize(size_type __n, _CharT __c) { function in class:basic_string
203 _M_non_dbg_impl.resize(__n, __c);
205 void resize(size_type __n) { resize(__n, _STLP_DEFAULT_CONSTRUCTED(_CharT)); } function in class:basic_string
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/pointers/
_list.h 243 void resize(size_type __new_size, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) function in class:list
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));}
_slist.h 353 void resize(size_type __new_size, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) function in class:slist
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); } function in class:slist
_vector.h 218 void resize(size_type __new_size, const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) function in class:vector
220 void resize(size_type __new_size, const value_type& __x)
222 { _M_impl.resize(__new_size, cast_traits::to_storage_type_cref(__x)); }
225 void resize(size_type __new_size) { _M_impl.resize(__new_size); } function in class:vector
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ShapeDrawableTest.java 197 public Shader resize(int width, int height) { method in class:ShapeDrawableTest.MockShaderFactory
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
MultiPropertyAnimation.java 145 circle.resize(BALL_SIZE, BALL_SIZE);
  /external/eigen/Eigen/src/Core/
PlainObjectBase.h 207 * of rows and/or of columns, you can use resize(NoChange_t, Index), resize(Index, NoChange_t).
217 * \sa resize(Index) for vectors, resize(NoChange_t, Index), resize(Index, NoChange_t)
219 EIGEN_STRONG_INLINE void resize(Index rows, Index cols) function in class:Eigen::PlainObjectBase
225 m_storage.resize(size, rows, cols);
229 m_storage.resize(rows*cols, rows, cols);
242 * \sa resize(Index,Index), resize(NoChange_t, Index), resize(Index, NoChange_t
244 inline void resize(Index size) function in class:Eigen::PlainObjectBase
268 inline void resize(NoChange_t, Index cols) function in class:Eigen::PlainObjectBase
281 inline void resize(Index rows, NoChange_t) function in class:Eigen::PlainObjectBase
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseVector.h 152 m_data.resize(p+2,1);
177 void resize(Index rows, Index cols) function in class:Eigen::SparseVector
180 resize(IsColVector ? rows : cols);
183 void resize(Index newSize) function in class:Eigen::SparseVector
189 void resizeNonZeros(Index size) { m_data.resize(size); }
191 inline SparseVector() : m_size(0) { resize(0); }
193 inline SparseVector(Index size) : m_size(0) { resize(size); }
195 inline SparseVector(Index rows, Index cols) : m_size(0) { resize(rows,cols); }
224 resize(other.size());
314 resize(size)
    [all...]
  /external/llvm/include/llvm/ADT/
SmallBitVector.h 252 /// resize - Grow or shrink the bitvector.
253 void resize(unsigned N, bool t = false) { function in class:llvm::SmallBitVector
255 getPointer()->resize(N, t);
416 resize(std::max(size(), RHS.size()));
423 Copy.resize(size());
430 resize(std::max(size(), RHS.size()));
437 Copy.resize(size());
444 resize(std::max(size(), RHS.size()));
451 Copy.resize(size());
489 /// setBitsInMask - Add '1' bits from Mask to this vector. Don't resize
    [all...]
ValueMap.h 107 void resize(size_t Size) { Map.resize(Size); } function in class:llvm::ValueMap
  /external/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
  /external/webkit/Source/JavaScriptCore/wtf/
Vector.h 569 void resize(size_t size);
842 inline void Vector<T, inlineCapacity>::resize(size_t size) function in class:WTF::Vector::Vector
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGElementInstance.h 118 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), resize); member in class:WebCore::SVGElementInstance
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
SamplingProfiler.java 239 resize(); method
242 private void resize() { method in class:SamplingProfiler.ThreadGroupThreadSet
257 resize(); method
  /ndk/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
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncAdapter.java 99 r.resize(COLOR_CHIP_SIZE, COLOR_CHIP_SIZE);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/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/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/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/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/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/5/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/5/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

Completed in 2491 milliseconds

1 2 3 4 5 6 78 91011>>