HomeSort by relevance Sort by last modified time
    Searched refs:MIMEType (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/webkit/Source/WebKit/mac/WebView/
WebResource.h 46 @method initWithData:URL:MIMEType:textEncodingName:frameName
50 @param MIMEType The MIME type of the resource.
55 - (id)initWithData:(NSData *)data URL:(NSURL *)URL MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName frameName:(NSString *)frameName;
70 @method MIMEType
73 - (NSString *)MIMEType;
WebFrameViewInternal.h 42 - (Class)_viewClassForMIMEType:(NSString *)MIMEType;
43 + (Class)_viewClassForMIMEType:(NSString *)MIMEType allowingPlugins:(BOOL)allowPlugins;
44 + (BOOL)_canShowMIMETypeAsHTML:(NSString *)MIMEType;
WebResourcePrivate.h 35 MIMEType:(NSString *)MIMEType
WebFrame.h 105 @method loadData:MIMEType:textEncodingName:baseURL:
107 @param MIMEType The MIME type of the data.
111 - (void)loadData:(NSData *)data MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)encodingName baseURL:(NSURL *)URL;
WebViewInternal.h 127 + (BOOL)_viewClass:(Class *)vClass andRepresentationClass:(Class *)rClass forMIMEType:(NSString *)MIMEType allowingPlugins:(BOOL)allowPlugins;
128 - (BOOL)_viewClass:(Class *)vClass andRepresentationClass:(Class *)rClass forMIMEType:(NSString *)MIMEType;
129 + (void)_registerPluginMIMEType:(NSString *)MIMEType;
130 + (void)_unregisterPluginMIMEType:(NSString *)MIMEType;
131 + (BOOL)_canShowMIMEType:(NSString *)MIMEType allowingPlugins:(BOOL)allowPlugins;
132 - (BOOL)_canShowMIMEType:(NSString *)MIMEType;
152 - (WebBasePluginPackage *)_pluginForMIMEType:(NSString *)MIMEType;
155 - (WebBasePluginPackage *)_videoProxyPluginForMIMEType:(NSString *)MIMEType;
WebResource.mm 120 - (id)initWithData:(NSData *)data URL:(NSURL *)URL MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName frameName:(NSString *)frameName
122 return [self _initWithData:data URL:URL MIMEType:MIMEType textEncodingName:textEncodingName frameName:frameName response:nil copyData:YES];
135 NSString *mimeType = nil, *textEncoding = nil, *frameName = nil;
147 mimeType = object;
162 _private = [[WebResourcePrivate alloc] initWithCoreResource:ArchiveResource::create(SharedBuffer::wrapNSData(data), url, mimeType, textEncoding, frameName, response)];
173 NSString *mimeType = nil, *textEncoding = nil, *frameName = nil;
180 mimeType = resource->mimeType();
    [all...]
