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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ShaderResource.h 37 class TextResourceDecoder;
49 OwnPtr<TextResourceDecoder> m_decoder;
ScriptResource.h 34 class TextResourceDecoder;
53 OwnPtr<TextResourceDecoder> m_decoder;
XSLStyleSheetResource.h 35 class TextResourceDecoder;
51 OwnPtr<TextResourceDecoder> m_decoder;
TextResourceDecoder.h 33 class TextResourceDecoder {
47 static PassOwnPtr<TextResourceDecoder> create(const String& mimeType, const WTF::TextEncoding& defaultEncoding = WTF::TextEncoding(), bool usesEncodingDetector = false)
49 return adoptPtr(new TextResourceDecoder(mimeType, defaultEncoding, usesEncodingDetector));
51 ~TextResourceDecoder();
73 TextResourceDecoder(const String& mimeType, const WTF::TextEncoding& defaultEncoding, bool usesEncodingDetector);
CSSStyleSheetResource.h 37 class TextResourceDecoder;
60 OwnPtr<TextResourceDecoder> m_decoder;
DocumentResource.cpp 35 , m_decoder(TextResourceDecoder::create("application/xml"))
47 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
ShaderResource.cpp 33 #include "core/fetch/TextResourceDecoder.h"
41 , m_decoder(TextResourceDecoder::create("application/shader"))
TextResourceDecoder.cpp 24 #include "core/fetch/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...]
ScriptResource.cpp 30 #include "core/fetch/TextResourceDecoder.h"
39 , m_decoder(TextResourceDecoder::create("application/javascript", charset))
55 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
XSLStyleSheetResource.cpp 33 #include "core/fetch/TextResourceDecoder.h"
41 , m_decoder(TextResourceDecoder::create("text/xsl"))
61 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
DocumentResource.h 29 #include "core/fetch/TextResourceDecoder.h"
52 OwnPtr<TextResourceDecoder> m_decoder;
CSSStyleSheetResource.cpp 33 #include "core/fetch/TextResourceDecoder.h"
43 , m_decoder(TextResourceDecoder::create("text/css", charset))
72 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
FontResource.cpp 31 #include "core/fetch/TextResourceDecoder.h"
112 OwnPtr<TextResourceDecoder> decoder = TextResourceDecoder::create("application/xml");
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DecodedDataDocumentParser.h 34 class TextResourceDecoder;
46 virtual void setDecoder(PassOwnPtr<TextResourceDecoder>) OVERRIDE;
47 virtual TextResourceDecoder* decoder() OVERRIDE;
61 OwnPtr<TextResourceDecoder> m_decoder;
DocumentParser.h 37 class TextResourceDecoder;
55 virtual void setDecoder(PassOwnPtr<TextResourceDecoder>);
56 virtual TextResourceDecoder* decoder();
DocumentParser.cpp 28 #include "core/fetch/TextResourceDecoder.h"
50 void DocumentParser::setDecoder(PassOwnPtr<TextResourceDecoder>)
55 TextResourceDecoder* DocumentParser::decoder()
DecodedDataDocumentParser.cpp 31 #include "core/fetch/TextResourceDecoder.h"
45 void DecodedDataDocumentParser::setDecoder(PassOwnPtr<TextResourceDecoder> decoder)
50 TextResourceDecoder* DecodedDataDocumentParser::decoder()
  /external/chromium_org/third_party/WebKit/Source/core/loader/
TextResourceDecoderBuilder.h 34 #include "core/fetch/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)
75 decoder->setEncoding(m_encoding.string(), m_encodingWasChosenByUser ? TextResourceDecoder::UserChosenEncoding : TextResourceDecoder::EncodingFromHTTPHeader);
91 decoder->setEncoding(parentFrame->document()->inputEncoding().string(), TextResourceDecoder::EncodingFromParentFrame);
95 PassOwnPtr<TextResourceDecoder> TextResourceDecoderBuilder::buildFor(Document* document)
97 OwnPtr<TextResourceDecoder> decoder = createDecoderInstance(document);
DocumentWriter.cpp 34 #include "core/fetch/TextResourceDecoder.h"
89 OwnPtr<TextResourceDecoder> decoder = m_decoderBuilder.buildFor(m_document);
110 OwnPtr<TextResourceDecoder> decoder = m_decoderBuilder.buildFor(m_document);
127 TextResourceDecoder* decoder = m_parser->decoder();
129 decoder->setEncoding(charset, TextResourceDecoder::UserChosenEncoding);
DocumentWriter.h 43 class TextResourceDecoder;
  /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;
113 OwnPtr<TextResourceDecoder> m_decoder;
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerScriptLoader.h 45 class TextResourceDecoder;
93 OwnPtr<TextResourceDecoder> m_decoder;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
NetworkResourcesData.h 32 #include "core/fetch/TextResourceDecoder.h"
48 class TextResourceDecoder;
110 TextResourceDecoder* decoder() const { return m_decoder.get(); }
111 void setDecoder(PassOwnPtr<TextResourceDecoder> decoder) { m_decoder = decoder; }
141 OwnPtr<TextResourceDecoder> m_decoder;

Completed in 205 milliseconds

1 2