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

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.cpp238 PassRefPtr<StringImpl> insertInternal(PassRefPtr<StringImpl> impl, const CharType* charactersToInsert, unsigned lengthToInsert, unsigned position) argument
243 ASSERT(charactersToInsert);
253 StringImpl::copyChars(data + position, charactersToInsert, lengthToInsert);
263 void String::insert(const UChar* charactersToInsert, unsigned lengthToInsert, unsigned position) argument
266 append(charactersToInsert, lengthToInsert);
270 m_impl = insertInternal(m_impl.release(), charactersToInsert, lengthToInsert, position);
273 void String::insert(const LChar* charactersToInsert, unsigned lengthToInsert, unsigned position) argument
276 append(charactersToInsert, lengthToInsert);
280 m_impl = insertInternal(m_impl.release(), charactersToInsert, lengthToInsert, position);

Completed in 57 milliseconds