Searched refs:mMaxLength (Results 1 – 2 of 2) sorted by relevance
20 ASSERT(mPos + str.length() <= mMaxLength); in operator <<()30 ASSERT(mPos + len <= mMaxLength); in operator <<()39 ASSERT(mPos + 1 <= mMaxLength); in operator <<()46 int numChars = snprintf(mData + mPos, mMaxLength - mPos, "%d", u); in appendDecimal()48 ASSERT(mPos + numChars <= mMaxLength); in appendDecimal()
22 : mPos(0u), mMaxLength(maxLength), mData(AllocateEmptyPoolCharArray(maxLength)) in ImmutableStringBuilder()40 ASSERT(mPos + sizeof(T) * 2u <= mMaxLength); in appendHex()71 size_t mMaxLength; variable