HomeSort by relevance Sort by last modified time
    Searched full:mime (Results 26 - 50 of 1131) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/bluetooth/glib/tests/bookmarks/
fail-16.xbel 7 xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
14 <mime:mime-type type="application/postscript"/>
fail-17.xbel 7 xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
14 <mime:mime-type type="application/postscript"/>
valid-01.xbel 7 xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
14 <mime:mime-type type="application/postscript"/>
valid-03.xbel 7 xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
14 <mime:mime-type type="application/postscript"/>
fail-08.xbel 7 xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
fail-09.xbel 7 xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
  /external/chromium/base/
mime_util.h 15 // Gets the mime type for a file based on its filename. The file path does not
18 // If the mime type is unknown, this will return application/octet-stream.
21 // Get the mime type for a byte vector.
31 // Gets the file name for an icon given the mime type and icon pixel size.
  /frameworks/av/media/libstagefright/timedtext/
TimedTextSource.cpp 37 const char *mime; local
38 CHECK(mediaSource->getFormat()->findCString(kKeyMIMEType, &mime));
39 if (strcasecmp(mime, MEDIA_MIMETYPE_TEXT_3GPP) == 0) {
42 ALOGE("Unsupported mime type for subtitle. : %s", mime);
  /external/icu4c/tools/
icu-svnprops-check.py 60 *.txt = svn:mime-type=text/plain;svn:eol-style=native
61 *.java = svn:eol-style=native;svn:mime-type=text/plain;;charset=utf-8
63 *.html = svn:eol-style=native;svn:mime-type=text/html
64 *.htm = svn:eol-style=native;svn:mime-type=text/html
70 *.png = svn:mime-type=image/png
71 *.jpeg = svn:mime-type=image/jpeg
72 *.jpg = svn:mime-type=image/jpeg
73 *.bin = svn:mime-type=application/octet-stream
74 *.brk = svn:mime-type=application/octet-stream
75 *.cnv = svn:mime-type=application/octet-strea
    [all...]
  /external/chromium/net/base/
mime_util.h 17 // Get the mime type (if any) that is associated with the given file extension.
18 // Returns true if a corresponding mime type exists.
22 // Get the mime type (if any) that is associated with the given file. Returns
23 // true if a corresponding mime type exists.
26 // Get the preferred extension (if any) associated with the given mime type.
32 // Check to see if a particular MIME type is in our list.
38 // Get whether this mime type should be displayed in view-source mode.
45 // Returns true if this the mime_type_pattern matches a given mime-type.
46 // Checks for absolute matching and wildcards. mime-types should be in
63 // Check to see if a particular MIME type is in our list which only supports
    [all...]
platform_mime_util.h 23 // Get the mime type (if any) that is associated with the file extension.
24 // Returns true if a corresponding mime type exists.
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
MediaMimeTest.java 35 * System tests for the handling of mime type in the media framework.
71 // AUDIO mime type resolution tests.
97 // Checks the activity resolver handling of mime types is case sensitive.
105 // resolving mime types. Trailing whitespaces seems to be non
114 // @return a ResolveInfo instance for the mime type or null if the type is
116 private ResolveInfo resolveMime(String mime) {
120 viewIntent.setDataAndType(uri, mime);
125 // Helper method to check the media playback activity handles the given mime type.
126 // @param mime type to test for
127 private void assertMediaPlaybackActivityHandles(String mime) throws Exception
    [all...]
  /external/bluetooth/glib/gio/xdgmime/
xdgmime.h 2 /* xdgmime.h: XDG Mime Spec mime resolver. Based on version 0.11 of the spec.
103 const char **xdg_mime_get_mime_parents (const char *mime);
104 char ** xdg_mime_list_mime_parents (const char *mime);
105 const char *xdg_mime_unalias_mime_type (const char *mime);
106 const char *xdg_mime_get_icon (const char *mime);
107 const char *xdg_mime_get_generic_icon (const char *mime);
119 int _xdg_mime_mime_type_subclass (const char *mime,
121 const char *_xdg_mime_unalias_mime_type (const char *mime);
xdgmimeparent.c 52 char *mime; member in struct:XdgMimeParents
90 free (list->parents[i].mime);
100 return strcmp (((XdgMimeParents *)v1)->mime, ((XdgMimeParents *)v2)->mime);
105 const char *mime)
112 key.mime = (char *)mime;
156 if (strcmp (list->parents[i].mime, line) == 0)
171 list->parents[list->n_mimes].mime = strdup (line);
214 printf ("%s %s\n", list->parents[i].mime, *p)
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
ExtractEditText.java 30 private InputMethodService mIME;
46 mIME = ime;
84 if (mSettingExtractedText == 0 && mIME != null && selStart >= 0 && selEnd >= 0) {
85 mIME.onExtractedSelectionChanged(selStart, selEnd);
94 if (!super.performClick() && mIME != null) {
95 mIME.onExtractedTextClicked();
102 if (mIME != null && mIME.onExtractTextContextMenuItem(id)) {
158 if (mIME != null) {
159 mIME.onViewClicked(false)
    [all...]
  /external/webkit/Source/WebCore/plugins/android/
PluginDataAndroid.cpp 52 MimeClassInfo mime; local
53 mime.type = it->first;
54 mime.desc = it->second;
55 mime.extensions = package->mimeToExtensions().get(mime.type);
56 info.mimes.append(mime);
  /external/webkit/Source/WebCore/plugins/gtk/
PluginDataGtk.cpp 46 MimeClassInfo mime; local
48 mime.type = it->first;
49 mime.desc = it->second;
50 mime.extensions = package->mimeToExtensions().get(mime.type);
52 info.mimes.append(mime);
  /external/webkit/Source/WebCore/plugins/wx/
PluginDataWx.cpp 52 MimeClassInfo mime; local
54 mime.type = it->first;
55 mime.desc = it->second;
56 mime.extensions = package->mimeToExtensions().get(mime.type);
58 info.mimes.append(mime);
  /frameworks/base/core/java/android/webkit/
WebResourceResponse.java 35 * Constructs a resource response with the given MIME type, encoding, and
40 * @param mimeType the resource response's MIME type, for example text/html
52 * Sets the resource response's MIME type, for example text/html.
54 * @param mimeType the resource response's MIME type
61 * Gets the resource response's MIME type.
63 * @return the resource response's MIME type
  /packages/apps/Email/src/org/apache/james/mime4j/field/
ContentTypeField.java 47 * The prefix of all <code>multipart</code> MIME types.
51 * The <code>multipart/digest</code> MIME type.
55 * The <code>text/plain</code> MIME type.
59 * The <code>message/rfc822</code> MIME type.
91 * Gets the MIME type defined in this Content-Type field.
93 * @return the MIME type or an empty string if not set.
100 * Gets the MIME type defined in the child's
101 * Content-Type field or derives a MIME type from the parent
102 * if child is <code>null</code> or hasn't got a MIME type value set.
103 * If child's MIME type is multipart but no boundary
    [all...]
  /frameworks/av/drm/common/
DrmEngineBase.cpp 124 int fd, off64_t offset, off64_t length, const char* mime) {
126 if (!mime || mime[0] == '\0') {
130 return onOpenDecryptSession(uniqueId, decryptHandle, fd, offset, length, mime);
135 const char* uri, const char* mime) {
136 if (!mime || mime[0] == '\0') {
139 return onOpenDecryptSession(uniqueId, decryptHandle, uri, mime);
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebplugin.h 39 * @name: the name of the MIME type.
40 * @description: the description of the MIME type.
42 * associated with this MIME type.
44 * A structure representing one of the MIME types associated with a
  /external/webkit/Source/WebCore/plugins/symbian/
PluginPackageSymbian.cpp 51 Vector<String> mime; local
52 types[i].split(UChar(';'), true, mime); // <MIME1>;<ext1,ext2,ext3,...>;<Description>
53 if (mime.size() > 0) {
55 if (mime.size() > 1)
56 mime[1].split(UChar(','), false, exts); // <ext1,ext2,ext3,...>
58 m_mimeToExtensions.add(mime[0], exts); // <MIME>,<ext1,ext2,ext3>
59 determineQuirks(mime[0]);
60 if (mime.size() > 2)
61 m_mimeToDescriptions.add(mime[0], mime[2]); // <MIME>,<Description
    [all...]
  /frameworks/base/drm/java/android/drm/
DrmSupportInfo.java 24 * such as the MIME type and file suffix the DRM plug-in can handle.
36 * Adds the specified MIME type to the list of MIME types this DRM plug-in supports.
38 * @param mimeType MIME type that can be handles by this DRM plug-in.
68 * Retrieves an iterator object that you can use to iterate over the MIME types that
138 * are considered being equal if they support exactly the same set of mime
155 * Determines whether a given MIME type is supported.
157 * @param mimeType MIME type.
158 * @return True if Mime type is supported; false if MIME type is not supported
    [all...]
  /external/icu4c/test/cintltst/
stdnmtst.c 99 if (dotestname("ibm-1208", "MIME", "UTF-8") &&
100 /*dotestname("cp1252", "MIME", "windows-1252") &&*/
101 dotestname("ascii", "MIME", "US-ASCII") &&
102 dotestname("csiso2022jp2", "MIME", "ISO-2022-JP-2") &&
106 dotestname("crazy", "MIME", NULL) &&
108 dotestname("LMBCS-1", "MIME", NULL))
110 log_verbose("PASS: getting IANA and MIME standard names works\n");
146 dotestconv("UTF-8", "MIME", "UTF-8") && /* default name */
149 dotestconv("ibm-5305", "MIME", NULL) && /* mapping does not exist */
150 dotestconv("ascii", "MIME", NULL) && /* mapping does not exist *
    [all...]

Completed in 1045 milliseconds

12 3 4 5 6 7 8 91011>>