Home | History | Annotate | Download | only in text

Lines Matching refs:newImpl

99         RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(m_impl->length() + string.length(), data);
102 m_impl = newImpl.release();
108 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(m_impl->length() + string.length(), data);
120 m_impl = newImpl.release();
137 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(m_impl->length() + 1, data);
143 m_impl = newImpl.release();
196 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(strLength + lengthToAppend, data);
199 m_impl = newImpl.release();
205 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(length() + lengthToAppend, data);
208 m_impl = newImpl.release();
228 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(strLength + lengthToAppend, data);
234 m_impl = newImpl.release();
246 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(impl->length() + lengthToInsert, data);
260 return newImpl.release();
304 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(position, data);
306 m_impl = newImpl.release();
309 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(position, data);
311 m_impl = newImpl.release();
319 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(length() - lengthToRemove, data);
324 m_impl = newImpl.release();