/frameworks/av/include/media/ |
AudioPolicyHelper.h | 71 attr->content_type = AUDIO_CONTENT_TYPE_MUSIC; 75 attr->content_type = AUDIO_CONTENT_TYPE_SPEECH; 82 attr->content_type = AUDIO_CONTENT_TYPE_SONIFICATION; 86 attr->content_type = AUDIO_CONTENT_TYPE_SONIFICATION; 90 attr->content_type = AUDIO_CONTENT_TYPE_SONIFICATION; 94 attr->content_type = AUDIO_CONTENT_TYPE_SONIFICATION; 98 attr->content_type = AUDIO_CONTENT_TYPE_SPEECH; 103 attr->content_type = AUDIO_CONTENT_TYPE_SONIFICATION; 107 attr->content_type = AUDIO_CONTENT_TYPE_SPEECH;
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/de-DE/ |
de-DE_dbg.txt | 9 CONTENT_TYPE DEBUG
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/en-GB/ |
en-GB_dbg.txt | 9 CONTENT_TYPE DEBUG
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/en-US/ |
en-US_dbg.txt | 9 CONTENT_TYPE DEBUG
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/es-ES/ |
es-ES_dbg.txt | 9 CONTENT_TYPE DEBUG
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/fr-FR/ |
fr-FR_dbg.txt | 9 CONTENT_TYPE DEBUG
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/it-IT/ |
it-IT_dbg.txt | 9 CONTENT_TYPE DEBUG
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
IWapPushManager.aidl | 26 int processMessage(String app_id, String content_type, in Intent intent); 33 boolean addPackage(String x_app_id, String content_type, 41 boolean updatePackage(String x_app_id, String content_type, 49 boolean deletePackage(String x_app_id, String content_type,
|
/external/chromium-trace/catapult/third_party/webtest/webtest/ |
utils.py | 29 content_type = 'application/json' 34 content_type=content_type, 58 def encode_params(params, content_type): 64 if content_type: 65 content_type = content_type.lower() 66 if 'charset=' in content_type: 67 charset = content_type.split('charset=')[1]
|
app.py | 327 content_type=None, xhr=False): 351 :param content_type: 353 :type content_type: 371 content_type=content_type) 375 content_type=None, xhr=False): 388 content_type=content_type, 393 content_type=None, xhr=False): 406 content_type=content_type [all...] |
/external/webrtc/webrtc/base/ |
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...] |
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;
|
/external/libbrillo/brillo/http/ |
http_form_data.cc | 34 const std::string& content_type, 38 content_type_{content_type}, 77 const std::string& content_type, 81 content_type, local 95 const std::string& content_type, 97 : FormField{name, content_disposition, content_type, transfer_encoding}, 116 const std::string& content_type, 120 content_type.empty() ? mime::multipart::kMixed : content_type, 160 const std::string& content_type, 172 content_type, local [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
CMSAttributeTableGenerator.java | 12 String CONTENT_TYPE = "contentType";
|
/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-trace/catapult/third_party/Paste/tests/ |
test_httpheaders.py | 29 environ = {'CONTENT_TYPE': 'text/plain', 'wsgi.version': '1.0', 32 assert 'text/plain' == CONTENT_TYPE(environ) 34 CONTENT_TYPE.update(environ,'new/type') 35 assert 'new/type' == CONTENT_TYPE(environ) 36 CONTENT_TYPE.delete(environ) 37 assert '' == CONTENT_TYPE(environ) 79 assert 'text/plain' == CONTENT_TYPE(headers) 81 assert 'text/plain' == CONTENT_TYPE(headers) 83 assert 'text/plain' == CONTENT_TYPE(headers) 86 assert 'text/plain' == CONTENT_TYPE(headers [all...] |
test_wsgiwrappers.py | 22 WSGIRequest.defaults._push_object(dict(content_type='text/html', 55 content_type = 'application/x-www-form-urlencoded; charset=%s' 57 headers={'content-type': content_type % 'UTF-8'}) 64 headers={'content-type': content_type % 'UTF-8'}) 102 assert response.content_type == 'text/html' 111 WSGIResponse.defaults._push_object(dict(content_type='text/html', 126 WSGIResponse.defaults._push_object(dict(content_type='text/html', 137 WSGIResponse.defaults._push_object(dict(content_type='text/html',
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/wsgi/ |
service.py | 81 content_type = environ.get('CONTENT_TYPE') 82 if not content_type: 83 content_type = environ.get('HTTP_CONTENT_TYPE') 84 if not content_type: 88 content_type = cgi.parse_header(content_type)[0] 104 content_type='text/plain; charset=utf-8') 109 protocol = local_protocols.lookup_by_content_type(content_type) 134 content_type=protocol.default_content_type [all...] |
/packages/apps/Contacts/src/com/android/contacts/list/ |
ContactsIntentResolver.java | 75 if (Contacts.CONTENT_TYPE.equals(resolvedType)) { 77 } else if (People.CONTENT_TYPE.equals(resolvedType)) { 80 } else if (Phone.CONTENT_TYPE.equals(resolvedType)) { 82 } else if (Phones.CONTENT_TYPE.equals(resolvedType)) { 85 } else if (StructuredPostal.CONTENT_TYPE.equals(resolvedType)) { 90 } else if (Email.CONTENT_TYPE.equals(resolvedType)) { 136 if (ContactsContract.Contacts.CONTENT_TYPE.equals(resolvedType) 137 || android.provider.Contacts.People.CONTENT_TYPE.equals(resolvedType)) {
|
/external/webrtc/webrtc/examples/peerconnection/server/ |
peer_channel.cc | 113 ds->Send("200 OK", true, ds->content_type(), extra_headers, 118 peer->QueueResponse("200 OK", ds->content_type(), extra_headers, 132 const std::string& content_type, 138 bool ok = waiting_socket_->Send(status, true, content_type, extra_headers, 148 qr.content_type = content_type; 160 ds->Send(response.status, true, response.content_type, 257 std::string content_type; local 258 std::string response = BuildResponseForNewMember(*new_guy, &content_type); 259 ds->Send("200 Added", true, content_type, new_guy->GetPeerIdHeader() [all...] |
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
ConversationImagePartsView.java | 49 + DatabaseHelper.PARTS_TABLE + '.' + PartColumns.CONTENT_TYPE 50 + " as " + Columns.CONTENT_TYPE + ", " 68 // "content_type like 'image/%'" 69 + " WHERE " + DatabaseHelper.PARTS_TABLE + "." + PartColumns.CONTENT_TYPE 82 static final String CONTENT_TYPE = PhotoViewColumns.CONTENT_TYPE; 95 PhotoViewColumns.CONTENT_TYPE,
|
/external/chromium-trace/catapult/third_party/WebOb/docs/pycon2011/ |
response_table.rst | 30 content_type x x content_type 32 z z mime_type content_type str wo parameters
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/provider/ |
PhotoContract.java | 50 public static final String CONTENT_TYPE = "contentType"; 65 PhotoViewColumns.CONTENT_TYPE 78 public static final String CONTENT_TYPE = "contentType";
|
/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-trace/catapult/telemetry/third_party/webpagereplay/ |
script_injector.py | 62 def InjectScript(content, content_type, script_to_inject): 63 """Inject |script_to_inject| into |content| if |content_type| is 'text/html'. 74 if content_type and content_type == 'text/html':
|