HomeSort by relevance Sort by last modified time
    Searched refs:content_type (Results 26 - 50 of 230) sorted by null

12 3 4 5 6 7 8 910

  /external/chromium_org/sync/internal_api/public/
http_post_provider_interface.h 27 // |content_type| is a null-terminated MIME type specifier.
31 virtual void SetPostPayload(const char* content_type,
  /external/chromium_org/third_party/libjingle/source/talk/base/
multipart.h 47 void GetContentType(std::string* content_type);
49 // Note: If content_disposition and/or content_type are the empty string,
53 const std::string& content_type);
56 const std::string& content_type);
62 const std::string& content_type) const;
multipart.cc 52 void MultipartStream::GetContentType(std::string* content_type) {
53 ASSERT(NULL != content_type);
54 content_type->assign(type_);
55 content_type->append("; boundary=");
56 content_type->append(boundary_);
61 const std::string& content_type) {
62 if (!AddPart("", content_disposition, content_type))
71 const std::string& content_type) {
84 if (!content_type.empty()) {
86 << content_type << "\r\n"
    [all...]
  /external/chromium_org/third_party/webrtc/base/
multipart.h 32 void GetContentType(std::string* content_type);
34 // Note: If content_disposition and/or content_type are the empty string,
38 const std::string& content_type);
41 const std::string& content_type);
47 const std::string& content_type) const;
multipart.cc 37 void MultipartStream::GetContentType(std::string* content_type) {
38 ASSERT(NULL != content_type);
39 content_type->assign(type_);
40 content_type->append("; boundary=");
41 content_type->append(boundary_);
46 const std::string& content_type) {
47 if (!AddPart("", content_disposition, content_type))
56 const std::string& content_type) {
69 if (!content_type.empty()) {
71 << content_type << "\r\n"
    [all...]
  /external/bison/src/
symlist.c 37 res->content_type = SYMLIST_SYMBOL;
68 res->content_type = SYMLIST_TYPE;
87 res->content_type = SYMLIST_DEFAULT_TAGGED;
105 res->content_type = SYMLIST_DEFAULT_TAGLESS;
115 | Print this list, for which every content_type must be SYMLIST_SYMBOL. |
169 l && !(l->content_type == SYMLIST_SYMBOL && l->content.sym == NULL);
192 || (l->content_type == SYMLIST_SYMBOL && l->content.sym == NULL))
214 aver (l->content_type == SYMLIST_SYMBOL);
222 (node->content_type == SYMLIST_SYMBOL && !(node->content.sym));
228 switch (node->content_type)
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_uploader_on_worker.cc 35 const std::string& content_type,
48 content_type,
61 const std::string& content_type,
73 content_type,
86 const std::string& content_type,
drive_uploader_wrapper.h 27 const std::string& content_type,
35 const std::string& content_type,
drive_uploader_on_worker.h 39 const std::string& content_type,
47 const std::string& content_type,
56 const std::string& content_type,
fake_drive_uploader.h 57 const std::string& content_type,
64 const std::string& content_type,
71 const std::string& content_type,
fake_drive_uploader.cc 94 const std::string& content_type,
103 content_type,
112 content_type,
126 const std::string& content_type,
139 const std::string& content_type,
  /external/chromium_org/webkit/common/blob/
blob_data.h 49 const std::string& content_type() const { return content_type_; } function in class:webkit_blob::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/chromium_org/chrome/browser/content_settings/
content_settings_pref_provider.cc 44 ContentSetting FixObsoleteCookiePromptMode(ContentSettingsType content_type,
46 if (content_type == CONTENT_SETTINGS_TYPE_COOKIES &&
57 bool GetResourceTypeName(ContentSettingsType content_type,
59 if (content_type == CONTENT_SETTINGS_TYPE_PLUGINS) {
125 ContentSettingsType content_type,
154 content_type,
161 content_type,
169 content_type,
175 primary_pattern, secondary_pattern, content_type, resource_identifier);
181 ContentSettingsType content_type) {
211 content_type, local
413 ContentSettingsType content_type = static_cast<ContentSettingsType>(i); local
    [all...]
content_settings_default_provider.cc 184 ContentSettingsType content_type,
216 ValueToContentSetting(value.get()) == kDefaultSettings[content_type]) {
219 default_settings_[content_type].reset(
220 base::Value::CreateIntegerValue(kDefaultSettings[content_type]));
225 GetTypeName(content_type), NULL);
227 default_settings_[content_type].reset(value->DeepCopy());
230 GetTypeName(content_type), value.release());
236 content_type, local
243 ContentSettingsType content_type,
248 ValueMap::const_iterator it(default_settings_.find(content_type));
    [all...]
content_settings_utils.h 58 ContentSettingsType content_type,
68 ContentSettingsType content_type,
76 ContentSettingsType content_type,
tab_specific_content_settings.cc 220 ContentSettingsType content_type) const {
221 DCHECK(content_type != CONTENT_SETTINGS_TYPE_GEOLOCATION)
223 DCHECK(content_type != CONTENT_SETTINGS_TYPE_NOTIFICATIONS)
227 if (content_type == CONTENT_SETTINGS_TYPE_IMAGES ||
228 content_type == CONTENT_SETTINGS_TYPE_JAVASCRIPT ||
229 content_type == CONTENT_SETTINGS_TYPE_PLUGINS ||
230 content_type == CONTENT_SETTINGS_TYPE_COOKIES ||
231 content_type == CONTENT_SETTINGS_TYPE_POPUPS ||
232 content_type == CONTENT_SETTINGS_TYPE_MIXEDSCRIPT ||
233 content_type == CONTENT_SETTINGS_TYPE_MEDIASTREAM |
    [all...]
content_settings_utils.cc 129 ContentSettingsType content_type,
139 provider->GetRuleIterator(content_type, resource_identifier, true));
148 provider->GetRuleIterator(content_type, resource_identifier, false));
177 ContentSettingsType content_type,
181 content_type, resource_identifier,
188 ContentSettingsType content_type,
193 content_type, resource_identifier,
  /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...]
