HomeSort by relevance Sort by last modified time
    Searched refs:TextResourceDecoder (Results 1 - 25 of 48) 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*);
57 PassOwnPtr<TextResourceDecoder> createDecoderInstance(Document*);
58 void setupEncoding(TextResourceDecoder*, Document*);
TextResourceDecoderBuilder.cpp 59 inline PassOwnPtr<TextResourceDecoder> TextResourceDecoderBuilder::createDecoderInstance(Document* document)
63 return TextResourceDecoder::create(m_mimeType, settings->defaultTextEncodingName(), settings->usesEncodingDetector());
66 return TextResourceDecoder::create(m_mimeType, String());
69 inline void TextResourceDecoderBuilder::setupEncoding(TextResourceDecoder* decoder, Document* document)
77 decoder->setEncoding(m_encoding.string(), m_encodingWasChosenByUser ? TextResourceDecoder::UserChosenEncoding : TextResourceDecoder::EncodingFromHTTPHeader);
93 decoder->setEncoding(parentFrame->document()->inputEncoding().string(), TextResourceDecoder::EncodingFromParentFrame);
97 PassOwnPtr<TextResourceDecoder> TextResourceDecoderBuilder::buildFor(Document* document)
99 OwnPtr<TextResourceDecoder> decoder = createDecoderInstance(document);
DocumentWriter.cpp 34 #include "core/html/parser/TextResourceDecoder.h"
94 OwnPtr<TextResourceDecoder> decoder = m_decoderBuilder.buildFor(m_document);
115 OwnPtr<TextResourceDecoder> decoder = m_decoderBuilder.buildFor(m_document);
132 TextResourceDecoder* decoder = m_parser->decoder();
134 decoder->setEncoding(charset, TextResourceDecoder::UserChosenEncoding);
DocumentWriter.h 44 class TextResourceDecoder;
  /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()
DocumentParser.h 37 class TextResourceDecoder;
56 virtual void setDecoder(PassOwnPtr<TextResourceDecoder>);
57 virtual TextResourceDecoder* decoder();
DocumentEncodingData.cpp 34 #include "core/html/parser/TextResourceDecoder.h"
44 DocumentEncodingData::DocumentEncodingData(const TextResourceDecoder& decoder)
DocumentParser.cpp 30 #include "core/html/parser/TextResourceDecoder.h"
58 void DocumentParser::setDecoder(PassOwnPtr<TextResourceDecoder>)
63 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;
DocumentResource.cpp 35 , m_decoder(TextResourceDecoder::create("application/xml"))
47 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
CSSStyleSheetResource.h 38 class TextResourceDecoder;
DocumentResource.h 29 #include "core/html/parser/TextResourceDecoder.h"
52 OwnPtr<TextResourceDecoder> m_decoder;
  /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 51 class TextResourceDecoder;
115 OwnPtr<TextResourceDecoder> m_decoder;
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerScriptLoader.h 45 class TextResourceDecoder;
93 OwnPtr<TextResourceDecoder> m_decoder;
WorkerScriptLoader.cpp 32 #include "core/html/parser/TextResourceDecoder.h"
131 m_decoder = TextResourceDecoder::create("text/javascript", m_responseEncoding);
133 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;
114 TextResourceDecoder* decoder() const { return m_decoder.get(); }
115 void setDecoder(PassOwnPtr<TextResourceDecoder> decoder) { m_decoder = decoder; }
145 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 854 milliseconds

1 2