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

/external/apache-http/src/org/apache/http/conn/
H A DEofSensorWatcher.java54 * @param wrapped the underlying stream which has reached EOF
56 * @return <code>true</code> if <code>wrapped</code> should be closed,
62 * wrapped stream alone, as if <code>false</code> was returned.
64 boolean eofDetected(InputStream wrapped) argument
74 * @param wrapped the underlying stream which has not reached EOF
76 * @return <code>true</code> if <code>wrapped</code> should be closed,
82 * wrapped stream alone, as if <code>false</code> was returned.
84 boolean streamClosed(InputStream wrapped) argument
97 * @param wrapped the underlying stream which has not reached EOF
99 * @return <code>true</code> if <code>wrapped</cod
107 streamAbort(InputStream wrapped) argument
[all...]
H A DBasicEofSensorWatcher.java78 public boolean eofDetected(InputStream wrapped) argument
85 wrapped.close();
96 public boolean streamClosed(InputStream wrapped) argument
103 wrapped.close();
114 public boolean streamAbort(InputStream wrapped) argument
H A DBasicManagedEntity.java154 public boolean eofDetected(InputStream wrapped) argument
161 wrapped.close();
172 public boolean streamClosed(InputStream wrapped) argument
179 wrapped.close();
190 public boolean streamAbort(InputStream wrapped) argument
/external/apache-http/src/org/apache/http/entity/
H A DHttpEntityWrapper.java46 * should not be delegated to the wrapped entity.
54 /** The wrapped entity. */
60 * @param wrapped the entity to wrap
62 public HttpEntityWrapper(HttpEntity wrapped) { argument
65 if (wrapped == null) {
67 ("wrapped entity must not be null");
69 wrappedEntity = wrapped;
/external/webkit/WebKit/chromium/src/
H A DApplicationCacheHost.cpp78 WrappedResourceRequest wrapped(request);
79 m_internal->m_outerHost->willStartMainResourceRequest(wrapped);
114 WrappedResourceResponse wrapped(response);
115 m_internal->m_outerHost->didReceiveResponseForMainResource(wrapped);
148 WrappedResourceRequest wrapped(request);
149 m_internal->m_outerHost->willStartSubResourceRequest(wrapped);
175 WrappedResourceRequest wrapped(request);
176 m_internal->m_outerHost->willStartSubResourceRequest(wrapped);
/external/guava/src/com/google/common/primitives/
H A DPrimitives.java100 Class<T> wrapped = (Class<T>) PRIMITIVE_TO_WRAPPER_TYPE.get(type);
101 return (wrapped == null) ? type : wrapped;
/external/v8/src/
H A Druntime.cc6250 static StackFrame::Id UnwrapFrameId(Smi* wrapped) {
6251 return static_cast<StackFrame::Id>(wrapped->value() << 2);
6718 // where a value object is not converted into a wrapped JS objects.

Completed in 259 milliseconds