session_unittest.cc 152 std::string GingleDescriptionXml(const std::string& content_type) {
154 " xmlns=\"" + content_type + "\""
224 const std::string& content_type,
231 " xmlns=\"" + content_type + "\""
240 const std::string& content_type,
255 " xmlns=\"" + content_type + "\""
276 std::string GingleInitiateXml(const std::string& content_type) {
279 GingleDescriptionXml(content_type));
303 std::string GingleAcceptXml(const std::string& content_type) {
306 GingleDescriptionXml(content_type));
691 std::string content_type; member in class:TestContentDescription
743 std::string content_type; local
761 std::string content_type = (protocol == PROTOCOL_GINGLE ? local
1097 std::string content_type; member in class:TestClient
1486 std::string content_type = "http:\/\/oink.splat\/session"; local
1526 std::string content_type = cricket::NS_JINGLE_RTP; local
1567 std::string content_type = cricket::NS_JINGLE_RTP; local
1610 std::string content_type = "http:\/\/oink.splat\/session"; local
1692 std::string content_type = "http:\/\/oink.splat\/session"; local
1849 std::string content_type = "http:\/\/oink.splat\/session"; local
1989 std::string content_type = "http:\/\/oink.splat\/session"; local
2043 std::string content_type = "http:\/\/oink.splat\/session"; local
2084 std::string content_type = cricket::NS_JINGLE_RTP; local
2132 std::string content_type = "content-type"; local
2186 std::string content_type = "content-type"; local
2226 std::string content_type = "content-type"; local
2266 std::string content_type = "content-type"; local
    [all...]
  /external/chromium_org/chrome/browser/ui/content_settings/
content_setting_bubble_model.cc 91 ContentSettingsType content_type)
92 : ContentSettingBubbleModel(web_contents, profile, content_type),
95 DCHECK_NE(content_type, CONTENT_SETTINGS_TYPE_NOTIFICATIONS);
124 web_contents())->IsContentAllowed(content_type()) &&
126 web_contents())->IsContentBlocked(content_type())) {
131 GetIdForContentType(title_ids, num_title_ids, content_type());
152 GetIdForContentType(kLinkIDs, arraysize(kLinkIDs), content_type())));
157 delegate_->ShowContentSettingsPage(content_type());
166 content_type());
173 delegate_->ShowLearnMorePage(content_type());
    [all...]
  /frameworks/base/packages/WAPPushManager/src/com/android/smspush/
WapPushManager.java 78 + "content_type TEXT, "
116 * @param content_type content type to look up
119 String app_id, String content_type) {
121 + " content_type: " + content_type);
126 "x_wap_application=? and content_type=?",
127 new String[] {app_id, content_type},
181 public int processMessage(String app_id, String content_type, Intent intent)
183 Log.d(LOG_TAG, "wpman processMsg " + app_id + ":" + content_type);
187 WapPushManDBHelper.queryData lastapp = dbh.queryLastApp(db, app_id, content_type);
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
peer_channel.cc 117 ds->Send("200 OK", true, ds->content_type(), extra_headers,
122 peer->QueueResponse("200 OK", ds->content_type(), extra_headers,
136 const std::string& content_type,
142 bool ok = waiting_socket_->Send(status, true, content_type, extra_headers,
152 qr.content_type = content_type;
164 ds->Send(response.status, true, response.content_type,
262 std::string content_type; local
263 std::string response = BuildResponseForNewMember(*new_guy, &content_type);
264 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
140 const std::string& content_type,
148 DCHECK(!content_type.empty());
153 content_type,
166 const std::string& content_type,
    [all...]
drive_uploader.h 62 // content_type:
76 const std::string& content_type,
95 const std::string& content_type,
103 // |content_type| must be set to the same ones for previous invocation.
109 const std::string& content_type,
125 const std::string& content_type,
132 const std::string& content_type,
139 const std::string& content_type,
  /external/chromium_org/chrome/common/extensions/docs/server2/
render_servlet.py 19 def _MakeHeaders(content_type, etag=None):
23 'Content-Type': content_type,
137 content_type = content_and_type.content_type
140 content_type += '; charset=utf-8'
148 headers = _MakeHeaders(content_type, etag=etag)

Completed in 1294 milliseconds

12 3 4 5 6 7 8 910