Lines Matching refs:encodeContents
35 WideString encodeContents = pWriter->FilterContents(contents); in Preprocess() local
36 int32_t length = encodeContents.GetLength(); in Preprocess()
39 encodeContents = wchar_t('0') + encodeContents; in Preprocess()
41 ByteString byteString = encodeContents.UTF8Encode(); in Preprocess()
44 encodeContents = byteString.UTF8Decode(); in Preprocess()
47 encodeContents = encodeContents.Left(12); in Preprocess()
49 return encodeContents; in Preprocess()
59 WideString encodeContents = Preprocess(contents); in Encode() local
60 ByteString byteString = encodeContents.UTF8Encode(); in Encode()
61 m_renderContents = encodeContents; in Encode()
69 return pWriter->RenderResult(encodeContents.AsStringView(), data.get(), in Encode()