Home
last modified time | relevance | path

Searched refs:encodeContents (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/fxbarcode/
Dcbc_ean8.cpp35 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()
[all …]
Dcbc_ean13.cpp36 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()
[all …]
Dcbc_upca.cpp35 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()
[all …]
Dcbc_code128.cpp50 WideString encodeContents = pWriter->FilterContents(content.AsStringView()); in Encode() local
51 m_renderContents = encodeContents; in Encode()
52 ByteString byteString = encodeContents.UTF8Encode(); in Encode()
57 return pWriter->RenderResult(encodeContents.AsStringView(), data.get(), in Encode()