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

1 2 3 4

  /external/webkit/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;
WebResource.mm 118 - (id)initWithData:(NSData *)data URL:(NSURL *)URL MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName frameName:(NSString *)frameName
120 return [self _initWithData:data URL:URL MIMEType:MIMEType textEncodingName:textEncodingName frameName:frameName response:nil copyData:YES];
133 NSString *mimeType = nil, *textEncoding = nil, *frameName = nil;
145 mimeType = object;
160 _private = [[WebResourcePrivate alloc] initWithCoreResource:ArchiveResource::create(SharedBuffer::wrapNSData(data), url, mimeType, textEncoding, frameName, response)];
171 NSString *mimeType = nil, *textEncoding = nil, *frameName = nil;
178 mimeType = resource->mimeType();
    [all...]
WebViewInternal.h 116 + (BOOL)_viewClass:(Class *)vClass andRepresentationClass:(Class *)rClass forMIMEType:(NSString *)MIMEType allowingPlugins:(BOOL)allowPlugins;
117 - (BOOL)_viewClass:(Class *)vClass andRepresentationClass:(Class *)rClass forMIMEType:(NSString *)MIMEType;
118 + (BOOL)_canShowMIMEType:(NSString *)MIMEType allowingPlugins:(BOOL)allowPlugins;
119 - (BOOL)_canShowMIMEType:(NSString *)MIMEType;
139 - (WebBasePluginPackage *)_pluginForMIMEType:(NSString *)MIMEType;
WebDataSource.mm 143 + (Class)_representationClassForMIMEType:(NSString *)MIMEType allowingPlugins:(BOOL)allowPlugins
146 return [WebView _viewClass:nil andRepresentationClass:&repClass forMIMEType:MIMEType allowingPlugins:allowPlugins] ? repClass : nil;
192 return [[self response] MIMEType];
281 NSString *MIMEType = [mainResource MIMEType];
282 if ([WebView canShowMIMETypeAsHTML:MIMEType]) {
291 } else if (MIMETypeRegistry::isSupportedImageMIMEType(MIMEType)) {
341 NSString *MIMEType = [self _responseMIMEType];
342 return [WebView canShowMIMETypeAsHTML:MIMEType];
  /external/webkit/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/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);
99 String MIMEType = MIMETypeRegistry::getMIMETypeForPath(filenames[0]);
100 String iconName = lookupIconName(MIMEType);
  /external/webkit/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/WebCore/dom/
DOMImplementation.h 59 static PassRefPtr<Document> createDocument(const String& MIMEType, Frame*, bool inViewSourceMode);
63 static bool isXMLMIMEType(const String& MIMEType);
64 static bool isTextMIMEType(const String& MIMEType);
  /external/webkit/WebKit/mac/Plugins/
WebPluginDatabase.mm 147 - (WebBasePluginPackage *)pluginForMIMEType:(NSString *)MIMEType
149 return [self pluginForKey:[MIMEType lowercaseString]
161 NSString *MIMEType = WKGetMIMETypeForExtension(extension);
162 if ([MIMEType length] > 0)
163 plugin = [self pluginForMIMEType:MIMEType];
283 NSString *MIMEType;
284 while ((MIMEType = [MIMEEnumerator nextObject]) != nil) {
285 [registeredMIMETypes addObject:MIMEType];
287 if ([WebView canShowMIMETypeAsHTML:MIMEType])
290 plugin = [self pluginForMIMEType:MIMEType];
    [all...]
WebPluginDatabase.h 48 - (WebBasePluginPackage *)pluginForMIMEType:(NSString *)mimeType;
51 - (BOOL)isMIMETypeRegistered:(NSString *)MIMEType;
WebBasePluginPackage.h 89 - (NSString *)descriptionForMIMEType:(NSString *)MIMEType;
91 - (NSArray *)extensionsForMIMEType:(NSString *)MIMEType;
  /external/webkit/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/WebCore/loader/
PolicyChecker.h 55 void checkContentPolicy(const String& MIMEType, ContentPolicyDecisionFunction, void* argument);
  /external/webkit/WebCore/platform/network/mac/
ResourceResponseMac.mm 55 const_cast<ResourceResponse*>(this)->m_nsResponse.adoptNS([[NSURLResponse alloc] initWithURL:m_url MIMEType:m_mimeType expectedContentLength:expectedContentLength textEncodingName:m_textEncodingName]);
72 m_mimeType = [m_nsResponse.get() MIMEType];
  /external/webkit/WebKit/mac/Plugins/Hosted/
WebHostedNetscapePluginView.h 55 MIMEType:(NSString *)MIME
  /external/webkit/WebKit/win/
WebResource.h 44 WebResource(IStream* data, const WebCore::KURL& url, const WebCore::String& mimeType, const WebCore::String& textEncodingName, const WebCore::String& frameName);
57 /* [in] */ BSTR mimeType,
67 virtual HRESULT STDMETHODCALLTYPE MIMEType(
WebURLResponse.h 56 /* [in] */ BSTR mimeType,
60 virtual HRESULT STDMETHODCALLTYPE MIMEType(

Completed in 183 milliseconds

1 2 3 4