Searched refs:CBC_CodeBase (Results 1 – 12 of 12) sorted by relevance
28 CBC_CodeBase::CBC_CodeBase(std::unique_ptr<CBC_Writer> pWriter) in CBC_CodeBase() function in CBC_CodeBase31 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 …]
23 class CBC_CodeBase {25 explicit CBC_CodeBase(std::unique_ptr<CBC_Writer> pWriter);26 virtual ~CBC_CodeBase();
18 class CBC_CodeBase; variable59 std::unique_ptr<CBC_CodeBase> m_pBCEngine;
16 class CBC_PDF417I final : public CBC_CodeBase {
16 class CBC_DataMatrix final : public CBC_CodeBase {
16 class CBC_QRCode final : public CBC_CodeBase {
19 class CBC_OneCode : public CBC_CodeBase {
30 : CBC_CodeBase(pdfium::MakeUnique<CBC_DataMatrixWriter>()) {} in CBC_DataMatrix()
30 : CBC_CodeBase(pdfium::MakeUnique<CBC_QRCodeWriter>()) {} in CBC_QRCode()
38 : CBC_CodeBase(pdfium::MakeUnique<CBC_PDF417Writer>()) {} in CBC_PDF417I()
29 : CBC_CodeBase(std::move(pWriter)) {} in CBC_OneCode()
26 std::unique_ptr<CBC_CodeBase> CreateBarCodeEngineObject(BC_TYPE type) { in CreateBarCodeEngineObject()