HomeSort by relevance Sort by last modified time
    Searched refs:grow (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/webkit/JavaScriptCore/assembler/
AssemblerBuffer.h 60 grow();
78 grow();
92 grow();
113 grow();
146 grow(size);
152 void grow(int extraCapacity = 0) function in class:JSC::AssemblerBuffer
  /external/icu4c/layoutex/
RunArrays.cpp 43 grow(fCapacity);
55 void RunArray::grow(le_int32 newCapacity) function in class:RunArray
98 void FontRuns::grow(le_int32 capacity) function in class:FontRuns
100 RunArray::grow(capacity);
150 void LocaleRuns::grow(le_int32 capacity) function in class:LocaleRuns
152 RunArray::grow(capacity);
202 void ValueRuns::grow(le_int32 capacity) function in class:ValueRuns
204 RunArray::grow(capacity);
plruns.cpp 269 * <code>RunArray::add(limit)</code> which will create or grow the arrays as needed.
276 * The new <code>add</code> method should first call this method to grow the font and limit indices
306 virtual void grow(le_int32 capacity);
377 void ULocRuns::grow(le_int32 capacity) function in class:ULocRuns
379 LocaleRuns::grow(capacity);
  /libcore/luni/src/main/java/org/apache/xml/utils/
BoolStack.java 92 grow(); method
184 private void grow() method in class:BoolStack
  /external/icu4c/layoutex/layout/
RunArrays.h 33 * When an array needs to grow, it will double in size until
34 * it becomes this large, then it will grow by this amount.
128 * calling the <code>grow</code> method.
136 * first call this method to grow the data arrays, and use the return value
144 * @see grow
180 * Grow a data array to the given initial size. This method will be
183 * the overriding method to grow the limit indices array.
191 virtual void grow(le_int32 capacity);
329 * <code>RunArray::add(limit)</code> which will create or grow the arrays as needed.
336 * The new <code>add</code> method should first call this method to grow the font and limit indice
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/wallpaper/
Slideshow.java 174 private void performUpdate(RectF rect, Vector3f grow, long delta) {
178 rect.top -= amountToGrowY * grow.x;
179 rect.left -= amountToGrowX * grow.y;
181 rect.bottom += amountToGrowY * (1 - grow.x);
182 rect.right += amountToGrowX * (1 - grow.y);
  /external/v8/src/
string-stream.h 44 virtual char* grow(unsigned* bytes) = 0;
53 char* grow(unsigned* bytes);
66 char* grow(unsigned* bytes);
string-stream.cc 59 // reaching a difference of 2 we need to grow the buffer.
62 char* new_buffer = allocator_->grow(&new_capacity);
558 char* HeapStringAllocator::grow(unsigned* bytes) { function in class:v8::HeapStringAllocator
576 // Only grow once to the maximum allowable size.
577 char* NoAllocationStringAllocator::grow(unsigned* bytes) { function in class:v8::NoAllocationStringAllocator
  /external/webkit/JavaScriptCore/interpreter/
RegisterFile.h 130 bool grow(Register* newEnd);
233 inline bool RegisterFile::grow(Register* newEnd) function in class:JSC::RegisterFile
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextControllerCoreText.cpp 62 m_glyphsVector.grow(m_glyphCount);
69 m_advancesVector.grow(m_glyphCount);
ComplexTextControllerATSUI.cpp 171 substituteCharacters.grow(stringLength);
194 substituteCharacters.grow(stringLength + 2);
  /external/webkit/WebCore/platform/text/
TextCodecUserDefined.cpp 81 result.grow(resultLength + replacementLength + length - i);
TextStream.cpp 87 m_text.grow(textLength + stringLength);
Base64.cpp 92 out.grow(out_len);
149 out.grow(len);
  /device/htc/passion-common/
BoardConfigCommon.mk 66 BOARD_SYSTEMIMAGE_PARTITION_SIZE := 0x08400000 # limited so we enforce room to grow
  /external/webkit/JavaScriptCore/wtf/
SegmentedVector.h 167 void grow(size_t size) function in class:WTF::SegmentedVector
234 // Grow segment N to accomodate the remainder.
243 m_segments[segmentIndex]->grow(size);
  /external/webkit/WebCore/platform/network/
FormData.cpp 124 e.m_data.grow(oldSize + size);
143 data.grow(oldSize + delta);
  /external/webkit/WebCore/platform/text/mac/
TextCodecMac.cpp 298 result.grow(size + bufferLength);
317 result.grow(size + entityLength);
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
VectorTest.java 85 Vector grow = new Vector(3, -1); local
86 grow.addElement("one");
87 grow.addElement("two");
88 grow.addElement("three");
89 grow.addElement("four");
90 assertEquals("Wrong size", 4, grow.size());
91 assertEquals("Wrong capacity", 6, grow.capacity());
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
VectorTest.java 117 Vector grow = new Vector(3, -1); local
118 grow.addElement("one");
119 grow.addElement("two");
120 grow.addElement("three");
121 grow.addElement("four");
122 assertEquals("Wrong size", 4, grow.size());
123 assertEquals("Wrong capacity", 6, grow.capacity());
    [all...]
  /libcore/luni/src/main/java/java/util/
Vector.java 56 * it needs to grow to accommodate extra entries. If this value is zero or
374 grow(minimumCapacity > next ? minimumCapacity : next);
446 private void grow(int newCapacity) { method
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
ImageQt.cpp 148 m_frames.grow(1);
  /external/chromium/third_party/libevent/
evport.c 46 * Helper functions are used: grow() grows the file descriptor array as
82 * grow the array of file descriptors, doubling its size.
235 grow(struct evport_data *epdp, int factor) function
415 * If necessary, grow the file descriptor info table
423 if (-1 == grow(evpd, factor)) {
  /external/astl/include/
vector 218 size_type grow() const;
324 const size_type new_capacity = grow();
466 // Grow the capacity. Use exponential until kExponentialLimit then
469 typename vector<_T>::size_type vector<_T>::grow() const
  /external/webkit/WebCore/platform/graphics/
BitmapImage.cpp 119 m_frames.grow(numFrames);

Completed in 282 milliseconds

1 2 3