Searched defs:allocateBuffer (Results 1 - 2 of 2) 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));
/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);

Completed in 118 milliseconds