HomeSort by relevance Sort by last modified time
    Searched full:textcodec (Results 1 - 25 of 41) 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)
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 {
TextCodecUserDefined.h 29 #include "TextCodec.h"
33 class TextCodecUserDefined : public TextCodec {
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);
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();
TextCodecICU.h 30 #include "TextCodec.h"
38 class TextCodecICU : public TextCodec {
47 static PassOwnPtr<TextCodec> create(const TextEncoding&, const void*);
TextCodecUTF16.h 29 #include "TextCodec.h"
33 class TextCodecUTF16 : public TextCodec {
TextEncodingRegistry.h 35 class TextCodec;
40 PassOwnPtr<TextCodec> newTextCodec(const TextEncoding&);
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.h 29 #include "TextCodec.h"
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);
TextCodecLatin1.cpp 105 static PassOwnPtr<TextCodec> newStreamingTextDecoderWindowsLatin1(const TextEncoding&, const void*)
178 int replacementLength = TextCodec::getUnencodableReplacement(c, handling, replacement);
  /external/webkit/Source/WebCore/html/parser/
HTMLMetaCharsetParser.h 37 class TextCodec;
64 OwnPtr<TextCodec> m_assumedCodec;
HTMLMetaCharsetParser.cpp 33 #include "TextCodec.h"
  /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 {
  /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/mac/
TextCodecMac.h 30 #include "TextCodec.h"
38 class TextCodecMac : public TextCodec {
  /external/webkit/Source/WebCore/platform/text/wince/
TextCodecWinCE.h 33 #include "TextCodec.h"
40 class TextCodecWinCE : public TextCodec {
  /external/webkit/Source/WebCore/loader/
TextResourceDecoder.h 85 OwnPtr<TextCodec> m_codec;
  /external/valgrind/main/
darwin9-drd.supp 456 drd-WebCore::WebCore::TextCodec::~TextCodec()

Completed in 981 milliseconds

1 2