/external/webkit/Source/WebKit/mac/WebView/ |
WebFrame.h | 105 @method loadData:MIMEType:textEncodingName:baseURL: 111 - (void)loadData:(NSData *)data MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)encodingName baseURL:(NSURL *)URL;
|
WebDataSource.mm | 463 - (NSString *)textEncodingName 465 NSString *textEncodingName = _private->loader->overrideEncoding(); 466 if (!textEncodingName) 467 textEncodingName = [[self response] textEncodingName]; 468 return textEncodingName;
|
WebFrame.mm | [all...] |
/external/webkit/Tools/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"];
|
/external/webkit/Source/WebCore/inspector/ |
InspectorResourceAgent.cpp | 126 String textEncodingName; 127 RefPtr<SharedBuffer> buffer = InspectorResourceAgent::resourceData(frame, url, &textEncodingName); 130 TextEncoding encoding(textEncodingName); 141 String textEncodingName; 142 RefPtr<SharedBuffer> data = InspectorResourceAgent::resourceData(frame, url, &textEncodingName); 152 PassRefPtr<SharedBuffer> InspectorResourceAgent::resourceData(Frame* frame, const KURL& url, String* textEncodingName) 157 *textEncodingName = frame->document()->inputEncoding(); 180 *textEncodingName = cachedResource->encoding();
|
InspectorResourceAgent.h | 89 static PassRefPtr<SharedBuffer> resourceData(Frame*, const KURL&, String* textEncodingName);
|
/external/webkit/Source/WebCore/platform/network/cf/ |
ResourceResponseCFNet.cpp | 55 RetainPtr<CFStringRef> textEncodingName(AdoptCF, m_textEncodingName.createCFString()); 56 m_cfResponse.adoptCF(CFURLResponseCreate(0, url.get(), mimeType.get(), m_expectedContentLength, textEncodingName.get(), kCFURLCacheStorageAllowed));
|
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebDataSource.idl | 124 @method textEncodingName 127 - (NSString *)textEncodingName; 129 HRESULT textEncodingName([out, retval] BSTR* name);
|
IWebFrame.idl | 114 @method loadData:MIMEType:textEncodingName:baseURL: 119 - (void)loadData:(NSData *)data MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)encodingName baseURL:(NSURL *)URL; 121 HRESULT loadData([in] IStream* data, [in] BSTR mimeType, [in] BSTR textEncodingName, [in] BSTR url);
|
/external/webkit/Source/WebKit/win/ |
WebDataSource.h | 74 virtual HRESULT STDMETHODCALLTYPE textEncodingName(
|
WebDataSource.cpp | 227 HRESULT STDMETHODCALLTYPE WebDataSource::textEncodingName( 232 encoding = m_loader->response().textEncodingName();
|
WebFrame.h | 118 /* [in] */ BSTR textEncodingName, 388 void loadData(PassRefPtr<WebCore::SharedBuffer>, BSTR mimeType, BSTR textEncodingName, BSTR baseURL, BSTR failingURL);
|
WebFrame.cpp | 556 void WebFrame::loadData(PassRefPtr<WebCore::SharedBuffer> data, BSTR mimeType, BSTR textEncodingName, BSTR baseURL, BSTR failingURL) 562 String encodingString(textEncodingName, SysStringLen(textEncodingName)); 583 /* [in] */ BSTR textEncodingName, 600 loadData(sharedBuffer, mimeType, textEncodingName, url, 0); [all...] |
/external/webkit/Source/WebCore/platform/network/ |
ResourceResponseBase.cpp | 71 ResourceResponseBase::ResourceResponseBase(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename) 75 , m_textEncodingName(textEncodingName) 125 data->m_textEncodingName = textEncodingName().crossThreadString(); 190 const String& ResourceResponseBase::textEncodingName() const 576 if (a.textEncodingName() != b.textEncodingName())
|
/external/webkit/Source/WebCore/workers/ |
WorkerScriptLoader.cpp | 111 m_responseEncoding = response.textEncodingName();
|
/external/webkit/Source/WebKit/chromium/public/ |
WebURLResponse.h | 99 WEBKIT_API WebString textEncodingName() const;
|
/external/webkit/Source/WebKit/wx/WebKitSupport/ |
FrameLoaderClientWx.cpp | 439 loader->writer()->setEncoding(m_response.textEncodingName(), false); 622 loader->writer()->setEncoding(m_response.textEncodingName(), false); 747 loader->writer()->setEncoding(m_response.textEncodingName(), false);
|
/external/webkit/Source/WebCore/loader/cache/ |
CachedResourceRequest.cpp | 234 String encoding = response.textEncodingName();
|
/external/webkit/Source/WebCore/page/ |
EventSource.cpp | 188 const String& charset = response.textEncodingName();
|
/external/webkit/Source/WebCore/loader/ |
DocumentLoader.cpp | 317 encoding = response().textEncodingName(); 519 return ArchiveResource::create(mainResourceBuffer, r.url(), r.mimeType(), r.textEncodingName(), frame()->tree()->uniqueName());
|
/external/webkit/Source/WebCore/loader/appcache/ |
ApplicationCacheStorage.cpp | 623 "statusCode INTEGER NOT NULL, responseURL TEXT NOT NULL, mimeType TEXT, textEncodingName TEXT, headers TEXT, data INTEGER NOT NULL ON CONFLICT FAIL)"); 843 SQLiteStatement resourceStatement(m_database, "INSERT INTO CacheResources (url, statusCode, responseURL, headers, data, mimeType, textEncodingName) VALUES (?, ?, ?, ?, ?, ?, ?)"); 856 resourceStatement.bindText(7, resource->response().textEncodingName()); [all...] |
ApplicationCacheHost.cpp | 89 resource->response().textEncodingName(), KURL());
|
/external/webkit/Source/WebKit/wince/WebCoreSupport/ |
FrameLoaderClientWinCE.cpp | 469 documentLoader->writer()->setEncoding(m_response.textEncodingName(), false);
|
/external/chromium/webkit/glue/ |
multipart_response_delegate_unittest.cc | 181 string(client.response_.textEncodingName().utf8()));
|
/external/webkit/Source/WebCore/xml/ |
XMLHttpRequest.cpp | 1029 m_responseEncoding = response.textEncodingName(); [all...] |