HomeSort by relevance Sort by last modified time
    Searched refs:mimeType (Results 51 - 75 of 558) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebresourceprivate.h 35 gchar* mimeType;
webkitwebplugin.cpp 50 static void freeMIMEType(WebKitWebPluginMIMEType* mimeType)
52 if (mimeType->name)
53 g_free(mimeType->name);
54 if (mimeType->description)
55 g_free(mimeType->description);
56 if (mimeType->extensions)
57 g_strfreev(mimeType->extensions);
58 g_slice_free(WebKitWebPluginMIMEType, mimeType);
239 WebKitWebPluginMIMEType* mimeType = g_slice_new0(WebKitWebPluginMIMEType);
240 mimeType->name = g_strdup(it->first.utf8().data())
    [all...]
webkitwebplugindatabase.cpp 115 * @mimeType: a mime type
117 * Returns the #WebKitWebPlugin that is handling @mimeType in the
124 WebKitWebPlugin* webkit_web_plugin_database_get_plugin_for_mimetype(WebKitWebPluginDatabase* database, const char* mimeType)
127 g_return_val_if_fail(mimeType, 0);
129 return kitNew(database->priv->coreDatabase->pluginForMIMEType(mimeType));
  /external/webkit/Tools/DumpRenderTree/qt/
