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

  /external/webkit/Source/JavaScriptCore/wtf/text/
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...]
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...]
  /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...]

Completed in 2209 milliseconds