Searched refs:lengthToAppend (Results 1 – 1 of 1) sorted by relevance
172 void String::append(const UChar* charactersToAppend, unsigned lengthToAppend) in append() argument177 m_impl = StringImpl::create(charactersToAppend, lengthToAppend); in append()181 if (!lengthToAppend) in append()186 if (lengthToAppend > numeric_limits<unsigned>::max() - length()) in append()188 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(length() + lengthToAppend, data); in append()190 memcpy(data + length(), charactersToAppend, lengthToAppend * sizeof(UChar)); in append()