HomeSort by relevance Sort by last modified time
    Searched refs:resize (Results 451 - 475 of 872) sorted by null

<<11121314151617181920>>

  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_slist.c 106 void slist<_Tp,_Alloc>::resize(size_type __len, const _Tp& __x) { function in class:_Alloc
_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
_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
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/
hash_policy.hpp 181 // A resize trigger policy based on a load check. It keeps the
256 // signifying that a resize is needed.
296 // A resize trigger policy based on collision checks. It keeps the
320 // Sets the load; does not resize the container.
362 // signifying that a resize is needed.
471 // A resize policy which delegates operations to size and trigger policies.
533 resize(size_type suggested_new_size);
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_hash_map.h 223 void resize(size_type __hint) { _M_ht.resize(__hint); } function in class:hash_map
409 void resize(size_type __hint) { _M_ht.resize(__hint); } function in class:hash_multimap
_hash_set.h 218 void resize(size_type __hint) { _M_ht.resize(__hint); } function in class:hash_set
400 void resize(size_type __hint) { _M_ht.resize(__hint); } function in class:hash_multiset
_list.c 95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) { function in class:_Alloc
_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.c 106 void slist<_Tp,_Alloc>::resize(size_type __len, const _Tp& __x) { function in class:_Alloc
_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
_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/webkit/Source/WebCore/platform/
KURL.cpp 254 buffer.resize(base.length() + len + 1);
375 strBuffer.resize(len + 1);
473 parseBuffer.resize(base.m_pathEnd + 1 + len + 1);
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderLayer.cpp 1614 void RenderLayer::resize(const PlatformMouseEvent& evt, const IntSize& oldOffset) function in class:WebCore::RenderLayer
1625 EResize resize = renderer->style()->resize(); local
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 191 resize(Idx+1);
216 resize(Idx + 1);
231 resize(Idx + 1);
336 resize(Idx+1);
355 resize(Idx + 1);
384 TypeList.resize(ID+1);
546 TypeList.resize(Record[0]);
773 TypeList.resize(Record[0]);
    [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 216 resize(Idx+1);
241 resize(Idx + 1);
256 resize(Idx + 1);
361 resize(Idx+1);
380 resize(Idx + 1);
409 TypeList.resize(ID+1);
571 TypeList.resize(Record[0]);
798 TypeList.resize(Record[0]);
    [all...]
  /external/chromium/chrome/browser/resources/keyboard/
main.js 124 * Resize all modes of this key based on the given height.
128 resize: function(height) {
496 resize: function(height) {
498 this.keys_[i].resize(height);
632 * Resize the keyboard according to the new window size.
645 allRows[i].resize(height);
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_store_file.cc 92 // resize could invalidate any iterator captured here.
94 values->resize(original_size + count);
100 values->resize(original_size);
  /external/chromium/net/base/
mime_util.cc 448 it->resize(found);
658 target->resize(old_target_size + source->size());
net_util.cc 266 output->resize(length);
717 out->resize(out->length() + extra_space);
723 out->resize(original_length + output_chars);
733 out->resize(original_length);
    [all...]
  /external/chromium/net/disk_cache/
block_files.cc 206 block_files_.resize(kFirstAdditionalBlockFile);
393 block_files_.resize(block_files_.size() + to_add);
  /external/chromium/sdch/open-vcdiff/src/
addrcache_test.cc 551 mode_stream_.resize(test_size);
552 verify_stream_.resize(test_size);
  /external/clang/lib/Lex/
HeaderSearch.cpp 376 // getFileInfo could resize the vector and we don't want to rely on order
572 // getFileInfo could resize the vector and we don't want to rely on order
612 FileInfo.resize(FE->getUID()+1);
635 FileInfo.resize(UID+1);
TokenLexer.cpp 468 Buffer.resize(Tok.getLength() + RHS.getLength());
487 Buffer.resize(LHSLen+RHSLen);
  /external/e2fsprogs/resize/
Makefile.in 9 my_dir = resize

Completed in 2012 milliseconds

<<11121314151617181920>>