Home
last modified time | relevance | path

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

/external/pdfium/xfa/fxbarcode/
Dcbc_upca.cpp33 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()
[all …]
Dcbc_ean8.cpp31 CFX_WideString encodeContents = 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 += FX_WCHAR(checksum - 0 + '0'); in Preprocess()
45 encodeContents = encodeContents.Mid(0, 8); 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()
[all …]
Dcbc_ean13.cpp31 CFX_WideString encodeContents = 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()
43 encodeContents = byteString.UTF8Decode(); in Preprocess()
46 encodeContents = encodeContents.Mid(0, 13); in Preprocess()
48 return encodeContents; in Preprocess()
61 CFX_WideString encodeContents = Preprocess(contents); in Encode() local
62 CFX_ByteString byteString = encodeContents.UTF8Encode(); in Encode()
63 m_renderContents = encodeContents; in Encode()
[all …]
Dcbc_code128.cpp54 CFX_WideString encodeContents = in Encode() local
57 m_renderContents = encodeContents; in Encode()
58 CFX_ByteString byteString = encodeContents.UTF8Encode(); in Encode()
64 ->RenderResult(encodeContents.AsStringC(), data, outWidth, isDevice, e); in Encode()