Lines Matching refs:encodeContents
33 CFX_WideString encodeContents = pWriter->FilterContents(contents); in Preprocess() local
34 int32_t length = encodeContents.GetLength(); in Preprocess()
37 encodeContents = FX_WCHAR('0') + encodeContents; in Preprocess()
39 CFX_ByteString byteString = encodeContents.UTF8Encode(); in Preprocess()
42 encodeContents = byteString.UTF8Decode(); in Preprocess()
45 encodeContents = encodeContents.Mid(0, 12); in Preprocess()
47 return encodeContents; in Preprocess()
60 CFX_WideString encodeContents = Preprocess(contents); in Encode() local
61 CFX_ByteString byteString = encodeContents.UTF8Encode(); in Encode()
62 m_renderContents = encodeContents; in Encode()
71 pWriter->RenderResult(encodeContents.AsStringC(), data, outWidth, isDevice, in Encode()