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

1 2 3

  /external/webkit/WebKit/mac/WebView/
WebResource.h 46 @method initWithData:URL:MIMEType:textEncodingName:frameName
51 @param textEncodingName The text encoding name of the resource (can be nil).
55 - (id)initWithData:(NSData *)data URL:(NSURL *)URL MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)textEncodingName frameName:(NSString *)frameName;
76 @method textEncodingName
79 - (NSString *)textEncodingName;
WebResourcePrivate.h 36 textEncodingName:(NSString *)textEncodingName
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];
248 - (NSString *)textEncodingName
252 return [[self _webkit_invokeOnMainThread] textEncodingName];
259 NSString *textEncodingName = _private->coreResource->textEncoding();
260 return textEncodingName;
337 textEncodingName:(NSString *)textEncodingName
    [all...]
WebDataSource.h 108 @method textEncodingName
112 - (NSString *)textEncodingName;
WebFrame.h 105 @method loadData:MIMEType:textEncodingName:baseURL:
111 - (void)loadData:(NSData *)data MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)encodingName baseURL:(NSURL *)URL;
  /external/webkit/WebCore/platform/network/android/
ResourceResponse.h 39 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
40 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename) { }
  /external/webkit/WebCore/platform/network/curl/
ResourceResponse.h 40 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
41 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename),
  /external/webkit/WebCore/platform/network/qt/
ResourceResponse.h 39 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
40 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
  /external/webkit/WebCore/platform/network/soup/
ResourceResponse.h 42 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
43 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
  /external/webkit/WebCore/platform/network/cf/
ResourceResponse.h 49 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
50 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
  /external/webkit/WebCore/platform/network/mac/
ResourceResponse.h 54 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
55 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
ResourceResponseMac.mm 55 const_cast<ResourceResponse*>(this)->m_nsResponse.adoptNS([[NSURLResponse alloc] initWithURL:m_url MIMEType:m_mimeType expectedContentLength:expectedContentLength textEncodingName:m_textEncodingName]);
74 m_textEncodingName = [m_nsResponse.get() textEncodingName];
  /external/webkit/WebKit/win/Interfaces/
IWebResource.idl 47 @method initWithData:URL:MIMEType:textEncodingName:frameName
52 @param textEncodingName The text encoding name of the resource (can be nil).
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);
81 @method textEncodingName
83 - (NSString *)textEncodingName;
85 HRESULT textEncodingName([out, retval] BSTR* encodingName);
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);
63 - (NSString *)textEncodingName
65 HRESULT textEncodingName([out, retval] BSTR* result);
  /external/webkit/WebKit/win/
WebResource.cpp 41 WebResource::WebResource(IStream* data, const WebCore::KURL& url, const WebCore::String& mimeType, const WebCore::String& textEncodingName, const WebCore::String& frameName)
46 , m_textEncodingName(textEncodingName)
63 WebResource* instance = new WebResource(memoryStream.get(), response.url(), response.mimeType(), response.textEncodingName(), String());
104 /* [in] */ BSTR textEncodingName,
110 m_textEncodingName = String(textEncodingName);
147 HRESULT STDMETHODCALLTYPE WebResource::textEncodingName(
WebResource.h 44 WebResource(IStream* data, const WebCore::KURL& url, const WebCore::String& mimeType, const WebCore::String& textEncodingName, const WebCore::String& frameName);
58 /* [in] */ BSTR textEncodingName,
70 virtual HRESULT STDMETHODCALLTYPE textEncodingName(
WebURLResponse.h 58 /* [in] */ BSTR textEncodingName);
66 virtual HRESULT STDMETHODCALLTYPE textEncodingName(
WebURLResponse.cpp 297 /* [in] */ BSTR textEncodingName)
299 m_response = ResourceResponse(MarshallingHelpers::BSTRToKURL(url), String(mimeType), expectedContentLength, String(textEncodingName), String());
331 HRESULT STDMETHODCALLTYPE WebURLResponse::textEncodingName(
337 BString textEncodingName(m_response.textEncodingName());
338 *result = textEncodingName.release();
339 if (!m_response.textEncodingName().isNull() && !*result)
  /external/webkit/WebCore/platform/network/chromium/
ResourceResponse.h 45 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
46 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
  /external/webkit/WebKit/gtk/webkit/
webkitwebdatasource.cpp 297 String textEncodingName = priv->loader->overrideEncoding();
299 if (!textEncodingName)
300 textEncodingName = priv->loader->response().textEncodingName();
302 CString encoding = textEncodingName.utf8();
  /external/webkit/WebCore/inspector/
InspectorResource.cpp 295 String textEncodingName;
296 RefPtr<SharedBuffer> buffer = resourceData(&textEncodingName);
300 TextEncoding encoding(textEncodingName);
306 PassRefPtr<SharedBuffer> InspectorResource::resourceData(String* textEncodingName) const
309 *textEncodingName = m_frame->document()->inputEncoding();
328 *textEncodingName = cachedResource->encoding();
  /external/webkit/WebCore/platform/network/
ResourceResponseBase.h 60 const String& textEncodingName() const;
109 ResourceResponseBase(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename);
  /external/webkit/WebCore/loader/appcache/
ApplicationCacheResource.cpp 65 m_estimatedSizeInStorage += response().textEncodingName().length() * sizeof(UChar);
  /external/webkit/WebKit/chromium/src/
WebURLResponse.cpp 116 WebString WebURLResponse::textEncodingName() const
118 return m_private->m_resourceResponse->textEncodingName();
121 void WebURLResponse::setTextEncodingName(const WebString& textEncodingName)
123 m_private->m_resourceResponse->setTextEncodingName(textEncodingName);
  /external/webkit/WebKitTools/WebKitLauncher/
WebKitLauncherURLProtocol.m 92 NSURLResponse *response = [[NSURLResponse alloc] initWithURL:[[self request] URL] MIMEType:@"text/javascript" expectedContentLength:0 textEncodingName:@"utf-8"];
105 NSURLResponse *response = [[NSURLResponse alloc] initWithURL:[[self request] URL] MIMEType:@"text/plain" expectedContentLength:0 textEncodingName:@"utf-8"];

Completed in 217 milliseconds

1 2 3