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::SetTextLocation(BC_TEXT_LOC location) { in SetTextLocation()
37 bool CBC_CodeBase::SetWideNarrowRatio(int8_t ratio) { in SetWideNarrowRatio()
41 bool CBC_CodeBase::SetStartChar(char start) { in SetStartChar()
45 bool CBC_CodeBase::SetEndChar(char end) { in SetEndChar()
49 bool CBC_CodeBase::SetErrorCorrectionLevel(int32_t level) { in SetErrorCorrectionLevel()
53 bool CBC_CodeBase::SetCharEncoding(int32_t encoding) { in SetCharEncoding()
57 bool CBC_CodeBase::SetModuleHeight(int32_t moduleHeight) { in SetModuleHeight()
61 bool CBC_CodeBase::SetModuleWidth(int32_t moduleWidth) { in SetModuleWidth()
[all …]
Dcbc_codebase.h23 class CBC_CodeBase {
25 explicit CBC_CodeBase(std::unique_ptr<CBC_Writer> pWriter);
26 virtual ~CBC_CodeBase();
Dcfx_barcode.h18 class CBC_CodeBase; variable
59 std::unique_ptr<CBC_CodeBase> m_pBCEngine;
Dcbc_pdf417i.h16 class CBC_PDF417I final : public CBC_CodeBase {
Dcbc_datamatrix.h16 class CBC_DataMatrix final : public CBC_CodeBase {
Dcbc_qrcode.h16 class CBC_QRCode final : 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.cpp38 : CBC_CodeBase(pdfium::MakeUnique<CBC_PDF417Writer>()) {} in CBC_PDF417I()
Dcbc_onecode.cpp29 : CBC_CodeBase(std::move(pWriter)) {} in CBC_OneCode()
Dcfx_barcode.cpp26 std::unique_ptr<CBC_CodeBase> CreateBarCodeEngineObject(BC_TYPE type) { in CreateBarCodeEngineObject()