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

1 2

  /external/webkit/WebCore/loader/
TextResourceDecoder.h 30 class TextResourceDecoder : public RefCounted<TextResourceDecoder> {
43 static PassRefPtr<TextResourceDecoder> create(const String& mimeType, const TextEncoding& defaultEncoding = TextEncoding(), bool usesEncodingDetector = false)
45 return adoptRef(new TextResourceDecoder(mimeType, defaultEncoding, usesEncodingDetector));
47 ~TextResourceDecoder();
55 void setHintEncoding(const TextResourceDecoder* hintDecoder)
67 TextResourceDecoder(const String& mimeType, const TextEncoding& defaultEncoding,
CachedXBLDocument.h 36 class TextResourceDecoder;
60 RefPtr<TextResourceDecoder> m_decoder;
CachedXSLStyleSheet.h 35 class TextResourceDecoder;
57 RefPtr<TextResourceDecoder> m_decoder;
CachedCSSStyleSheet.h 36 class TextResourceDecoder;
62 RefPtr<TextResourceDecoder> m_decoder;
CachedScript.h 35 class TextResourceDecoder;
62 RefPtr<TextResourceDecoder> m_decoder;
CachedScript.cpp 32 #include "TextResourceDecoder.h"
39 , m_decoder(TextResourceDecoder::create("application/javascript", charset))
65 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
CachedXBLDocument.cpp 34 #include "TextResourceDecoder.h"
45 m_decoder = new TextResourceDecoder("application/xml");
63 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
CachedXSLStyleSheet.cpp 32 #include "TextResourceDecoder.h"
41 , m_decoder(TextResourceDecoder::create("text/xsl"))
56 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
TextResourceDecoder.cpp 24 #include "TextResourceDecoder.h"
304 TextResourceDecoder::ContentType TextResourceDecoder::determineContentType(const String& mimeType)
315 const TextEncoding& TextResourceDecoder::defaultEncoding(ContentType contentType, const TextEncoding& specifiedDefaultEncoding)
326 TextResourceDecoder::TextResourceDecoder(const String& mimeType, const TextEncoding& specifiedDefaultEncoding, bool usesEncodingDetector)
340 TextResourceDecoder::~TextResourceDecoder()
344 void TextResourceDecoder::setEncoding(const TextEncoding& encoding, EncodingSource source)
411 size_t TextResourceDecoder::checkForBOM(const char* data, size_t len
    [all...]
CachedCSSStyleSheet.cpp 33 #include "TextResourceDecoder.h"
41 , m_decoder(TextResourceDecoder::create("text/css", charset))
66 m_decoder->setEncoding(chs, TextResourceDecoder::EncodingFromHTTPHeader);
CachedFont.cpp 42 #include "TextResourceDecoder.h"
141 RefPtr<TextResourceDecoder> decoder = TextResourceDecoder::create("application/xml");
FrameLoader.h 81 class TextResourceDecoder;
514 RefPtr<TextResourceDecoder> m_decoder;
  /external/webkit/WebCore/workers/
WorkerScriptLoader.h 36 #include "TextResourceDecoder.h"
73 RefPtr<TextResourceDecoder> m_decoder;
WorkerScriptLoader.cpp 111 m_decoder = TextResourceDecoder::create("text/javascript", m_responseEncoding);
113 m_decoder = TextResourceDecoder::create("text/javascript", "UTF-8");
  /external/webkit/WebCore/page/
EventSource.h 54 class TextResourceDecoder;
113 RefPtr<TextResourceDecoder> m_decoder;
EventSource.cpp 49 #include "TextResourceDecoder.h"
76 m_decoder = TextResourceDecoder::create("text/plain", "UTF-8");
Page.cpp 61 #include "TextResourceDecoder.h"
634 RefPtr<TextResourceDecoder> decoder = TextResourceDecoder::create("text/css");
  /external/webkit/WebCore/xml/
XSLTProcessor.cpp 39 #include "TextResourceDecoder.h"
91 RefPtr<TextResourceDecoder> decoder = TextResourceDecoder::create(sourceMIMEType);
92 decoder->setEncoding(sourceEncoding.isEmpty() ? UTF8Encoding() : TextEncoding(sourceEncoding), TextResourceDecoder::EncodingFromXMLHeader);
XMLHttpRequest.h 39 class TextResourceDecoder;
159 RefPtr<TextResourceDecoder> m_decoder;
XMLHttpRequest.cpp 41 #include "TextResourceDecoder.h"
897 m_decoder = TextResourceDecoder::create("text/plain", m_responseEncoding);
898 // allow TextResourceDecoder to look inside the m_response if it's XML or HTML
900 m_decoder = TextResourceDecoder::create("application/xml");
904 m_decoder = TextResourceDecoder::create("text/html", "UTF-8");
906 m_decoder = TextResourceDecoder::create("text/plain", "UTF-8");
  /external/webkit/WebCore/loader/appcache/
ManifestParser.cpp 33 #include "TextResourceDecoder.h"
50 RefPtr<TextResourceDecoder> decoder = TextResourceDecoder::create("text/cache-manifest", "UTF-8");
54 // Look for the magic signature: "^\xFEFF?CACHE MANIFEST[ \t]?" (the BOM is removed by TextResourceDecoder).
  /external/webkit/WebCore/platform/gtk/
PasteboardGtk.cpp 28 #include "TextResourceDecoder.h"
168 RefPtr<TextResourceDecoder> decoder = TextResourceDecoder::create("text/plain", "UTF-8", true);
  /external/webkit/WebKit/win/
WebHTMLRepresentation.cpp 36 #include <WebCore/TextResourceDecoder.h>
306 WebCore::TextResourceDecoder* decoder = doc->decoder();
  /external/webkit/WebKit/mac/WebView/
WebHTMLRepresentation.mm 56 #import <WebCore/TextResourceDecoder.h>
237 TextResourceDecoder* decoder = document->decoder();
  /external/webkit/WebCore/dom/
Document.h 108 class TextResourceDecoder;
    [all...]

Completed in 145 milliseconds

1 2