Searched refs:MIMEType (Results 1 - 25 of 75) sorted by relevance

123

/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebResource.h46 @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;
H A DWebFrameViewInternal.h42 - (Class)_viewClassForMIMEType:(NSString *)MIMEType;
43 + (Class)_viewClassForMIMEType:(NSString *)MIMEType allowingPlugins:(BOOL)allowPlugins;
44 + (BOOL)_canShowMIMETypeAsHTML:(NSString *)MIMEType;
H A DWebResourcePrivate.h35 MIMEType:(NSString *)MIMEType
H A DWebFrame.h106 @method loadData:MIMEType:textEncodingName:baseURL:
108 @param MIMEType The MIME type of the data.
112 - (void)loadData:(NSData *)data MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)encodingName baseURL:(NSURL *)URL;
H A DWebViewInternal.h146 + (BOOL)_viewClass:(Class *)vClass andRepresentationClass:(Class *)rClass forMIMEType:(NSString *)MIMEType allowingPlugins:(BOOL)allowPlugins;
147 - (BOOL)_viewClass:(Class *)vClass andRepresentationClass:(Class *)rClass forMIMEType:(NSString *)MIMEType;
148 + (void)_registerPluginMIMEType:(NSString *)MIMEType;
149 + (void)_unregisterPluginMIMEType:(NSString *)MIMEType;
150 + (BOOL)_canShowMIMEType:(NSString *)MIMEType allowingPlugins:(BOOL)allowPlugins;
151 - (BOOL)_canShowMIMEType:(NSString *)MIMEType;
171 - (WebBasePluginPackage *)_pluginForMIMEType:(NSString *)MIMEType;
174 - (WebBasePluginPackage *)_videoProxyPluginForMIMEType:(NSString *)MIMEType;
H A DWebResource.mm120 - (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];
235 - (NSString *)MIMEType
239 return [[self _webkit_invokeOnMainThread] MIMEType];
338 MIMEType:(NSString *)MIMEType
346 return [[self _webkit_invokeOnMainThread] _initWithData:data URL:URL MIMEType:MIMEType textEncodingNam
[all...]
H A DWebDataSource.mm123 + (Class)_representationClassForMIMEType:(NSString *)MIMEType allowingPlugins:(BOOL)allowPlugins
126 return [WebView _viewClass:nil andRepresentationClass:&repClass forMIMEType:MIMEType allowingPlugins:allowPlugins] ? repClass : nil;
179 return [[self response] MIMEType];
268 NSString *MIMEType = [mainResource MIMEType];
269 if ([WebView canShowMIMETypeAsHTML:MIMEType]) {
278 } else if (MIMETypeRegistry::isSupportedImageMIMEType(MIMEType)) {
328 NSString *MIMEType = [self _responseMIMEType];
329 return [WebView canShowMIMETypeAsHTML:MIMEType];
/macosx-10.9.5/WebCore-7537.78.1/loader/mac/
H A DLoaderNSURLExtras.h36 NSString *suggestedFilenameWithMIMEType(NSURL *, const WTF::String& MIMEType);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebArchiveResource.cpp40 PassRefPtr<WebArchiveResource> WebArchiveResource::create(WebData* data, const String& URL, const String& MIMEType, const String& textEncoding) argument
42 return adoptRef(new WebArchiveResource(data, URL, MIMEType, textEncoding));
50 WebArchiveResource::WebArchiveResource(WebData* data, const String& URL, const String& MIMEType, const String& textEncoding) argument
51 : m_archiveResource(ArchiveResource::create(SharedBuffer::create(data->bytes(), data->size()), KURL(KURL(), URL), MIMEType, textEncoding, String()))
85 String WebArchiveResource::MIMEType() function in class:WebKit::WebArchiveResource
H A DWebArchiveResource.h50 static PassRefPtr<WebArchiveResource> create(WebData*, const String& URL, const String& MIMEType, const String& textEncoding);
55 String MIMEType();
61 WebArchiveResource(WebData*, const String& URL, const String& MIMEType, const String& textEncoding);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gtk/
H A DIconGtk.cpp55 static String lookupIconName(String MIMEType) argument
71 int pos = MIMEType.find('/');
73 String media = MIMEType.substring(0, pos);
74 String subtype = MIMEType.substring(pos + 1);
102 String MIMEType = MIMETypeRegistry::getMIMETypeForPath(filenames[0]);
103 String iconName = lookupIconName(MIMEType);
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebKitErrorsPrivate.h61 MIMEType:(NSString *)MIMEType;
H A DWebNSDictionaryExtras.h38 - (id)_webkit_objectForMIMEType:(NSString *)MIMEType;
H A DWebNSDictionaryExtras.m58 -(id)_webkit_objectForMIMEType:(NSString *)MIMEType
63 result = [self objectForKey:MIMEType];
68 slashRange = [MIMEType rangeOfString:@"/"];
73 return [self objectForKey:[MIMEType substringToIndex:slashRange.location + 1]];
H A DWebKitErrors.m108 MIMEType:(NSString *)MIMEType
127 if (MIMEType) {
128 [userInfo setObject:MIMEType forKey:WebKitErrorMIMETypeKey];
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DMIMETypeRegistryMac.mm62 bool MIMETypeRegistry::isApplicationPluginMIMEType(const String& MIMEType)
69 if (isPDFOrPostScriptMIMEType(MIMEType))
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/mac/
H A DWKBrowsingContextController.h66 - (void)loadData:(NSData *)data MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)encodingName baseURL:(NSURL *)baseURL;
67 - (void)loadData:(NSData *)data MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)encodingName baseURL:(NSURL *)baseURL userData:(id)userData;
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDOMImplementation.h68 static PassRefPtr<Document> createDocument(const String& MIMEType, Frame*, const KURL&, bool inViewSourceMode);
70 static bool isXMLMIMEType(const String& MIMEType);
71 static bool isTextMIMEType(const String& MIMEType);
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/
H A DWebPluginDatabase.mm141 - (WebBasePluginPackage *)pluginForMIMEType:(NSString *)MIMEType
145 MIMEType = [MIMEType lowercaseString];
149 if ([plugin supportsMIMEType:MIMEType])
174 NSString *MIMEType = WKGetMIMETypeForExtension(extension);
175 if ([MIMEType length] > 0)
176 plugin = [self pluginForMIMEType:MIMEType];
299 NSString *MIMEType;
300 while ((MIMEType = [MIMEEnumerator nextObject]) != nil) {
301 [registeredMIMETypes addObject:MIMEType];
[all...]
H A DWebPluginDatabase.h52 - (BOOL)isMIMETypeRegistered:(NSString *)MIMEType;
/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/mac/
H A DWKWebArchiveResource.h39 WK_EXPORT WKWebArchiveResourceRef WKWebArchiveResourceCreate(WKDataRef data, WKURLRef URL, WKStringRef MIMEType, WKStringRef textEncoding);
H A DWKWebArchiveResource.cpp59 return toCopiedAPI(toImpl(webArchiveResourceRef)->MIMEType());
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebResource.idl47 @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;
74 @method MIMEType
76 - (NSString *)MIMEType;
78 HRESULT MIMEType([out, retval] BSTR* mime);
H A DIWebURLResponse.idl48 - (id)initWithURL:(NSURL *)URL MIMEType:(NSString *)MIMEType expectedContentLength:(int)length textEncodingName:(NSString *)name
53 - (NSString *)MIMEType
55 HRESULT MIMEType([out, retval] BSTR* result);
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/Hosted/
H A DWebHostedNetscapePluginView.h55 MIMEType:(NSString *)MIME

Completed in 233 milliseconds

123