Searched refs:allocateBuffer (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringBuilder.cpp65 allocateBuffer(m_buffer->characters(), m_buffer->length());
84 allocateBuffer(m_buffer->characters(), newCapacity);
88 allocateBuffer(m_string.characters(), newCapacity);
94 void StringBuilder::allocateBuffer(const UChar* currentCharacters, unsigned requiredLength) function in class:StringBuilder
129 allocateBuffer(m_buffer->characters(), std::max(requiredLength, m_buffer->length() * 2));
132 allocateBuffer(m_string.characters(), std::max(requiredLength, requiredLength * 2));
H A DStringBuilder.h125 void allocateBuffer(const UChar* currentCharacters, unsigned requiredLength);
/external/webkit/Source/JavaScriptCore/wtf/
H A DVector.h277 void allocateBuffer(size_t newCapacity) function in class:WTF::VectorBufferBase
362 allocateBuffer(capacity);
378 using Base::allocateBuffer;
407 Base::allocateBuffer(capacity);
415 void allocateBuffer(size_t newCapacity) function in class:WTF::VectorBuffer
419 Base::allocateBuffer(newCapacity);
882 m_buffer.allocateBuffer(newCapacity);
909 m_buffer.allocateBuffer(initialCapacity);
924 m_buffer.allocateBuffer(newCapacity);
H A DDeque.h425 m_buffer.allocateBuffer(newCapacity);
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
H A DCharBufferTest.java1057 CharBuffer allocateBuffer = CharBuffer.allocate(1);
1058 CharBuffer charBufferB = CharBuffer.wrap(allocateBuffer);
1061 allocateBuffer.append(allocateBuffer);
1062 charBufferB = CharBuffer.wrap(allocateBuffer);

Completed in 159 milliseconds