Searched refs:m_codec (Results 1 – 8 of 8) sorted by relevance
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/ |
D | openjpeg.c | 243 l_codec->m_codec = opj_j2k_create_decompress(); in opj_create_decompress() 245 if (! l_codec->m_codec) { in opj_create_decompress() 319 l_codec->m_codec = opj_jp2_create(OPJ_TRUE); in opj_create_decompress() 321 if (! l_codec->m_codec) { in opj_create_decompress() 371 l_codec->m_codec_data.m_decompression.opj_setup_decoder(l_codec->m_codec, in opj_setup_decoder() 393 l_codec->m_codec, in opj_read_header() 413 return l_codec->m_codec_data.m_decompression.opj_decode(l_codec->m_codec, in opj_decode() 435 return l_codec->m_codec_data.m_decompression.opj_set_decode_area( l_codec->m_codec, in opj_set_decode_area() 461 return l_codec->m_codec_data.m_decompression.opj_read_tile_header( l_codec->m_codec, in opj_read_tile_header() 489 return l_codec->m_codec_data.m_decompression.opj_decode_tile_data( l_codec->m_codec, in opj_decode_tile_data() [all …]
|
D | opj_codec.h | 152 void * m_codec; member
|
/external/chromium_org/third_party/WebKit/Source/modules/encoding/ |
D | TextEncoder.cpp | 60 , m_codec(newTextCodec(encoding)) in TextEncoder() 79 … result = m_codec->encode(input.characters8(), input.length(), WTF::QuestionMarksForUnencodables); in encode() 81 … result = m_codec->encode(input.characters16(), input.length(), WTF::QuestionMarksForUnencodables); in encode()
|
D | TextDecoder.cpp | 58 , m_codec(newTextCodec(encoding)) in TextDecoder() 87 String s = m_codec->decode(start, length, flush, m_fatal, sawError); in decode()
|
D | TextEncoder.h | 62 OwnPtr<WTF::TextCodec> m_codec; variable
|
D | TextDecoder.h | 66 OwnPtr<WTF::TextCodec> m_codec; variable
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | TextResourceDecoder.cpp | 147 m_codec.clear(); in setEncoding() 408 if (!m_codec) in decode() 409 m_codec = newTextCodec(m_encoding); in decode() 411 …String result = m_codec->decode(dataForDecode, lengthForDecode, DoNotFlush, m_contentType == XMLCo… in decode() 429 if (!m_codec) in flush() 430 m_codec = newTextCodec(m_encoding); in flush() 432 …String result = m_codec->decode(m_buffer.data(), m_buffer.size(), FetchEOF, m_contentType == XMLCo… in flush() 434 m_codec.clear(); in flush()
|
D | TextResourceDecoder.h | 89 OwnPtr<TextCodec> m_codec; variable
|