HomeSort by relevance Sort by last modified time
    Searched full:mime (Results 351 - 375 of 1798) sorted by null

<<11121314151617181920>>

  /external/chromium_org/content/renderer/media/
webcontentdecryptionmodulesession_impl.cc 37 // Chromium only supports ASCII MIME types.
  /external/chromium_org/remoting/proto/
event.proto 66 // The MIME type of the data being sent.
  /external/chromium_org/third_party/icu/source/data/mappings/
ucmcore.mk 3 # A list of UCM's to build for core MIME/Unix/Windows encodings
  /external/chromium_org/ui/base/clipboard/
clipboard_util_win.h 47 // This represents custom MIME types a web page might set to transport its
  /external/chromium_org/ui/shell_dialogs/
select_file_dialog_win_unittest.cc 16 // Known extensions, with or without associated MIME types, should not get
  /external/icu4c/data/mappings/
ucmcore.mk 3 # A list of UCM's to build for core MIME/Unix/Windows encodings
  /frameworks/av/cmds/stagefright/
stream.cpp 174 const char *mime; local
175 CHECK(meta->findCString(kKeyMIMEType, &mime));
177 if (strncasecmp("video/", mime, 6) && strncasecmp("audio/", mime, 6)) {
  /frameworks/av/drm/drmserver/
DrmManagerService.cpp 198 int uniqueId, int fd, off64_t offset, off64_t length, const char* mime) {
201 return mDrmManager->openDecryptSession(uniqueId, fd, offset, length, mime);
208 int uniqueId, const char* uri, const char* mime) {
211 return mDrmManager->openDecryptSession(uniqueId, uri, mime);
  /frameworks/av/drm/libdrmframework/
DrmManagerClientImpl.cpp 250 off64_t length, const char* mime) {
253 uniqueId, fd, offset, length, mime);
257 int uniqueId, const char* uri, const char* mime) {
261 handle = getDrmManagerService()->openDecryptSession(uniqueId, uri, mime);
  /frameworks/av/include/media/stagefright/
MediaExtractor.h 32 const sp<DataSource> &source, const char *mime = NULL);
  /frameworks/av/media/libstagefright/include/
ID3.h 46 const void *getAlbumArt(size_t *length, String8 *mime) const;
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
MimePredicate.java 26 * MIME types that are visual in nature. For example, they should always be
  /libcore/luni/src/main/java/java/net/
URLEncoder.java 27 * {@code application/x-www-form-urlencoded} MIME content type.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SimpleHTTPServer.py 32 subdirectories. The MIME type for files is determined by
58 This sends the response code and MIME headers.
185 usable for a MIME Content-type header.
204 mimetypes.init() # try to read system mime.types
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_MimeWriter.py 87 MIME-Version: 1.0
92 This is a multi-part message in MIME format.
206 toplevel.addheader("MIME-Version", "1.0")
212 f.write("This is a multi-part message in MIME format.\n")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SimpleHTTPServer.py 32 subdirectories. The MIME type for files is determined by
58 This sends the response code and MIME headers.
185 usable for a MIME Content-type header.
204 mimetypes.init() # try to read system mime.types
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_MimeWriter.py 87 MIME-Version: 1.0
92 This is a multi-part message in MIME format.
206 toplevel.addheader("MIME-Version", "1.0")
212 f.write("This is a multi-part message in MIME format.\n")
  /external/chromium/chrome/browser/chromeos/
gview_request_interceptor_unittest.cc 31 // interceptor, the mime type of the first request must be one of
32 // the supported viewable mime types. So when the net::URLRequestJob
34 // content, return an appropraite mime type. Otherwise, return
  /external/chromium_org/media/base/android/
media_codec_bridge.h 105 explicit MediaCodecBridge(const char* mime);
142 explicit AudioCodecBridge(const char* mime);
161 explicit VideoCodecBridge(const char* mime);
  /external/chromium_org/ppapi/api/dev/
ppb_file_chooser_dev.idl 44 * @param[in] accept_types A comma-separated list of MIME types and file
47 * comments). The dialog may restrict selectable files to the specified MIME
50 * otherwise it is interpreted as a MIME-type. An empty string or an undefined
  /external/chromium_org/ppapi/c/dev/
ppb_file_chooser_dev.h 67 * @param[in] accept_types A comma-separated list of MIME types and file
70 * comments). The dialog may restrict selectable files to the specified MIME
73 * otherwise it is interpreted as a MIME-type. An empty string or an undefined
  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
MIMEHeader.cpp 63 LOG_ERROR("Key duplicate found in MIME header. Key is '%s', previous value replaced.", key.ascii().data());
96 LOG_ERROR("No boundary found in multipart MIME header.");
127 LOG_ERROR("Unknown encoding '%s' found in MIME header.", text.ascii().data());
  /external/nist-sip/java/gov/nist/javax/sip/message/
MultipartMimeContentImpl.java 21 * Content list for multipart mime content type.
79 * unpack a multipart mime packet and return a list of content packets.
145 throw new ParseException("Invalid Multipart mime format", 0);
  /frameworks/av/media/libstagefright/
ACodec.cpp 926 bool isEncoder, const char *mime) {
928 const char *mime; member in struct:android::MimeToRole
975 if (!strcasecmp(mime, kMimeToRole[i].mime)) {
1013 const char *mime, const sp<AMessage> &msg) {
1021 status_t err = setComponentRole(encoder /* isEncoder */, mime);
1029 if (encoder && strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_FLAC)
2472 AString mime; local
3566 AString mime; local
3755 AString mime; local
    [all...]
MPEG2TSWriter.cpp 105 const char *mime; local
106 CHECK(meta->findCString(kKeyMIMEType, &mime));
108 if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_AAC)) {
110 } else if (!strcasecmp(mime, MEDIA_MIMETYPE_VIDEO_AVC)) {
151 const char *mime; local
152 CHECK(meta->findCString(kKeyMIMEType, &mime));
154 if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_AAC)) {
181 if (strcasecmp(mime, MEDIA_MIMETYPE_VIDEO_AVC)) {
543 const char *mime; local
544 CHECK(meta->findCString(kKeyMIMEType, &mime));
    [all...]

Completed in 941 milliseconds

<<11121314151617181920>>