HomeSort by relevance Sort by last modified time
    Searched refs:m_codec (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextEncoder.h 62 OwnPtr<WTF::TextCodec> m_codec; member in class:WebCore::TextEncoder
TextEncoder.cpp 63 , m_codec(newTextCodec(m_encoding))
88 result = m_codec->encode(input.characters8(), input.length(), WTF::QuestionMarksForUnencodables);
90 result = m_codec->encode(input.characters16(), input.length(), WTF::QuestionMarksForUnencodables);
TextDecoder.h 62 OwnPtr<WTF::TextCodec> m_codec; member in class:WebCore::TextDecoder
TextDecoder.cpp 60 , m_codec(newTextCodec(m_encoding))
94 String s = m_codec->decode(start, length, flush, m_fatal, sawError);
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
TextResourceDecoder.cpp 147 m_codec.clear();
406 if (!m_codec)
407 m_codec = newTextCodec(m_encoding);
409 String result = m_codec->decode(dataForDecode, lengthForDecode, false, m_contentType == XML && !m_useLenientXMLDecoding, m_sawError);
427 if (!m_codec)
428 m_codec = newTextCodec(m_encoding);
430 String result = m_codec->decode(m_buffer.data(), m_buffer.size(), true, m_contentType == XML && !m_useLenientXMLDecoding, m_sawError);
432 m_codec.clear();
TextResourceDecoder.h 88 OwnPtr<TextCodec> m_codec; member in class:WebCore::TextResourceDecoder

Completed in 43 milliseconds