| /external/chromium_org/third_party/WebKit/Source/core/workers/ |
| WorkerScriptLoader.cpp | 32 #include "core/fetch/TextResourceDecoder.h" 129 m_decoder = TextResourceDecoder::create("text/javascript", m_responseEncoding); 131 m_decoder = TextResourceDecoder::create("text/javascript", "UTF-8");
|
| /external/chromium_org/third_party/WebKit/Source/core/inspector/ |
| NetworkResourcesData.cpp | 157 static PassOwnPtr<TextResourceDecoder> createOtherResourceTextDecoder(const String& mimeType, const String& textEncodingName) 159 OwnPtr<TextResourceDecoder> decoder; 161 decoder = TextResourceDecoder::create("text/plain", textEncodingName); 163 decoder = TextResourceDecoder::create("application/xml"); 166 decoder = TextResourceDecoder::create("text/html", "UTF-8"); 168 decoder = TextResourceDecoder::create("text/plain", "ISO-8859-1");
|
| InspectorPageAgent.cpp | 50 #include "core/fetch/TextResourceDecoder.h" 165 static PassOwnPtr<TextResourceDecoder> createXHRTextDecoder(const String& mimeType, const String& textEncodingName) 168 return TextResourceDecoder::create("text/plain", textEncodingName); 170 OwnPtr<TextResourceDecoder> decoder = TextResourceDecoder::create("application/xml"); 175 return TextResourceDecoder::create("text/html", "UTF-8"); 176 return TextResourceDecoder::create("text/plain", "UTF-8"); 216 OwnPtr<TextResourceDecoder> decoder = createXHRTextDecoder(cachedResource->response().mimeType(), cachedResource->response().textEncodingName()); [all...] |
| InspectorFileSystemAgent.cpp | 38 #include "core/fetch/TextResourceDecoder.h" 492 OwnPtr<TextResourceDecoder> decoder = TextResourceDecoder::create(m_mimeType, m_charset, true);
|
| InspectorResourceAgent.cpp | 111 m_decoder = TextResourceDecoder::create("text/plain", textEncoding, useDetector); 167 OwnPtr<TextResourceDecoder> m_decoder;
|
| /external/chromium_org/third_party/WebKit/Source/core/xml/ |
| XMLHttpRequest.h | 51 class TextResourceDecoder; 231 OwnPtr<TextResourceDecoder> m_decoder;
|
| XMLHttpRequest.cpp | 35 #include "core/fetch/TextResourceDecoder.h" [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/ |
| VTTParser.h | 37 #include "core/fetch/TextResourceDecoder.h" 139 OwnPtr<TextResourceDecoder> m_decoder;
|
| VTTParser.cpp | 144 , m_decoder(TextResourceDecoder::create("text/plain", UTF8Encoding()))
|
| /external/chromium_org/third_party/WebKit/Source/core/fileapi/ |
| FileReaderLoader.cpp | 37 #include "core/fetch/TextResourceDecoder.h" 364 m_decoder = TextResourceDecoder::create("text/plain", m_encoding.isValid() ? m_encoding : UTF8Encoding());
|
| /external/chromium_org/third_party/WebKit/Source/core/page/ |
| EventSource.cpp | 45 #include "core/fetch/TextResourceDecoder.h" 65 , m_decoder(TextResourceDecoder::create("text/plain", "UTF-8"))
|
| /external/chromium_org/third_party/WebKit/Source/core/ |
| webcore_remaining.target.darwin-arm.mk | 294 third_party/WebKit/Source/core/fetch/TextResourceDecoder.cpp \ [all...] |
| webcore_remaining.target.darwin-mips.mk | 294 third_party/WebKit/Source/core/fetch/TextResourceDecoder.cpp \ [all...] |
| webcore_remaining.target.darwin-x86.mk | 294 third_party/WebKit/Source/core/fetch/TextResourceDecoder.cpp \ [all...] |
| webcore_remaining.target.linux-arm.mk | 294 third_party/WebKit/Source/core/fetch/TextResourceDecoder.cpp \ [all...] |
| webcore_remaining.target.linux-mips.mk | 294 third_party/WebKit/Source/core/fetch/TextResourceDecoder.cpp \ [all...] |
| webcore_remaining.target.linux-x86.mk | 294 third_party/WebKit/Source/core/fetch/TextResourceDecoder.cpp \ [all...] |