HomeSort by relevance Sort by last modified time
    Searched defs:mimeType (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageSourceCGWin.cpp 37 String mimeType;
43 mimeType = "image/" + type.substring(dotLocation + 1);
44 return mimeType;
  /external/webkit/Tools/DumpRenderTree/qt/
testplugin.cpp 45 MimeType mimeType;
46 mimeType.name = "testtype";
47 mimeType.fileExtensions.append("testsuffixes");
48 plugin.mimeTypes.append(mimeType);
52 mimeType.name = "testtype2";
53 mimeType.fileExtensions.append("testsuffixes2");
54 mimeType.fileExtensions.append("testsuffixes3");
55 plugin.mimeTypes.append(mimeType);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
WebView1.java 37 final String mimeType = "text/html";
42 wv.loadData("<a href='x'>Hello World! - 1</a>", mimeType, null);
45 wv.loadData("<a href='x'>Hello World! - 2</a>", mimeType, null);
48 wv.loadData("<a href='x'>Hello World! - 3</a>", mimeType, null);
51 wv.loadData("<a href='x'>Hello World! - 4</a>", mimeType, null);
54 wv.loadData("<a href='x'>Hello World! - 5</a>", mimeType, null);
57 wv.loadData("<a href='x'>Hello World! - 6</a>", mimeType, null);
60 wv.loadData("<a href='x'>Hello World! - 7</a>", mimeType, null);
63 wv.loadData("<a href='x'>Hello World! - 8</a>", mimeType, null);
66 wv.loadData("<a href='x'>Hello World! - 9</a>", mimeType, null)
    [all...]
  /external/webkit/Source/WebCore/platform/brew/
MIMETypeRegistryBrew.cpp 40 const char* mimeType;
75 return e->mimeType;
  /external/webkit/Source/WebCore/platform/efl/
MIMETypeRegistryEfl.cpp 41 const char* mimeType;
84 return e->mimeType;
  /external/webkit/Source/WebCore/platform/gtk/
MIMETypeRegistryGtk.cpp 38 const char* mimeType;
74 return e->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/qt/
QtMIMETypeSniffer.h 32 QString mimeType() const { return m_mimeType; }
  /external/webkit/Source/WebCore/platform/qt/
MIMETypeRegistryQt.cpp 39 const char* mimeType;
83 return e->mimeType;
90 bool MIMETypeRegistry::isApplicationPluginMIMEType(const String& mimeType)
92 return mimeType.startsWith("application/x-qt-plugin", false)
93 || mimeType.startsWith("application/x-qt-styled-widget", false);
  /external/webkit/Source/WebCore/platform/wx/
MimeTypeRegistryWx.cpp 38 const char* mimeType;
71 return e->mimeType;
  /external/webkit/Source/WebKit/android/WebCoreSupport/
UrlInterceptResponse.h 47 const std::string& mimeType() const {
WebResponse.cpp 69 WebResponse::WebResponse(const string &url, const string &mimeType, long long expectedSize, const string &encoding, int httpStatusCode)
74 , m_mime(mimeType)
132 string mimeType = old_mime.length() ? old_mime : "text/html";
146 mimeType = std::string(mime.utf8().data(), mime.length());
149 return mimeType;
  /external/webkit/Source/WebKit/android/jni/
MIMETypeRegistry.cpp 54 jobject mimeType = env->CallStaticObjectMethod(mimeClass,
56 String result = android::jstringToWtfString(env, (jstring) mimeType);
59 env->DeleteLocalRef(mimeType);
  /external/webkit/Source/WebKit/chromium/public/
WebPluginParams.h 42 WebString mimeType;
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebresourceprivate.h 35 gchar* mimeType;
  /frameworks/base/drm/java/android/drm/
DrmInfoStatus.java 44 public final String mimeType;
62 mimeType = _mimeType;
  /libcore/luni/src/test/java/libcore/java/net/
OldFileNameMapTest.java 35 String mimeType = fileNameMap.getContentTypeFor("test." + files[i]);
37 files[i], mimeTypes[i], mimeType);
  /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");
DocumentWriter.h 67 const String& mimeType() const { return m_mimeType; }
SubstituteData.h 41 SubstituteData(PassRefPtr<SharedBuffer> content, const String& mimeType, const String& textEncoding, const KURL& failingURL, const KURL& responseURL = KURL())
43 , m_mimeType(mimeType)
53 const String& mimeType() const { return m_mimeType; }
  /external/webkit/Source/WebCore/loader/archive/
ArchiveResource.h 40 const String& mimeType, const String& textEncoding, const String& frameName,
43 const String& mimeType() const { return m_mimeType; }
51 ArchiveResource(PassRefPtr<SharedBuffer>, const KURL&, const String& mimeType, const String& textEncoding, const String& frameName, const ResourceResponse&);
  /external/webkit/Source/WebCore/platform/network/
DataURL.cpp 62 String mimeType = extractMIMETypeFromMediaType(mediaType);
66 response.setMimeType(mimeType);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
Plugin.h 61 String mimeType;
106 uint32_t lastModifiedTime, const String& mimeType, const String& headers) = 0;
119 uint32_t lastModifiedTime, const String& mimeType, const String& headers) = 0;
  /frameworks/base/include/drm/
DrmInfoStatus.h 61 String8 mimeType;
  /packages/apps/Launcher2/src/com/android/launcher2/
PendingAddItemInfo.java 41 String mimeType;
52 mimeType = dataMimeType;

Completed in 195 milliseconds

1 2 3 4 5 6 7