expandedCapacity 896 Source/wtf/Vector.h size_t expandedCapacity = oldCapacity; expandedCapacity 901 Source/wtf/Vector.h expandedCapacity *= 2; expandedCapacity 903 Source/wtf/Vector.h RELEASE_ASSERT(expandedCapacity > oldCapacity); expandedCapacity 909 Source/wtf/Vector.h expandedCapacity += (expandedCapacity / 4) + 1; expandedCapacity 911 Source/wtf/Vector.h reserveCapacity(std::max(newMinCapacity, std::max(static_cast<size_t>(kInitialVectorSize), expandedCapacity))); expandedCapacity 251 Source/wtf/text/StringBuilder.cpp reallocateBuffer<CharType>(expandedCapacity(capacity(), requiredLength)); expandedCapacity 254 Source/wtf/text/StringBuilder.cpp allocateBuffer(m_length ? m_string.getCharacters<CharType>() : 0, expandedCapacity(capacity(), requiredLength)); expandedCapacity 285 Source/wtf/text/StringBuilder.cpp allocateBufferUpConvert(m_buffer->characters8(), expandedCapacity(capacity(), requiredLength)); expandedCapacity 288 Source/wtf/text/StringBuilder.cpp allocateBufferUpConvert(m_string.isNull() ? 0 : m_string.characters8(), expandedCapacity(capacity(), requiredLength));