HomeSort by relevance Sort by last modified time
    Searched defs:content_type (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/chromium_org/third_party/webrtc/base/
multipart_unittest.cc 30 std::string content_type; local
31 multipart.GetContentType(&content_type);
32 EXPECT_EQ(kTestContentType, content_type);
  /external/chromium_org/components/content_settings/core/browser/
content_settings_origin_identifier_value_map.h 30 ContentSettingsType content_type; member in struct:content_settings::OriginIdentifierValueMap::EntryMapKey
32 EntryMapKey(ContentSettingsType content_type,
70 // Returns an iterator for reading the rules for |content_type| and
76 RuleIterator* GetRuleIterator(ContentSettingsType content_type,
84 // |secondary_pattern|, |content_type|, |resource_identifier| tuple. If
89 ContentSettingsType content_type,
93 // |content_type|, |resource_identifier| tuple. The method takes the ownership
98 ContentSettingsType content_type,
103 // |secondary_pattern|, |content_type|, |resource_identifier| tuple.
107 ContentSettingsType content_type,
    [all...]
  /external/chromium_org/net/test/embedded_test_server/
http_response.h 46 const std::string& content_type() const { return content_type_; } function in class:net::test_server::BasicHttpResponse
47 void set_content_type(const std::string& content_type) {
48 content_type_ = content_type;
embedded_test_server_unittest.cc 34 std::string content_type; local
35 if (headers->GetMimeType(&content_type))
36 return content_type;
87 const std::string& content_type,
97 http_response->set_content_type(content_type);
  /external/chromium_org/storage/common/blob/
blob_data.h 49 const std::string& content_type() const { return content_type_; } function in class:storage::BlobData
50 void set_content_type(const std::string& content_type) {
51 content_type_ = content_type;
78 if (a.content_type() != b.content_type())
  /external/bison/src/
symlist.h 39 } content_type; member in struct:symbol_list
43 * <tt>symbol_list::content_type = SYMLIST_SYMBOL</tt>.
47 * The semantic type iff <tt>symbol_list::content_type = SYMLIST_TYPE</tt>.
98 \pre For every node \c n in the list, <tt>n->content_type =
  /external/chromium_org/chrome/browser/content_settings/
content_settings_default_provider.cc 191 ContentSettingsType content_type,
223 ValueToContentSetting(value.get()) == kDefaultSettings[content_type]) {
226 default_settings_[content_type].reset(
227 new base::FundamentalValue(kDefaultSettings[content_type]));
232 GetTypeName(content_type), NULL);
234 default_settings_[content_type].reset(value->DeepCopy());
237 GetTypeName(content_type), value.release());
243 content_type, local
250 ContentSettingsType content_type,
255 ValueMap::const_iterator it(default_settings_.find(content_type));
    [all...]
content_settings_policy_provider.cc 60 ContentSettingsType content_type; member in struct:__anon8138::PrefsForManagedContentSettingsMapEntry
242 ContentSettingsType content_type,
245 return value_map_.GetRuleIterator(content_type, resource_identifier, &lock_);
283 ContentSettingsType content_type = local
284 kPrefsForManagedContentSettingsMap[i].content_type;
285 DCHECK_NE(content_type, CONTENT_SETTINGS_TYPE_AUTO_SELECT_CERTIFICATE);
292 content_type,
394 ContentSettingsType content_type) {
401 DCHECK(!prefs_->HasPrefPath(kPrefToManageType[content_type]) ||
402 prefs_->IsManagedPreference(kPrefToManageType[content_type]));
410 content_type, local
415 content_type, local
    [all...]
content_settings_pref_provider.cc 45 ContentSetting FixObsoleteCookiePromptMode(ContentSettingsType content_type,
47 if (content_type == CONTENT_SETTINGS_TYPE_COOKIES &&
58 bool GetResourceTypeName(ContentSettingsType content_type,
60 if (content_type == CONTENT_SETTINGS_TYPE_PLUGINS) {
126 ContentSettingsType content_type,
155 content_type,
162 content_type,
170 content_type,
176 primary_pattern, secondary_pattern, content_type, resource_identifier);
182 ContentSettingsType content_type) {
212 content_type, local
415 ContentSettingsType content_type = static_cast<ContentSettingsType>(i); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/content_settings/
content_settings_api.cc 43 ContentSettingsType* content_type) {
50 *content_type =
53 return *content_type != CONTENT_SETTINGS_TYPE_DEFAULT;
64 ContentSettingsType content_type; local
65 EXTENSION_FUNCTION_VALIDATE(RemoveContentType(args_.get(), &content_type));
98 ContentSettingsType content_type; local
99 EXTENSION_FUNCTION_VALIDATE(RemoveContentType(args_.get(), &content_type));
152 if (content_type == CONTENT_SETTINGS_TYPE_COOKIES) {
158 setting = map->GetContentSetting(primary_url, secondary_url, content_type,
172 ContentSettingsType content_type; local
244 secondary_pattern, content_type, local
250 ContentSettingsType content_type; local
    [all...]
  /external/chromium_org/cloud_print/gcp20/prototype/
local_print_job.h 49 std::string content_type; member in struct:LocalPrintJob
  /external/chromium_org/content/browser/tracing/
trace_uploader.cc 200 std::string content_type = kUploadContentType; local
201 content_type.append("; boundary=");
202 content_type.append(kMultipartBoundary);
207 url_fetcher_->SetUploadData(content_type, post_data);
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
pkcs7.c 28 CBS in, content_info, content_type, wrapped_signed_data, signed_data, local
46 !CBS_get_asn1(&content_info, &content_type, CBS_ASN1_OBJECT)) {
50 if (OBJ_cbs2nid(&content_type) != NID_pkcs7_signed) {
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
peer_channel.h 65 void QueueResponse(const std::string& status, const std::string& content_type,
72 std::string status, content_type, extra_headers, data; member in struct:ChannelMember::QueuedResponse
131 std::string* content_type);
data_socket.h 98 const std::string& content_type() const { return content_type_; } function in class:DataSocket
123 // header will be included. |content_type| is the mime content type, not
130 const std::string& content_type,
peer_channel.cc 123 ds->Send("200 OK", true, ds->content_type(), extra_headers,
128 peer->QueueResponse("200 OK", ds->content_type(), extra_headers,
142 const std::string& content_type,
148 bool ok = waiting_socket_->Send(status, true, content_type, extra_headers,
158 qr.content_type = content_type;
170 ds->Send(response.status, true, response.content_type,
267 std::string content_type; local
268 std::string response = BuildResponseForNewMember(*new_guy, &content_type);
269 ds->Send("200 Added", true, content_type, new_guy->GetPeerIdHeader()
    [all...]
  /external/chromium_org/chrome/browser/drive/
drive_uploader.cc 50 const std::string& content_type,
54 content_type(content_type),
72 "], content_type=[" + content_type +
86 const std::string content_type; member in struct:drive::DriveUploader::UploadFileInfo
141 const std::string& content_type,
149 DCHECK(!content_type.empty());
154 content_type,
167 const std::string& content_type,
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/win/
mtp_device_operations_util.cc 90 GUID content_type; local
92 &content_type);
95 // TODO(kmadhusu): |content_type| can be an image or audio or video or mixed
101 return (content_type == WPD_CONTENT_TYPE_FOLDER ||
102 content_type == WPD_CONTENT_TYPE_FUNCTIONAL_OBJECT);
  /external/chromium_org/chrome/browser/ui/tab_contents/
core_tab_helper.cc 246 const std::string& content_type = post_content.first; local
249 DCHECK(!content_type.empty());
255 content_type.c_str());
  /external/chromium_org/components/cronet/android/
url_request_adapter.h 98 std::string content_type() const { return content_type_; } function in class:cronet::URLRequestAdapter
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
sessionmanager.cc 63 void SessionManager::AddClient(const std::string& content_type,
65 ASSERT(client_map_.find(content_type) == client_map_.end());
66 client_map_[content_type] = client;
69 void SessionManager::RemoveClient(const std::string& content_type) {
70 ClientMap::iterator iter = client_map_.find(content_type);
75 SessionClient* SessionManager::GetClient(const std::string& content_type) {
76 ClientMap::iterator iter = client_map_.find(content_type);
81 const std::string& content_type) {
83 return CreateSession(id, local_name, content_type);
88 const std::string& content_type) {
179 std::string content_type; local
    [all...]
  /external/chromium_org/content/child/
multipart_response_delegate.cc 246 std::string content_type = net::GetSpecificHeader(headers, "content-type"); local
250 net::HttpUtil::ParseContentType(content_type, &mime_type, &charset,
301 std::string content_type = local
304 size_t boundary_start_offset = content_type.find("boundary=");
310 size_t boundary_end_offset = content_type.find(';', boundary_start_offset);
313 boundary_end_offset = content_type.length();
318 content_type.substr(boundary_start_offset, boundary_length);
  /external/chromium_org/net/http/
http_util_unittest.cc 660 const char* content_type; member in struct:__anon13961
733 net::HttpUtil::ParseContentType(tests[i].content_type, &mime_type,
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-buffer-private.hh 56 hb_buffer_content_type_t content_type; member in struct:hb_buffer_t
  /external/chromium_org/third_party/webrtc/
config.h 118 : content_type(kRealtimeVideo), encoder_specific_settings(NULL) {}
121 ContentType content_type; member in struct:webrtc::VideoEncoderConfig

Completed in 875 milliseconds

1 2 3