Searched refs:newImpl (Results 1 – 4 of 4) sorted by relevance
/external/webkit/Source/JavaScriptCore/wtf/text/ |
D | StringImpl.cpp | 216 RefPtr<StringImpl> newImpl = createUninitialized(m_length, data); in lower() local 224 return newImpl; in lower() 231 return newImpl; in lower() 232 newImpl = createUninitialized(realLength, data); in lower() 236 return newImpl; in lower() 245 RefPtr<StringImpl> newImpl = createUninitialized(m_length, data); in upper() local 259 return newImpl.release(); in upper() 265 return newImpl; in upper() 266 newImpl = createUninitialized(realLength, data); in upper() 270 return newImpl.release(); in upper() [all …]
|
D | WTFString.cpp | 89 …RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(m_impl->length() + str.length(), data… in append() local 92 m_impl = newImpl.release(); in append() 108 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(m_impl->length() + 1, data); in append() local 111 m_impl = newImpl.release(); in append() 126 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(m_impl->length() + 1, data); in append() local 129 m_impl = newImpl.release(); in append() 188 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(length() + lengthToAppend, data); in append() local 191 m_impl = newImpl.release(); in append() 210 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(length() + lengthToInsert, data); in insert() local 214 m_impl = newImpl.release(); in insert() [all …]
|
D | AtomicString.cpp | 348 RefPtr<StringImpl> newImpl = impl->lower(); in lower() local 349 if (LIKELY(newImpl == impl)) in lower() 351 return AtomicString(newImpl); in lower()
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | JSString.cpp | 53 if (PassRefPtr<StringImpl> newImpl = StringImpl::tryCreateUninitialized(m_length, buffer)) in resolveRope() local 54 m_value = newImpl; in resolveRope()
|