HomeSort by relevance Sort by last modified time
    Searched refs:newImpl (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/text/
StringImpl.cpp 216 RefPtr<StringImpl> newImpl = createUninitialized(m_length, data);
224 return newImpl;
231 return newImpl;
232 newImpl = createUninitialized(realLength, data);
236 return newImpl;
245 RefPtr<StringImpl> newImpl = createUninitialized(m_length, data);
259 return newImpl.release();
265 return newImpl;
266 newImpl = createUninitialized(realLength, data);
270 return newImpl.release()
    [all...]
WTFString.cpp 89 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(m_impl->length() + str.length(), data);
92 m_impl = newImpl.release();
108 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(m_impl->length() + 1, data);
111 m_impl = newImpl.release();
126 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(m_impl->length() + 1, data);
129 m_impl = newImpl.release();
188 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(length() + lengthToAppend, data);
191 m_impl = newImpl.release();
210 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(length() + lengthToInsert, data);
214 m_impl = newImpl.release()
    [all...]
AtomicString.cpp 348 RefPtr<StringImpl> newImpl = impl->lower();
349 if (LIKELY(newImpl == impl))
351 return AtomicString(newImpl);
  /libcore/luni/src/main/java/java/net/
PlainSocketImpl.java 89 protected void accept(SocketImpl newImpl) throws IOException {
91 ((PlainSocketImpl) newImpl).socksBind();
92 ((PlainSocketImpl) newImpl).socksAccept();
100 // TODO: we can't just set newImpl.fd to clientFd because a nio SocketChannel may
102 newImpl.fd.setInt$(clientFd.getInt$());
104 newImpl.address = peerAddress.getAddress();
105 newImpl.port = peerAddress.getPort();
114 newImpl.setOption(SocketOptions.SO_TIMEOUT, Integer.valueOf(0));
116 newImpl.localport = IoBridge.getSocketLocalPort(newImpl.fd)
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSString.cpp 53 if (PassRefPtr<StringImpl> newImpl = StringImpl::tryCreateUninitialized(m_length, buffer))
54 m_value = newImpl;

Completed in 561 milliseconds