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

/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSStringJoiner.cpp81 RefPtr<StringImpl> outputStringImpl = StringImpl::tryCreateUninitialized(outputLength, data); local
82 if (!outputStringImpl)
93 ASSERT(data == (outputStringImpl->getCharacters<CharacterType>() + outputStringImpl->length()));
94 return outputStringImpl.release();
118 RefPtr<StringImpl> outputStringImpl;
120 outputStringImpl = joinStrings<LChar>(m_strings, m_separator, finalSize);
122 outputStringImpl = joinStrings<UChar>(m_strings, m_separator, finalSize);
124 if (!outputStringImpl)
127 return JSString::create(exec->vm(), outputStringImpl
[all...]

Completed in 120 milliseconds