WebDataSource.mm 146 + (Class)_representationClassForMIMEType:(NSString *)MIMEType allowingPlugins:(BOOL)allowPlugins
149 return [WebView _viewClass:nil andRepresentationClass:&repClass forMIMEType:MIMEType allowingPlugins:allowPlugins] ? repClass : nil;
195 return [[self response] MIMEType];
294 NSString *MIMEType = [mainResource MIMEType];
295 if ([WebView canShowMIMETypeAsHTML:MIMEType]) {
304 } else if (MIMETypeRegistry::isSupportedImageMIMEType(MIMEType)) {
354 NSString *MIMEType = [self _responseMIMEType];
355 return [WebView canShowMIMETypeAsHTML:MIMEType];
  /external/webkit/Source/WebCore/loader/mac/
LoaderNSURLExtras.mm 52 NSString *suggestedFilenameWithMIMEType(NSURL *url, NSString *MIMEType)
74 if (!MIMEType) {
80 if (([MIMEType isEqualToString:@"application/tar"] || [MIMEType isEqualToString:@"application/x-tar"])
88 if (![MIMEType isEqualToString:@"application/octet-stream"] && ![MIMEType isEqualToString:@"text/plain"]) {
89 Vector<String> extensions = MIMETypeRegistry::getExtensionsForMIMEType(MIMEType);
93 NSString *correctExtension = MIMETypeRegistry::getPreferredExtensionForMIMEType(MIMEType);
LoaderNSURLExtras.h 35 NSString *suggestedFilenameWithMIMEType(NSURL *url, NSString *MIMEType);
  /external/webkit/Source/WebCore/platform/graphics/gtk/
IconGtk.cpp 53 static String lookupIconName(String MIMEType)
69 int pos = MIMEType.find('/');
71 String media = MIMEType.substring(0, pos);
72 String subtype = MIMEType.substring(pos + 1);
100 String MIMEType = MIMETypeRegistry::getMIMETypeForPath(filenames[0]);
101 String iconName = lookupIconName(MIMEType);
  /external/webkit/Source/WebKit/mac/Misc/
WebKitErrorsPrivate.h 61 MIMEType:(NSString *)MIMEType;
WebNSDictionaryExtras.h 38 - (id)_webkit_objectForMIMEType:(NSString *)MIMEType;
WebNSDictionaryExtras.m 58 -(id)_webkit_objectForMIMEType:(NSString *)MIMEType
63 result = [self objectForKey:MIMEType];
68 slashRange = [MIMEType rangeOfString:@"/"];
73 return [self objectForKey:[MIMEType substringToIndex:slashRange.location + 1]];
WebKitErrors.m 108 MIMEType:(NSString *)MIMEType
131 if (MIMEType) {
132 [userInfo setObject:MIMEType forKey:WebKitErrorMIMETypeKey];
  /external/webkit/Source/WebCore/dom/
DOMImplementation.h 60 static PassRefPtr<Document> createDocument(const String& MIMEType, Frame*, const KURL&, bool inViewSourceMode);
62 static bool isXMLMIMEType(const String& MIMEType);
63 static bool isTextMIMEType(const String& MIMEType);
  /external/webkit/Source/WebKit/mac/Plugins/
WebPluginDatabase.mm 159 - (WebBasePluginPackage *)pluginForMIMEType:(NSString *)MIMEType
163 MIMEType = [MIMEType lowercaseString];
167 if ([plugin supportsMIMEType:MIMEType])
192 NSString *MIMEType = WKGetMIMETypeForExtension(extension);
193 if ([MIMEType length] > 0)
194 plugin = [self pluginForMIMEType:MIMEType];
317 NSString *MIMEType;
318 while ((MIMEType = [MIMEEnumerator nextObject]) != nil) {
319 [registeredMIMETypes addObject:MIMEType];
    [all...]
WebPluginDatabase.h 48 - (WebBasePluginPackage *)pluginForMIMEType:(NSString *)mimeType;
51 - (BOOL)isMIMETypeRegistered:(NSString *)MIMEType;
WebBasePluginPackage.h 83 - (BOOL)supportsMIMEType:(const WTF::String&)MIMEType;
  /external/webkit/Source/WebKit/win/Interfaces/
IWebResource.idl 47 @method initWithData:URL:MIMEType:textEncodingName:frameName
51 @param MIMEType The MIME type of the resource.
55 - (id)initWithData:(NSData *)data URL:(NSURL *)URL MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName frameName:(NSString *)frameName;
57 HRESULT initWithData([in] IStream* data, [in] BSTR url, [in] BSTR mimeType, [in] BSTR textEncodingName, [in] BSTR frameName);
74 @method MIMEType
76 - (NSString *)MIMEType;
78 HRESULT MIMEType([out, retval] BSTR* mime);
IWebURLResponse.idl 48 - (id)initWithURL:(NSURL *)URL MIMEType:(NSString *)MIMEType expectedContentLength:(int)length textEncodingName:(NSString *)name
50 HRESULT initWithURL([in] BSTR url, [in] BSTR mimeType, [in] int expectedContentLength, [in] BSTR textEncodingName);
53 - (NSString *)MIMEType
55 HRESULT MIMEType([out, retval] BSTR* result);
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
WebHostedNetscapePluginView.h 54 MIMEType:(NSString *)MIME
  /external/webkit/Tools/TestWebKitAPI/mac/
PlatformUtilitiesMac.mm 70 return adoptWK(WKStringCreateWithCFString((CFStringRef)[response.get() MIMEType]));
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceResponseMac.mm 65 const_cast<ResourceResponse*>(this)->m_nsResponse.adoptNS([[NSURLResponse alloc] initWithURL:m_url MIMEType:m_mimeType expectedContentLength:expectedContentLength textEncodingName:m_textEncodingName]);
85 m_mimeType = [m_nsResponse.get() MIMEType];
  /external/webkit/Source/WebKit/win/
WebResource.h 41 WebResource(IStream* data, const WebCore::KURL& url, const WTF::String& mimeType, const WTF::String& textEncodingName, const WTF::String& frameName);
54 /* [in] */ BSTR mimeType,
64 virtual HRESULT STDMETHODCALLTYPE MIMEType(
WebURLResponse.h 53 /* [in] */ BSTR mimeType,
57 virtual HRESULT STDMETHODCALLTYPE MIMEType(

Completed in 1455 milliseconds

1 2 3 4