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()
43 encodeContents += wchar_t(checksum - 0 + '0'); in Preprocess()
46 encodeContents = encodeContents.Left(8); in Preprocess()
48 return encodeContents; in Preprocess()
58 WideString encodeContents = Preprocess(contents); in Encode() local
59 ByteString byteString = encodeContents.UTF8Encode(); in Encode()
60 m_renderContents = encodeContents; in Encode()
66 return pWriter->RenderResult(encodeContents.AsStringView(), data.get(), in Encode()