OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:httpheaderfield
(Results
1 - 25
of
34
) sorted by null
1
2
/external/webkit/Source/WebCore/platform/network/
ResourceRequestBase.h
97
String
httpHeaderField
(const AtomicString& name) const;
98
String
httpHeaderField
(const char* name) const;
106
String httpContentType() const { return
httpHeaderField
("Content-Type"); }
109
String httpReferrer() const { return
httpHeaderField
("Referer"); }
113
String httpOrigin() const { return
httpHeaderField
("Origin"); }
117
String httpUserAgent() const { return
httpHeaderField
("User-Agent"); }
120
String httpAccept() const { return
httpHeaderField
("Accept"); }
ResourceResponseBase.h
81
String
httpHeaderField
(const AtomicString& name) const;
82
String
httpHeaderField
(const char* name) const;
ResourceRequestBase.cpp
217
String ResourceRequestBase::
httpHeaderField
(const AtomicString& name) const
224
String ResourceRequestBase::
httpHeaderField
(const char* name) const
ResourceResponseBase.cpp
249
String ResourceResponseBase::
httpHeaderField
(const AtomicString& name) const
263
String ResourceResponseBase::
httpHeaderField
(const char* name) const
BlobResourceHandle.cpp
221
String range = firstRequest().
httpHeaderField
("Range");
/external/webkit/Source/WebCore/loader/
CrossOriginPreflightResultCache.cpp
95
if (!parseAccessControlAllowList(response.
httpHeaderField
("Access-Control-Allow-Methods"), m_methods)) {
101
if (!parseAccessControlAllowList(response.
httpHeaderField
("Access-Control-Allow-Headers"), m_headers)) {
107
if (parseAccessControlMaxAge(response.
httpHeaderField
("Access-Control-Max-Age"), expiryDelta)) {
CrossOriginAccessControl.cpp
100
const String& accessControlOriginString = response.
httpHeaderField
("Access-Control-Allow-Origin");
118
const String& accessControlCredentialsString = response.
httpHeaderField
("Access-Control-Allow-Credentials");
/external/webkit/Source/WebCore/platform/network/soup/
ResourceResponseSoup.cpp
80
setSuggestedFilename(filenameFromHTTPContentDisposition(
httpHeaderField
("Content-Disposition")));
/external/webkit/Source/WebKit/chromium/src/
WebURLRequest.cpp
149
WebString WebURLRequest::
httpHeaderField
(const WebString& name) const
151
return m_private->m_resourceRequest->
httpHeaderField
(name);
WebURLResponse.cpp
212
WebString WebURLResponse::
httpHeaderField
(const WebString& name) const
214
return m_private->m_resourceResponse->
httpHeaderField
(name);
/external/chromium/webkit/glue/
multipart_response_delegate.cc
302
response.
httpHeaderField
(WebString::fromUTF8("Content-Type")).utf8();
332
std::string content_range = response.
httpHeaderField
("Content-Range").utf8();
334
content_range = response.
httpHeaderField
("Range").utf8();
site_isolation_metrics.cc
95
WebString access_control_origin = response.
httpHeaderField
(
weburlloader_impl.cc
383
request.
httpHeaderField
(WebString::fromUTF8("Referer")).utf8());
522
WebString referrer = request_.
httpHeaderField
(referrer_string);
/external/webkit/Source/WebCore/loader/cache/
CachedResourceRequest.cpp
102
const String& lastModified = resourceToRevalidate->response().
httpHeaderField
("Last-Modified");
103
const String& eTag = resourceToRevalidate->response().
httpHeaderField
("ETag");
CachedCSSStyleSheet.cpp
142
String mimeType = extractMIMETypeFromMediaType(response().
httpHeaderField
("Content-Type"));
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
WebKitWebSourceGStreamer.cpp
742
priv->seekable = length > 0 && g_ascii_strcasecmp("none", response.
httpHeaderField
("Accept-Ranges").utf8().data());
745
String value = response.
httpHeaderField
("icy-metaint");
759
value = response.
httpHeaderField
("icy-name");
766
value = response.
httpHeaderField
("icy-genre");
773
value = response.
httpHeaderField
("icy-url");
780
value = response.
httpHeaderField
("icy-title");
/external/webkit/Source/WebCore/platform/network/curl/
ResourceHandleManager.cpp
259
d->m_response.setMimeType(extractMIMETypeFromMediaType(d->m_response.
httpHeaderField
("Content-Type")));
260
d->m_response.setTextEncodingName(extractCharsetFromMediaType(d->m_response.
httpHeaderField
("Content-Type")));
261
d->m_response.setSuggestedFilename(filenameFromHTTPContentDisposition(d->m_response.
httpHeaderField
("Content-Disposition")));
265
String location = d->m_response.
httpHeaderField
("location");
/external/webkit/Source/WebKit/chromium/public/
WebURLRequest.h
118
WEBKIT_API WebString
httpHeaderField
(const WebString& name) const;
WebURLResponse.h
111
WEBKIT_API WebString
httpHeaderField
(const WebString& name) const;
/external/webkit/Source/WebKit/win/
WebMutableURLRequest.cpp
237
*result = BString(m_request.
httpHeaderField
(String(field, SysStringLen(field)))).release();
/external/webkit/Tools/iExploder/iexploder-1.7.2/tools/
update_html_tags_from_sources.sh
39
grep -o -r '
httpHeaderField
(".*"' $src_dir | cut -d\" -f2 >> ${tmp_prefix}.headers
/external/chromium/webkit/glue/media/
buffered_resource_loader.cc
291
response.
httpHeaderField
("Accept-Ranges").utf8();
/external/webkit/Source/WebCore/html/parser/
XSSFilter.cpp
175
m_xssProtection = parseXSSProtectionHeader(documentLoader->response().
httpHeaderField
(XSSProtectionHeader));
/external/webkit/Source/WebCore/plugins/
PluginStream.cpp
161
String contentEncoding = m_resourceResponse.
httpHeaderField
("Content-Encoding");
/external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheGroup.cpp
463
const String& lastModified = newestCachedResource->response().
httpHeaderField
("Last-Modified");
464
const String& eTag = newestCachedResource->response().
httpHeaderField
("ETag");
[
all
...]
Completed in 1153 milliseconds
1
2