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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/loader/
TextResourceDecoderBuilder.h 34 #include "core/html/parser/TextResourceDecoder.h"
41 class TextResourceDecoder;
48 PassOwnPtr<TextResourceDecoder> buildFor(Document*);
56 PassOwnPtr<TextResourceDecoder> createDecoderInstance(Document*);
57 void setupEncoding(TextResourceDecoder*, Document*);
TextResourceDecoderBuilder.cpp 58 inline PassOwnPtr<TextResourceDecoder> TextResourceDecoderBuilder::createDecoderInstance(Document* document)
62 return TextResourceDecoder::create(m_mimeType, settings->defaultTextEncodingName(), settings->usesEncodingDetector());
65 return TextResourceDecoder::create(m_mimeType, String());
68 inline void TextResourceDecoderBuilder::setupEncoding(TextResourceDecoder* decoder, Document* document)
76 decoder->setEncoding(m_encoding.string(), TextResourceDecoder::EncodingFromHTTPHeader);
92 decoder->setEncoding(parentFrame->document()->inputEncoding().string(), TextResourceDecoder::EncodingFromParentFrame);
96 PassOwnPtr<TextResourceDecoder> TextResourceDecoderBuilder::buildFor(Document* document)
98 OwnPtr<TextResourceDecoder> decoder = createDecoderInstance(document);
DocumentWriter.cpp 38 #include "core/html/parser/TextResourceDecoder.h"
94 OwnPtr<TextResourceDecoder> decoder = m_decoderBuilder.buildFor(m_document);
115 OwnPtr<TextResourceDecoder> decoder = m_decoderBuilder.buildFor(m_document);
128 TextResourceDecoder* decoder = m_parser->decoder();
130 decoder->setEncoding(charset, TextResourceDecoder::UserChosenEncoding);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DecodedDataDocumentParser.h 33 class TextResourceDecoder;
45 virtual void setDecoder(PassOwnPtr<TextResourceDecoder>) OVERRIDE;
46 virtual TextResourceDecoder* decoder() OVERRIDE FINAL;
48 PassOwnPtr<TextResourceDecoder> takeDecoder();
61 OwnPtr<TextResourceDecoder> m_decoder;
DocumentEncodingData.h 37 class TextResourceDecoder;
42 explicit DocumentEncodingData(const TextResourceDecoder&);
DecodedDataDocumentParser.cpp 31 #include "core/html/parser/TextResourceDecoder.h"
45 void DecodedDataDocumentParser::setDecoder(PassOwnPtr<TextResourceDecoder> decoder)
54 TextResourceDecoder* DecodedDataDocumentParser::decoder()
59 PassOwnPtr<TextResourceDecoder> DecodedDataDocumentParser::takeDecoder()
DocumentEncodingData.cpp 34 #include "core/html/parser/TextResourceDecoder.h"
44 DocumentEncodingData::DocumentEncodingData(const TextResourceDecoder& decoder)
DocumentParser.h 37 class TextResourceDecoder;
55 virtual void setDecoder(PassOwnPtr<TextResourceDecoder>);
56 virtual TextResourceDecoder* decoder();
DocumentParser.cpp 31 #include "core/html/parser/TextResourceDecoder.h"
62 void DocumentParser::setDecoder(PassOwnPtr<TextResourceDecoder>)
67 TextResourceDecoder* DocumentParser::decoder()
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
TextResource.h 13 class TextResourceDecoder;
29 OwnPtr<TextResourceDecoder> m_decoder;
TextResource.cpp 8 #include "core/html/parser/TextResourceDecoder.h"
15 , m_decoder(TextResourceDecoder::create(mimeType, charset))
25 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
XSLStyleSheetResource.h 35 class TextResourceDecoder;
CSSStyleSheetResource.h 38 class TextResourceDecoder;
DocumentResource.cpp 35 , m_decoder(TextResourceDecoder::create("application/xml"))
53 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
DocumentResource.h 29 #include "core/html/parser/TextResourceDecoder.h"
53 OwnPtr<TextResourceDecoder> m_decoder;
FontResource.cpp 32 #include "core/html/parser/TextResourceDecoder.h"
171 OwnPtr<TextResourceDecoder> decoder = TextResourceDecoder::create("application/xml");
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
TextResourceDecoder.h 34 class TextResourceDecoder {
48 static PassOwnPtr<TextResourceDecoder> create(const String& mimeType, const WTF::TextEncoding& defaultEncoding = WTF::TextEncoding(), bool usesEncodingDetector = false)
50 return adoptPtr(new TextResourceDecoder(mimeType, defaultEncoding, usesEncodingDetector));
52 ~TextResourceDecoder();
74 TextResourceDecoder(const String& mimeType, const WTF::TextEncoding& defaultEncoding, bool usesEncodingDetector);
BackgroundHTMLParser.h 36 #include "core/html/parser/TextResourceDecoder.h"
55 OwnPtr<TextResourceDecoder> decoder;
73 void setDecoder(PassOwnPtr<TextResourceDecoder>);
107 OwnPtr<TextResourceDecoder> m_decoder;
TextResourceDecoder.cpp 24 #include "core/html/parser/TextResourceDecoder.h"
91 TextResourceDecoder::ContentType TextResourceDecoder::determineContentType(const String& mimeType)
102 const WTF::TextEncoding& TextResourceDecoder::defaultEncoding(ContentType contentType, const WTF::TextEncoding& specifiedDefaultEncoding)
113 TextResourceDecoder::TextResourceDecoder(const String& mimeType, const WTF::TextEncoding& specifiedDefaultEncoding, bool usesEncodingDetector)
128 TextResourceDecoder::~TextResourceDecoder()
132 void TextResourceDecoder::setEncoding(const WTF::TextEncoding& encoding, EncodingSource source)
191 size_t TextResourceDecoder::checkForBOM(const char* data, size_t len
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderLoader.h 50 class TextResourceDecoder;
127 OwnPtr<TextResourceDecoder> m_decoder;
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.h 50 class TextResourceDecoder;
117 OwnPtr<TextResourceDecoder> m_decoder;
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerScriptLoader.h 46 class TextResourceDecoder;
94 OwnPtr<TextResourceDecoder> m_decoder;
WorkerScriptLoader.cpp 32 #include "core/html/parser/TextResourceDecoder.h"
132 m_decoder = TextResourceDecoder::create("text/javascript", m_responseEncoding);
134 m_decoder = TextResourceDecoder::create("text/javascript", "UTF-8");
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
NetworkResourcesData.h 33 #include "core/html/parser/TextResourceDecoder.h"
50 class TextResourceDecoder;
116 TextResourceDecoder* decoder() const { return m_decoder.get(); }
117 void setDecoder(PassOwnPtr<TextResourceDecoder> decoder) { m_decoder = decoder; }
147 OwnPtr<TextResourceDecoder> m_decoder;
NetworkResourcesData.cpp 159 static PassOwnPtr<TextResourceDecoder> createOtherResourceTextDecoder(const String& mimeType, const String& textEncodingName)
161 OwnPtr<TextResourceDecoder> decoder;
163 decoder = TextResourceDecoder::create("text/plain", textEncodingName);
165 decoder = TextResourceDecoder::create("application/xml");
168 decoder = TextResourceDecoder::create("text/html", "UTF-8");
170 decoder = TextResourceDecoder::create("text/plain", "UTF-8");
172 decoder = TextResourceDecoder::create("text/plain", "ISO-8859-1");

Completed in 970 milliseconds

1 2