HomeSort by relevance Sort by last modified time
    Searched refs:expectedContentLength (Results 1 - 25 of 26) sorted by null

1 2

  /external/webkit/WebCore/platform/network/mac/
ResourceResponseMac.mm 50 NSInteger expectedContentLength;
52 expectedContentLength = -1;
54 expectedContentLength = static_cast<NSInteger>(m_expectedContentLength);
55 const_cast<ResourceResponse*>(this)->m_nsResponse.adoptNS([[NSURLResponse alloc] initWithURL:m_url MIMEType:m_mimeType expectedContentLength:expectedContentLength textEncodingName:m_textEncodingName]);
73 m_expectedContentLength = [m_nsResponse.get() expectedContentLength];
  /external/webkit/WebKit/win/Interfaces/
IWebURLResponse.idl 43 - (long long)expectedContentLength
45 HRESULT expectedContentLength([out, retval] long long *result);
48 - (id)initWithURL:(NSURL *)URL MIMEType:(NSString *)MIMEType expectedContentLength:(int)length textEncodingName:(NSString *)name
50 HRESULT initWithURL([in] BSTR url, [in] BSTR mimeType, [in] int expectedContentLength, [in] BSTR textEncodingName);
  /external/webkit/WebKit/win/
WebURLResponse.h 51 virtual HRESULT STDMETHODCALLTYPE expectedContentLength(
57 /* [in] */ int expectedContentLength,
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/WebKit/mac/Plugins/Hosted/
HostedNetscapePluginStream.mm 93 void HostedNetscapePluginStream::startStream(NSURL *responseURL, long long expectedContentLength, NSDate *lastModifiedDate, NSString *mimeType, NSData *headers)
108 expectedContentLength,
135 long long expectedContentLength = [r expectedContentLength];
175 // <rdar://problem/4470599> tracks a request for -[NSURLResponse expectedContentLength] to incorporate this logic.
178 expectedContentLength = -1;
183 startStream([r URL], expectedContentLength, WKGetNSURLResponseLastModifiedDate(r), [r MIMEType], theHeaders);
HostedNetscapePluginStream.h 82 void startStream(NSURL *, long long expectedContentLength, NSDate *lastModifiedDate, NSString *mimeType, NSData *headers);
WebKitPluginHost.defs 142 expectedContentLength :int64_t;
NetscapePluginInstanceProxy.mm 588 expectedContentLength:[JSData length]
    [all...]
  /external/webkit/WebCore/platform/network/
ResourceResponseBase.h 57 long long expectedContentLength() const;
58 void setExpectedContentLength(long long expectedContentLength);
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/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);
  /external/webkit/WebKitTools/WebKitLauncher/
WebKitLauncherURLProtocol.m 92 NSURLResponse *response = [[NSURLResponse alloc] initWithURL:[[self request] URL] MIMEType:@"text/javascript" expectedContentLength:0 textEncodingName:@"utf-8"];
105 NSURLResponse *response = [[NSURLResponse alloc] initWithURL:[[self request] URL] MIMEType:@"text/plain" expectedContentLength:0 textEncodingName:@"utf-8"];
  /external/webkit/WebKit/mac/Plugins/
WebBaseNetscapePluginStream.mm 212 void WebNetscapePluginStream::startStream(NSURL *url, long long expectedContentLength, NSDate *lastModifiedDate, NSString *mimeType, NSData *headers)
223 m_stream.end = expectedContentLength > 0 ? (uint32)expectedContentLength : 0;
305 long long expectedContentLength = [r expectedContentLength];
345 // <rdar://problem/4470599> tracks a request for -[NSURLResponse expectedContentLength] to incorporate this logic.
348 expectedContentLength = -1;
353 startStream([r URL], expectedContentLength, WKGetNSURLResponseLastModifiedDate(r), [r MIMEType], theHeaders);
WebBaseNetscapePluginStream.h 92 void startStream(NSURL *, long long expectedContentLength, NSDate *lastModifiedDate, NSString *mimeType, NSData *headers);
WebNetscapePluginView.mm     [all...]
  /external/webkit/WebKit/chromium/public/
WebURLResponse.h 78 WEBKIT_API long long expectedContentLength() const;
  /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/WebCore/inspector/
TimelineRecordFactory.cpp 123 data.set("expectedContentLength", response.expectedContentLength());
InspectorResource.cpp 119 m_expectedContentLength = response.expectedContentLength();
168 jsonObject.set("expectedContentLength", m_expectedContentLength);
  /external/webkit/WebCore/loader/
ProgressTracker.cpp 159 long long estimatedLength = response.expectedContentLength();
  /external/webkit/WebCore/inspector/front-end/
Resource.js 291 get expectedContentLength()
296 set expectedContentLength(x)
inspector.js     [all...]
  /external/webkit/WebCore/platform/graphics/gtk/
WebKitWebSourceGStreamer.cpp 624 long long length = response.expectedContentLength();
  /external/webkit/WebCore/xml/
XMLHttpRequest.cpp 918 long long expectedLength = m_response.expectedContentLength();
  /external/webkit/WebKitTools/DumpRenderTree/mac/
DumpRenderTree.mm     [all...]

Completed in 1114 milliseconds

1 2