Home
last modified time | relevance | path

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

/external/pdfium/xfa/fxbarcode/
Dcbc_codebase.cpp26 CBC_CodeBase::CBC_CodeBase(CBC_Writer* pWriter) : m_pBCWriter(pWriter) {} in CBC_CodeBase() function in CBC_CodeBase
28 CBC_CodeBase::~CBC_CodeBase() {} in ~CBC_CodeBase()
30 bool CBC_CodeBase::SetCharEncoding(int32_t encoding) { in SetCharEncoding()
34 bool CBC_CodeBase::SetModuleHeight(int32_t moduleHeight) { in SetModuleHeight()
38 bool CBC_CodeBase::SetModuleWidth(int32_t moduleWidth) { in SetModuleWidth()
42 bool CBC_CodeBase::SetHeight(int32_t height) { in SetHeight()
46 bool CBC_CodeBase::SetWidth(int32_t width) { in SetWidth()
50 void CBC_CodeBase::SetBackgroundColor(FX_ARGB backgroundColor) { in SetBackgroundColor()
55 void CBC_CodeBase::SetBarcodeColor(FX_ARGB foregroundColor) { in SetBarcodeColor()
Dcbc_codebase.h21 class CBC_CodeBase {
23 explicit CBC_CodeBase(CBC_Writer* pWriter);
24 virtual ~CBC_CodeBase();
Dcbc_datamatrix.h15 class CBC_DataMatrix : public CBC_CodeBase {
Dcbc_pdf417i.h15 class CBC_PDF417I : public CBC_CodeBase {
Dcbc_qrcode.h15 class CBC_QRCode : public CBC_CodeBase {
Dcbc_onecode.h18 class CBC_OneCode : public CBC_CodeBase {
Dcbc_datamatrix.cpp26 CBC_DataMatrix::CBC_DataMatrix() : CBC_CodeBase(new CBC_DataMatrixWriter) {} in CBC_DataMatrix()
Dcbc_pdf417i.cpp26 CBC_PDF417I::CBC_PDF417I() : CBC_CodeBase(new CBC_PDF417Writer) {} in CBC_PDF417I()
Dcbc_qrcode.cpp26 CBC_QRCode::CBC_QRCode() : CBC_CodeBase(new CBC_QRCodeWriter) {} in CBC_QRCode()
Dcbc_onecode.cpp26 CBC_OneCode::CBC_OneCode(CBC_Writer* pWriter) : CBC_CodeBase(pWriter) {} in CBC_OneCode()
/external/pdfium/xfa/fwl/
Dcfx_barcode.cpp23 CBC_CodeBase* CreateBarCodeEngineObject(BC_TYPE type) { in CreateBarCodeEngineObject()
202 typedef bool (CBC_CodeBase::*memptrtype)(BC_TEXT_LOC); in SetTextLocation()
223 typedef bool (CBC_CodeBase::*memptrtype)(int32_t); in SetWideNarrowRatio()
239 typedef bool (CBC_CodeBase::*memptrtype)(FX_CHAR); in SetStartChar()
252 typedef bool (CBC_CodeBase::*memptrtype)(FX_CHAR); in SetEndChar()
265 typedef bool (CBC_CodeBase::*memptrtype)(int32_t); in SetVersion()
278 typedef bool (CBC_CodeBase::*memptrtype)(int32_t); in SetErrorCorrectionLevel()
293 typedef void (CBC_CodeBase::*memptrtype)(bool); in SetTruncated()
Dcfx_barcode.h18 class CBC_CodeBase; variable
62 std::unique_ptr<CBC_CodeBase> m_pBCEngine;