Home
last modified time | relevance | path

Searched refs:CFX_Barcode (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/fxbarcode/
Dcfx_barcode.cpp58 CFX_Barcode::CFX_Barcode() {} in CFX_Barcode() function in CFX_Barcode
60 CFX_Barcode::~CFX_Barcode() {} in ~CFX_Barcode()
62 std::unique_ptr<CFX_Barcode> CFX_Barcode::Create(BC_TYPE type) { in Create()
63 auto barcode = pdfium::WrapUnique(new CFX_Barcode()); // Private ctor. in Create()
68 BC_TYPE CFX_Barcode::GetType() { in GetType()
72 bool CFX_Barcode::SetCharEncoding(BC_CHAR_ENCODING encoding) { in SetCharEncoding()
76 bool CFX_Barcode::SetModuleHeight(int32_t moduleHeight) { in SetModuleHeight()
80 bool CFX_Barcode::SetModuleWidth(int32_t moduleWidth) { in SetModuleWidth()
84 bool CFX_Barcode::SetHeight(int32_t height) { in SetHeight()
88 bool CFX_Barcode::SetWidth(int32_t width) { in SetWidth()
[all …]
Dcfx_barcode.h23 class CFX_Barcode {
25 ~CFX_Barcode();
27 static std::unique_ptr<CFX_Barcode> Create(BC_TYPE type);
57 CFX_Barcode();
Dcfx_barcode_unittest.cpp42 CFX_Barcode* barcode() const { return barcode_.get(); } in barcode()
45 barcode_ = CFX_Barcode::Create(type); in Create()
66 std::unique_ptr<CFX_Barcode> barcode_;
/external/pdfium/xfa/fwl/
Dcfwl_barcode.h15 class CFX_Barcode; variable
86 std::unique_ptr<CFX_Barcode> m_pBarcodeEngine;
Dcfwl_barcode.cpp209 m_pBarcodeEngine = CFX_Barcode::Create(m_type); in CreateBarcodeEngine()
/external/pdfium/testing/fuzzers/
Dpdf_cfx_barcode_fuzzer.cc20 auto barcode = CFX_Barcode::Create(type); in LLVMFuzzerTestOneInput()