textEncodingName 371 Source/core/fetch/Resource.cpp String encoding = response.textEncodingName(); textEncodingName 97 Source/core/html/imports/HTMLImportLoader.cpp m_writer = DocumentWriter::create(m_importedDocument.get(), response.mimeType(), response.textEncodingName()); textEncodingName 122 Source/core/inspector/InspectorPageAgent.cpp static bool decodeBuffer(const char* buffer, unsigned size, const String& textEncodingName, String* result) textEncodingName 125 Source/core/inspector/InspectorPageAgent.cpp WTF::TextEncoding encoding(textEncodingName); textEncodingName 169 Source/core/inspector/InspectorPageAgent.cpp static PassOwnPtr<TextResourceDecoder> createXHRTextDecoder(const String& mimeType, const String& textEncodingName) textEncodingName 171 Source/core/inspector/InspectorPageAgent.cpp if (!textEncodingName.isEmpty()) textEncodingName 172 Source/core/inspector/InspectorPageAgent.cpp return TextResourceDecoder::create("text/plain", textEncodingName); textEncodingName 220 Source/core/inspector/InspectorPageAgent.cpp OwnPtr<TextResourceDecoder> decoder = createXHRTextDecoder(cachedResource->response().mimeType(), cachedResource->response().textEncodingName()); textEncodingName 227 Source/core/inspector/InspectorPageAgent.cpp return decodeBuffer(buffer ? buffer->data() : 0, buffer ? buffer->size() : 0, cachedResource->response().textEncodingName(), result); textEncodingName 234 Source/core/inspector/InspectorPageAgent.cpp bool InspectorPageAgent::sharedBufferContent(PassRefPtr<SharedBuffer> buffer, const String& textEncodingName, bool withBase64Encode, String* result) textEncodingName 236 Source/core/inspector/InspectorPageAgent.cpp return dataContent(buffer ? buffer->data() : 0, buffer ? buffer->size() : 0, textEncodingName, withBase64Encode, result); textEncodingName 239 Source/core/inspector/InspectorPageAgent.cpp bool InspectorPageAgent::dataContent(const char* data, unsigned size, const String& textEncodingName, bool withBase64Encode, String* result) textEncodingName 246 Source/core/inspector/InspectorPageAgent.cpp return decodeBuffer(data, size, textEncodingName, result); textEncodingName 84 Source/core/inspector/InspectorPageAgent.h static bool sharedBufferContent(PassRefPtr<SharedBuffer>, const String& textEncodingName, bool withBase64Encode, String* result); textEncodingName 86 Source/core/inspector/InspectorPageAgent.h static PassRefPtr<SharedBuffer> resourceData(LocalFrame*, const KURL&, String* textEncodingName); textEncodingName 171 Source/core/inspector/InspectorPageAgent.h static bool dataContent(const char* data, unsigned size, const String& textEncodingName, bool withBase64Encode, String* result); textEncodingName 104 Source/core/inspector/InspectorResourceAgent.cpp WTF::TextEncoding textEncoding(response.textEncodingName()); textEncodingName 652 Source/core/inspector/InspectorResourceAgent.cpp if (resourceData->buffer() && !resourceData->textEncodingName().isNull()) { textEncodingName 654 Source/core/inspector/InspectorResourceAgent.cpp if (InspectorPageAgent::sharedBufferContent(resourceData->buffer(), resourceData->textEncodingName(), *base64Encoded, content)) textEncodingName 159 Source/core/inspector/NetworkResourcesData.cpp static PassOwnPtr<TextResourceDecoder> createOtherResourceTextDecoder(const String& mimeType, const String& textEncodingName) textEncodingName 162 Source/core/inspector/NetworkResourcesData.cpp if (!textEncodingName.isEmpty()) { textEncodingName 163 Source/core/inspector/NetworkResourcesData.cpp decoder = TextResourceDecoder::create("text/plain", textEncodingName); textEncodingName 184 Source/core/inspector/NetworkResourcesData.cpp resourceData->setDecoder(createOtherResourceTextDecoder(response.mimeType(), response.textEncodingName())); textEncodingName 263 Source/core/inspector/NetworkResourcesData.cpp void NetworkResourcesData::addResourceSharedBuffer(const String& requestId, PassRefPtr<SharedBuffer> buffer, const String& textEncodingName) textEncodingName 269 Source/core/inspector/NetworkResourcesData.cpp resourceData->setTextEncodingName(textEncodingName); textEncodingName 111 Source/core/inspector/NetworkResourcesData.h String textEncodingName() const { return m_textEncodingName; } textEncodingName 112 Source/core/inspector/NetworkResourcesData.h void setTextEncodingName(const String& textEncodingName) { m_textEncodingName = textEncodingName; } textEncodingName 163 Source/core/inspector/NetworkResourcesData.h void addResourceSharedBuffer(const String& requestId, PassRefPtr<SharedBuffer>, const String& textEncodingName); textEncodingName 495 Source/core/loader/DocumentLoader.cpp const AtomicString& encoding = overrideEncoding().isNull() ? response().textEncodingName() : overrideEncoding(); textEncodingName 232 Source/core/page/EventSource.cpp const String& charset = response.textEncodingName(); textEncodingName 115 Source/core/workers/WorkerScriptLoader.cpp m_responseEncoding = response.textEncodingName(); textEncodingName 1291 Source/core/xml/XMLHttpRequest.cpp m_responseEncoding = response.textEncodingName(); textEncodingName 196 Source/platform/exported/WebURLResponse.cpp return m_private->m_resourceResponse->textEncodingName(); textEncodingName 199 Source/platform/exported/WebURLResponse.cpp void WebURLResponse::setTextEncodingName(const WebString& textEncodingName) textEncodingName 201 Source/platform/exported/WebURLResponse.cpp m_private->m_resourceResponse->setTextEncodingName(textEncodingName); textEncodingName 59 Source/platform/mhtml/ArchiveResource.cpp return create(data, url, response.mimeType(), response.textEncodingName(), String(), response); textEncodingName 72 Source/platform/network/ResourceResponse.cpp ResourceResponse::ResourceResponse(const KURL& url, const AtomicString& mimeType, long long expectedLength, const AtomicString& textEncodingName, const String& filename) textEncodingName 76 Source/platform/network/ResourceResponse.cpp , m_textEncodingName(textEncodingName) textEncodingName 151 Source/platform/network/ResourceResponse.cpp data->m_textEncodingName = textEncodingName().string().isolatedCopy(); textEncodingName 571 Source/platform/network/ResourceResponse.cpp if (a.textEncodingName() != b.textEncodingName()) textEncodingName 60 Source/platform/network/ResourceResponse.h ResourceResponse(const KURL&, const AtomicString& mimeType, long long expectedLength, const AtomicString& textEncodingName, const String& filename); textEncodingName 74 Source/platform/network/ResourceResponse.h const AtomicString& textEncodingName() const; textEncodingName 106 public/platform/WebURLResponse.h BLINK_PLATFORM_EXPORT WebString textEncodingName() const;