testplugin.h 39 virtual QObject *create(const QString &mimeType,
  /frameworks/base/core/java/android/webkit/
WebResourceResponse.java 54 * @param mimeType The mime type of the data (i.e. text/html).
59 public WebResourceResponse(String mimeType, String encoding,
61 mMimeType = mimeType;
68 * @param mimeType
70 public void setMimeType(String mimeType) {
71 mMimeType = mimeType;
KeyStoreHandler.java 36 public KeyStoreHandler(String mimeType) {
37 mMimeType = mimeType;
  /frameworks/base/drm/java/android/drm/
DrmInfo.java 46 * @param mimeType The MIME type.
48 public DrmInfo(int infoType, byte[] data, String mimeType) {
50 mMimeType = mimeType;
59 * @param mimeType The MIME type.
61 public DrmInfo(int infoType, String path, String mimeType) {
63 mMimeType = mimeType;
  /frameworks/base/media/java/android/media/
MediaFile.java 115 public final String mimeType;
117 MediaFileType(int fileType, String mimeType) {
119 this.mimeType = mimeType;
137 static void addFileType(String extension, int fileType, String mimeType) {
138 sFileTypeMap.put(extension, new MediaFileType(fileType, mimeType));
139 sMimeTypeMap.put(mimeType, Integer.valueOf(fileType));
142 static void addFileType(String extension, int fileType, String mimeType, int mtpFormatCode) {
143 addFileType(extension, fileType, mimeType);
145 sMimeTypeToFormatMap.put(mimeType, Integer.valueOf(mtpFormatCode))
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
Wap230WspContentTypeTest.java 228 String mimeType = unit.getValueString();
230 assertEquals(Wap230WspContentTypeTest.WELL_KNOWN_SHORT_MIME_TYPES.get(value), mimeType);
247 String mimeType = unit.getValueString();
249 assertEquals(Wap230WspContentTypeTest.WELL_KNOWN_SHORT_MIME_TYPES.get(value), mimeType);
272 String mimeType = unit.getValueString();
273 assertEquals(testType, mimeType);
289 String mimeType = unit.getValueString();
290 assertEquals(testType, mimeType);
304 String mimeType = unit.getValueString();
305 assertEquals(STRING_MIME_TYPE_ROLLOVER_CERTIFICATE, mimeType);
    [all...]
  /libcore/luni/src/main/java/libcore/net/
MimeUtils.java 357 private static void add(String mimeType, String extension) {
366 if (!mimeTypeToExtensionMap.containsKey(mimeType)) {
367 mimeTypeToExtensionMap.put(mimeType, extension);
369 extensionToMimeTypeMap.put(extension, mimeType);
417 String mimeType = (String) entry.getValue();
418 add(mimeType, extension);
432 * @param mimeType A MIME type (i.e. text/plain)
433 * @return True iff there is a mimeType entry in the map.
435 public static boolean hasMimeType(String mimeType) {
436 if (mimeType == null || mimeType.isEmpty())
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailProviderHelper.java 110 public void setVoicemailContent(Uri voicemailUri, InputStream inputStream, String mimeType)
119 public void setVoicemailContent(Uri voicemailUri, byte[] inputBytes, String mimeType)
  /external/webkit/Source/WebCore/platform/haiku/
MIMETypeRegistryHaiku.cpp 33 #include <MimeType.h>
41 const char* mimeType;
75 return extMap->mimeType;
  /external/webkit/Source/WebCore/platform/network/soup/
ResourceResponse.h 43 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
44 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
Plugin.cpp 40 encoder->encode(mimeType);
56 if (!decoder->decode(parameters.mimeType))
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ContentValuesVerifierElem.java 35 public ContentValuesBuilder addExpected(String mimeType) {
37 contentValues.put(Data.MIMETYPE, mimeType);
  /packages/apps/Launcher2/src/com/android/launcher2/
PendingAddItemInfo.java 41 String mimeType;
52 mimeType = dataMimeType;
  /external/webkit/Source/WebCore/loader/
CrossOriginAccessControl.cpp 51 String mimeType = extractMIMETypeFromMediaType(value);
52 return equalIgnoringCase(mimeType, "application/x-www-form-urlencoded")
53 || equalIgnoringCase(mimeType, "multipart/form-data")
54 || equalIgnoringCase(mimeType, "text/plain");
  /external/webkit/Source/WebCore/loader/cache/
CachedCSSStyleSheet.cpp 142 String mimeType = extractMIMETypeFromMediaType(response().httpHeaderField("Content-Type"));
143 bool typeOK = mimeType.isEmpty() || equalIgnoringCase(mimeType, "text/css") || equalIgnoringCase(mimeType, "application/x-unknown-content-type");
  /external/webkit/Source/WebCore/plugins/
PluginDatabase.h 68 bool isMIMETypeRegistered(const String& mimeType);
74 PluginPackage* findPlugin(const KURL&, String& mimeType);
75 PluginPackage* pluginForMIMEType(const String& mimeType);
76 void setPreferredPluginForMIMEType(const String& mimeType, PluginPackage* plugin);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
UrlInterceptResponse.h 47 const std::string& mimeType() const {
  /packages/apps/Gallery/src/com/android/camera/gallery/
DrmImageList.java 62 long miniThumbMagic, String mimeType, long dateTaken,
65 mimeType, dateTaken, title, rotation);
100 String mimeType = cursor.getString(INDEX_MIME_TYPE);
102 contentUri(id), dataPath, 0, mimeType, 0, "DrmImage-" + id,
  /external/webkit/Source/WebCore/html/
HTMLViewSourceDocument.h 38 static PassRefPtr<HTMLViewSourceDocument> create(Frame* frame, const KURL& url, const String& mimeType)
40 return adoptRef(new HTMLViewSourceDocument(frame, url, mimeType));
46 HTMLViewSourceDocument(Frame*, const KURL&, const String& mimeType);
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageSourceCGWin.cpp 37 String mimeType;
43 mimeType = "image/" + type.substring(dotLocation + 1);
44 return mimeType;
  /external/webkit/Source/WebKit/qt/Api/
qwebplugindatabase_p.h 46 typedef QWebPluginFactory::MimeType MimeType;
50 QList<MimeType> mimeTypes() const;
51 bool supportsMimeType(const QString& mimeType) const;
67 mutable QList<MimeType> m_mimeTypes;
88 QWebPluginInfo pluginForMimeType(const QString& mimeType);
89 void setPreferredPluginForMimeType(const QString& mimeType, const QWebPluginInfo& plugin);
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginInfoStore.h 66 // plug-in type. In that case, mimeType will be filled in with the right MIME type.
67 Plugin findPlugin(String& mimeType, const WebCore::KURL& url);
74 Plugin findPluginForMIMEType(const String& mimeType);
75 Plugin findPluginForExtension(const String& extension, String& mimeType);

Completed in 816 milliseconds

1 23 4 5 6 7 8 91011>>