Lines Matching refs:encodeContents
36 WideString encodeContents = pWriter->FilterContents(contents); in Preprocess() local
37 int32_t length = encodeContents.GetLength(); in Preprocess()
40 encodeContents = wchar_t('0') + encodeContents; in Preprocess()
42 ByteString byteString = encodeContents.UTF8Encode(); in Preprocess()
45 encodeContents = byteString.UTF8Decode(); in Preprocess()
48 encodeContents = encodeContents.Left(13); in Preprocess()
50 return encodeContents; in Preprocess()
60 WideString encodeContents = Preprocess(contents); in Encode() local
61 ByteString byteString = encodeContents.UTF8Encode(); in Encode()
62 m_renderContents = encodeContents; in Encode()
68 return pWriter->RenderResult(encodeContents.AsStringView(), data.get(), in Encode()