Home
last modified time | relevance | path

Searched refs:CBC_CodeBase (Results 1 – 12 of 12) sorted by relevance

/external/pdfium/fxbarcode/
Dcbc_codebase.cpp28 CBC_CodeBase::CBC_CodeBase(std::unique_ptr<CBC_Writer> pWriter) in CBC_CodeBase() function in CBC_CodeBase
31 CBC_CodeBase::~CBC_CodeBase() {} in ~CBC_CodeBase()
33 bool CBC_CodeBase::SetCharEncoding(int32_t encoding) { in SetCharEncoding()
37 bool CBC_CodeBase::SetModuleHeight(int32_t moduleHeight) { in SetModuleHeight()
41 bool CBC_CodeBase::SetModuleWidth(int32_t moduleWidth) { in SetModuleWidth()
45 bool CBC_CodeBase::SetHeight(int32_t height) { in SetHeight()
49 bool CBC_CodeBase::SetWidth(int32_t width) { in SetWidth()
53 void CBC_CodeBase::SetBackgroundColor(FX_ARGB backgroundColor) { in SetBackgroundColor()
57 void CBC_CodeBase::SetBarcodeColor(FX_ARGB foregroundColor) { in SetBarcodeColor()
Dcbc_codebase.h23 class CBC_CodeBase {
25 explicit CBC_CodeBase(std::unique_ptr<CBC_Writer> pWriter);
26 virtual ~CBC_CodeBase();
Dcbc_datamatrix.h17 class CBC_DataMatrix : public CBC_CodeBase {
Dcbc_qrcode.h17 class CBC_QRCode : public CBC_CodeBase {
Dcbc_pdf417i.h17 class CBC_PDF417I : public CBC_CodeBase {
Dcbc_onecode.h19 class CBC_OneCode : public CBC_CodeBase {
Dcbc_datamatrix.cpp30 : CBC_CodeBase(pdfium::MakeUnique<CBC_DataMatrixWriter>()) {} in CBC_DataMatrix()
Dcbc_qrcode.cpp30 : CBC_CodeBase(pdfium::MakeUnique<CBC_QRCodeWriter>()) {} in CBC_QRCode()
Dcbc_pdf417i.cpp30 : CBC_CodeBase(pdfium::MakeUnique<CBC_PDF417Writer>()) {} in CBC_PDF417I()
Dcbc_onecode.cpp29 : CBC_CodeBase(std::move(pWriter)) {} in CBC_OneCode()
/external/pdfium/xfa/fwl/
Dcfx_barcode.cpp26 std::unique_ptr<CBC_CodeBase> CreateBarCodeEngineObject(BC_TYPE type) { in CreateBarCodeEngineObject()
205 typedef bool (CBC_CodeBase::*memptrtype)(BC_TEXT_LOC); in SetTextLocation()
226 typedef bool (CBC_CodeBase::*memptrtype)(int8_t); in SetWideNarrowRatio()
242 typedef bool (CBC_CodeBase::*memptrtype)(char); in SetStartChar()
255 typedef bool (CBC_CodeBase::*memptrtype)(char); in SetEndChar()
268 typedef bool (CBC_CodeBase::*memptrtype)(int32_t); in SetErrorCorrectionLevel()
284 typedef void (CBC_CodeBase::*memptrtype)(bool); in SetTruncated()
Dcfx_barcode.h18 class CBC_CodeBase; variable
59 std::unique_ptr<CBC_CodeBase> m_pBCEngine;