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

  /external/webkit/WebKit/win/
WebURLResponse.cpp 286 HRESULT STDMETHODCALLTYPE WebURLResponse::expectedContentLength(
289 *result = m_response.expectedContentLength();
296 /* [in] */ int expectedContentLength,
299 m_response = ResourceResponse(MarshallingHelpers::BSTRToKURL(url), String(mimeType), expectedContentLength, String(textEncodingName), String());
  /external/webkit/WebCore/platform/network/
ResourceResponseBase.cpp 112 data->m_expectedContentLength = expectedContentLength();
161 long long ResourceResponseBase::expectedContentLength() const
168 void ResourceResponseBase::setExpectedContentLength(long long expectedContentLength)
173 m_expectedContentLength = expectedContentLength;
468 if (a.expectedContentLength() != b.expectedContentLength())
  /external/webkit/WebCore/plugins/
PluginStream.cpp 142 long long expectedContentLength = m_resourceResponse.expectedContentLength();
164 // <rdar://problem/4470599> tracks a request for -[NSURLResponse expectedContentLength] to incorporate this logic.
167 expectedContentLength = -1;
173 m_stream.end = max(expectedContentLength, 0LL);
  /external/webkit/WebKit/chromium/src/
WebURLResponse.cpp 106 long long WebURLResponse::expectedContentLength() const
108 return m_private->m_resourceResponse->expectedContentLength();
111 void WebURLResponse::setExpectedContentLength(long long expectedContentLength)
113 m_private->m_resourceResponse->setExpectedContentLength(expectedContentLength);

Completed in 119 milliseconds