Home
last modified time | relevance | path

Searched refs:m_converterTEC (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/text/mac/
DTextCodecMac.cpp87 , m_converterTEC(0) in TextCodecMac()
98 if (m_converterTEC) { in releaseTECConverter()
102 cachedConverter.converter = m_converterTEC; in releaseTECConverter()
104 m_converterTEC = 0; in releaseTECConverter()
116 m_converterTEC = cachedConverter.converter; in createTECConverter()
119 TECClearConverterContextInfo(m_converterTEC); in createTECConverter()
121 OSStatus status = TECCreateConverter(&m_converterTEC, m_encoding, in createTECConverter()
126 TECSetBasicOptions(m_converterTEC, kUnicodeForceASCIIRangeMask); in createTECConverter()
150 …status = TECConvertText(m_converterTEC, m_bufferedBytes, m_numBufferedBytes + bytesToPutInBuffer, … in decode()
184 status = TECConvertText(m_converterTEC, inputBuffer, inputBufferLength, &bytesRead, in decode()
[all …]
DTextCodecMac.h60 mutable TECObjectRef m_converterTEC; variable