HomeSort by relevance Sort by last modified time
    Searched defs:textEncodingName (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebKit/win/
WebResource.cpp 38 WebResource::WebResource(IStream* data, const WebCore::KURL& url, const WTF::String& mimeType, const WTF::String& textEncodingName, const WTF::String& frameName)
43 , m_textEncodingName(textEncodingName)
60 WebResource* instance = new WebResource(memoryStream.get(), response.url(), response.mimeType(), response.textEncodingName(), String());
101 /* [in] */ BSTR textEncodingName,
107 m_textEncodingName = String(textEncodingName);
144 HRESULT STDMETHODCALLTYPE WebResource::textEncodingName(
WebDataSource.cpp 227 HRESULT STDMETHODCALLTYPE WebDataSource::textEncodingName(
232 encoding = m_loader->response().textEncodingName();
WebURLResponse.cpp 295 /* [in] */ BSTR textEncodingName)
297 m_response = ResourceResponse(MarshallingHelpers::BSTRToKURL(url), String(mimeType), expectedContentLength, String(textEncodingName), String());
329 HRESULT STDMETHODCALLTYPE WebURLResponse::textEncodingName(
335 BString textEncodingName(m_response.textEncodingName());
336 *result = textEncodingName.release();
337 if (!m_response.textEncodingName().isNull() && !*result)
  /external/webkit/Tools/DumpRenderTree/cf/
WebArchiveDumpSupport.cpp 65 CFStringRef textEncodingName = static_cast<CFStringRef>(CFDictionaryGetValue(resource, CFSTR("WebResourceTextEncodingName")));
67 if (textEncodingName && CFStringGetLength(textEncodingName))
68 stringEncoding = CFStringConvertIANACharSetNameToEncoding(textEncodingName);
126 CFStringRef textEncodingName = CFURLResponseGetTextEncodingName(response.get());
127 if (textEncodingName)
128 CFDictionarySetValue(responseDictionary.get(), CFSTR("textEncodingName"), textEncodingName);
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebdatasource.cpp 288 String textEncodingName = priv->loader->overrideEncoding();
290 if (!textEncodingName)
291 textEncodingName = priv->loader->response().textEncodingName();
293 CString encoding = textEncodingName.utf8();
  /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/WebKit/chromium/src/
WebURLResponse.cpp 172 WebString WebURLResponse::textEncodingName() const
174 return m_private->m_resourceResponse->textEncodingName();
177 void WebURLResponse::setTextEncodingName(const WebString& textEncodingName)
179 m_private->m_resourceResponse->setTextEncodingName(textEncodingName);
  /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();
  /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...]

Completed in 158 milliseconds