Searched refs:mimeType (Results 226 - 250 of 279) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/graphics/wince/
H A DImageBufferWinCE.cpp251 String ImageBuffer::toDataURL(const String& mimeType, const double*) const argument
/external/webkit/Source/WebCore/platform/mac/
H A DWebCoreSystemInterface.h274 extern void (*wkSetCFURLResponseMIMEType)(CFURLResponseRef, CFStringRef mimeType);
/external/webkit/Source/WebKit/chromium/src/
H A DFrameLoaderClientImpl.h201 const WebCore::KURL&, const WTF::String& mimeType, bool shouldPreferPlugInsForImages);
H A DWebFrameImpl.h126 const WebData&, const WebString& mimeType, const WebString& textEncoding,
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFrameLoaderClientGtk.h129 virtual WebCore::ObjectContentType objectContentType(const WebCore::KURL&, const WTF::String& mimeType, bool shouldPreferPlugInsForImages);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebframe.cpp976 Sets the content of this frame to the specified content \a data. If the \a mimeType argument
988 void QWebFrame::setContent(const QByteArray &data, const QString &mimeType, const QUrl &baseUrl) argument
995 if (mimeType.isEmpty())
998 actualMimeType = extractMIMETypeFromMediaType(mimeType);
999 encoding = extractCharsetFromMediaType(mimeType);
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebView.idl163 HRESULT canShowMIMEType([in] BSTR mimeType, [out, retval] BOOL* canShow);
172 HRESULT canShowMIMETypeAsHTML([in] BSTR mimeType, [out, retval] BOOL* canShow);
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DFrameLoaderClientWinCE.h124 virtual WebCore::ObjectContentType objectContentType(const WebCore::KURL&, const WTF::String& mimeType, bool shouldPreferPlugInsForImages);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebFrameLoaderClient.h194 virtual WebCore::ObjectContentType objectContentType(const WebCore::KURL&, const String& mimeType, bool shouldPreferPlugInsForImages);
216 virtual bool shouldUsePluginDocument(const String& /*mimeType*/) const;
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebViewHost.cpp1083 WebString mimeType = response.mimeType(); local
1087 mimeType.isEmpty() ? "application/octet-stream" : mimeType.utf8().data());
/external/webkit/Tools/DumpRenderTree/win/
H A DDumpRenderTree.cpp713 BSTR mimeType; local
714 if (SUCCEEDED(response->MIMEType(&mimeType)) && !_tcscmp(mimeType, TEXT("text/plain"))) {
718 SysFreeString(mimeType);
/external/webkit/Source/WebCore/inspector/front-end/
H A DSourceFrame.js306 _initializeTextViewer: function(mimeType, content)
308 this._textViewer.mimeType = mimeType;
/external/webkit/Source/WebKit/qt/declarative/
H A Dqdeclarativewebview.cpp850 void QDeclarativeWebView::setContent(const QByteArray& data, const QString& mimeType, const QUrl& baseUrl) argument
855 page()->mainFrame()->setContent(data, mimeType, qmlContext(this)->resolvedUrl(baseUrl));
859 d->pendingString = mimeType;
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.cpp523 bool WebPageProxy::canShowMIMEType(const String& mimeType) const
525 if (MIMETypeRegistry::isSupportedNonImageMIMEType(mimeType))
528 if (MIMETypeRegistry::isSupportedImageMIMEType(mimeType))
531 if (mimeType.startsWith("text/", false))
532 return !MIMETypeRegistry::isUnsupportedTextMIMEType(mimeType);
534 String newMimeType = mimeType;
1533 void WebPageProxy::didCommitLoadForFrame(uint64_t frameID, const String& mimeType, bool frameHasCustomRepresentation, const PlatformCertificateInfo& certificateInfo, CoreIPC::ArgumentDecoder* arguments) argument
1550 frame->didCommitLoad(mimeType, certificateInfo);
1954 void WebPageProxy::missingPluginButtonClicked(const String& mimeType, const String& url, const String& pluginsPageURL) argument
1956 m_uiClient.missingPluginButtonClicked(this, mimeType, ur
3017 saveDataToFileInDownloadsFolder(const String& suggestedFilename, const String& mimeType, const String& originatingURLString, WebData* data) argument
[all...]
/external/webkit/Source/WebCore/loader/
H A DFrameLoader.cpp980 SubstituteData substituteData(mainResource->data(), mainResource->mimeType(), mainResource->textEncoding(), KURL());
995 String mimeType = mimeTypeIn; local
1000 if (mimeType.isEmpty())
1001 mimeType = MIMETypeRegistry::getMIMETypeForExtension(extension);
1004 if (mimeType.isEmpty())
1005 mimeType = PluginDatabase::installedPlugins()->MIMETypeForExtension(extension);
1008 if (mimeType.isEmpty())
1012 bool plugInSupportsMIMEType = PluginDatabase::installedPlugins()->isMIMETypeRegistered(mimeType);
1017 if (MIMETypeRegistry::isSupportedImageMIMEType(mimeType))
1023 if (MIMETypeRegistry::isSupportedNonImageMIMEType(mimeType))
[all...]
H A DFrameLoader.h328 static ObjectContentType defaultObjectContentType(const KURL&, const String& mimeType, bool shouldPreferPlugInsForImages);
/external/webkit/Source/WebKit/qt/tests/qwebpage/
H A Dtst_qwebpage.cpp2693 const char* mimeType; member in struct:ImageExtensionMap
2733 return QLatin1String(e->mimeType);
2751 const QString mimeType = getMimeTypeForExtension(imageType); local
2752 if (!mimeType.isEmpty())
2753 contentTypes << mimeType; local
2759 Q_FOREACH(const QString& mimeType, contentTypes)
2760 QVERIFY2(supportedContentTypes.contains(mimeType), QString("'%1' is not a supported content type!").arg(mimeType).toLatin1());
2762 Q_FOREACH(const QString& mimeType, contentTypes)
2763 QVERIFY2(m_page->supportsContentType(mimeType), QStrin
[all...]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebFrame.mm845 String mimeType = frame->document()->loader()->writer()->mimeType();
848 if (WebCore::DOMImplementation::isTextMIMEType(mimeType) ||
849 Image::supportsType(mimeType) ||
850 (pluginData && pluginData->supportsMimeType(mimeType)))
/external/webkit/Source/WebKit/android/jni/
H A DWebCoreFrameBridge.cpp1286 jstring mimeType, jstring encoding, jstring failUrl)
1303 jstringToWtfString(env, mimeType), jstringToWtfString(env, encoding),
1363 String mimeType = pFrame->loader()->documentLoader()->mainResource()->mimeType(); local
1364 if ((mimeType != "text/html") && (mimeType != "application/xhtml+xml"))
1285 LoadData(JNIEnv *env, jobject obj, jstring baseUrl, jstring data, jstring mimeType, jstring encoding, jstring failUrl) argument
/external/webkit/Source/WebKit/win/
H A DWebView.cpp2438 /* [in] */ BSTR mimeType,
2441 String mimeTypeStr(mimeType, SysStringLen(mimeType));
2455 /* [in] */ BSTR /*mimeType*/,
4832 /* [retval][out] */ BSTR* mimeType)
4834 if (!mimeType)
4839 *mimeType = BString(MIMETypeRegistry::getMIMETypeForExtension(extensionStr)).release();
5887 HRESULT STDMETHODCALLTYPE WebView::registerEmbeddedViewMIMEType(BSTR mimeType)
5889 if (!mimeType)
5895 m_embeddedViewMIMETypes->add(String(mimeType,
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ecf.filetransfer_4.0.0.v20100529-0735.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/webkit/Source/WebCore/html/
H A DHTMLObjectElement.cpp379 m_serviceType = m_imageLoader->image()->response().mimeType();
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCacheHost.cpp88 resource->response().mimeType(),
/external/webkit/Source/WebCore/plugins/
H A DPluginStream.cpp137 CString mimeTypeStr = m_resourceResponse.mimeType().utf8();
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebFrameLoaderClient.h219 virtual WebCore::ObjectContentType objectContentType(const WebCore::KURL&, const WTF::String& mimeType, bool shouldPreferPlugInsForImages);

Completed in 701 milliseconds

1234567891011>>