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

1 2

  /external/webkit/Source/WebCore/platform/text/
TextCodec.cpp 28 #include "TextCodec.h"
35 TextCodec::~TextCodec()
39 int TextCodec::getUnencodableReplacement(unsigned codePoint, UnencodableHandling handling, UnencodableReplacementArray replacement)
TextEncodingRegistry.h 35 class TextCodec;
40 PassOwnPtr<TextCodec> newTextCodec(const TextEncoding&);
TextCodec.h 60 class TextCodec {
61 WTF_MAKE_NONCOPYABLE(TextCodec); WTF_MAKE_FAST_ALLOCATED;
63 TextCodec() { }
64 virtual ~TextCodec();
83 typedef PassOwnPtr<TextCodec> (*NewTextCodecFunction)(const TextEncoding&, const void* additionalData);
TextCodecUTF8.h 29 #include "TextCodec.h"
33 class TextCodecUTF8 : public TextCodec {
39 static PassOwnPtr<TextCodec> create(const TextEncoding&, const void*);
TextCodecLatin1.h 29 #include "TextCodec.h"
33 class TextCodecLatin1 : public TextCodec {
TextCodecUTF16.h 29 #include "TextCodec.h"
33 class TextCodecUTF16 : public TextCodec {
TextCodecUserDefined.h 29 #include "TextCodec.h"
33 class TextCodecUserDefined : public TextCodec {
TextCodecICU.h 30 #include "TextCodec.h"
38 class TextCodecICU : public TextCodec {
47 static PassOwnPtr<TextCodec> create(const TextEncoding&, const void*);
TextCodecUserDefined.cpp 42 static PassOwnPtr<TextCodec> newStreamingTextDecoderUserDefined(const TextEncoding&, const void*)
80 int replacementLength = TextCodec::getUnencodableReplacement(c, handling, replacement);
TextCodecUTF16.cpp 53 static PassOwnPtr<TextCodec> newStreamingTextDecoderUTF16LE(const TextEncoding&, const void*)
58 static PassOwnPtr<TextCodec> newStreamingTextDecoderUTF16BE(const TextEncoding&, const void*)
TextEncoding.cpp 32 #include "TextCodec.h"
130 OwnPtr<TextCodec> textCodec = newTextCodec(*this);
131 return textCodec.get() ? textCodec->encode(characters, length, handling) : CString();
134 OwnPtr<TextCodec> textCodec = newTextCodec(*this);
135 return textCodec.get() ? textCodec->encode(characters, length, handling) : CString();
TextCodecLatin1.cpp 105 static PassOwnPtr<TextCodec> newStreamingTextDecoderWindowsLatin1(const TextEncoding&, const void*)
178 int replacementLength = TextCodec::getUnencodableReplacement(c, handling, replacement);
TextCodecICU.cpp 56 PassOwnPtr<TextCodec> TextCodecICU::create(const TextEncoding& encoding, const void*)
359 // characters. See the declaration of TextCodec::encode for more.
367 int entityLen = TextCodec::getUnencodableReplacement(codePoint, URLEncodedEntitiesForUnencodables, entity);
TextCodecUTF8.cpp 41 PassOwnPtr<TextCodec> TextCodecUTF8::create(const TextEncoding&, const void*)
TextEncodingRegistry.cpp 326 PassOwnPtr<TextCodec> newTextCodec(const TextEncoding& encoding)
  /external/webkit/Source/WebCore/html/parser/
HTMLMetaCharsetParser.h 37 class TextCodec;
64 OwnPtr<TextCodec> m_assumedCodec;
  /external/webkit/Source/WebCore/platform/text/brew/
TextCodecBrew.h 29 #include "TextCodec.h"
36 class TextCodecBrew : public TextCodec {
TextCodecBrew.cpp 41 static PassOwnPtr<TextCodec> newTextCodecBrew(const TextEncoding& encoding, const void*)
  /external/webkit/Source/WebCore/platform/text/qt/
TextCodecQt.h 29 #include "TextCodec.h"
35 class TextCodecQt : public TextCodec {
TextCodecQt.cpp 65 static PassOwnPtr<TextCodec> newTextCodecQt(const TextEncoding& encoding, const void*)
  /external/webkit/Source/WebCore/platform/text/gtk/
TextCodecGtk.h 34 #include "TextCodec.h"
39 class TextCodecGtk : public TextCodec {
TextCodecGtk.cpp 44 // TextCodec's appendOmittingBOM() is gone (http://trac.webkit.org/changeset/33380).
58 static PassOwnPtr<TextCodec> newTextCodecGtk(const TextEncoding& encoding, const void*)
555 int replacementLength = TextCodec::getUnencodableReplacement(codePoint, handling, replacement);
  /external/webkit/Source/WebCore/platform/text/wince/
TextCodecWinCE.h 33 #include "TextCodec.h"
40 class TextCodecWinCE : public TextCodec {
  /external/webkit/Source/WebCore/platform/text/mac/
TextCodecMac.h 30 #include "TextCodec.h"
38 class TextCodecMac : public TextCodec {
  /external/webkit/Source/WebCore/loader/
TextResourceDecoder.h 85 OwnPtr<TextCodec> m_codec;

Completed in 575 milliseconds

1 2