Home
last modified time | relevance | path

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

/external/pdfium/fxbarcode/pdf417/
DBC_PDF417BarcodeRow.cpp25 CBC_BarcodeRow::CBC_BarcodeRow(size_t width) in CBC_BarcodeRow() function in CBC_BarcodeRow
28 CBC_BarcodeRow::~CBC_BarcodeRow() {} in ~CBC_BarcodeRow()
30 void CBC_BarcodeRow::set(int32_t x, uint8_t value) { in set()
34 void CBC_BarcodeRow::set(int32_t x, bool black) { in set()
38 void CBC_BarcodeRow::addBar(bool black, int32_t width) { in addBar()
43 std::vector<uint8_t>& CBC_BarcodeRow::getRow() { in getRow()
47 std::vector<uint8_t>& CBC_BarcodeRow::getScaledRow(int32_t scale) { in getScaledRow()
DBC_PDF417BarcodeRow.h14 class CBC_BarcodeRow {
16 explicit CBC_BarcodeRow(size_t width);
17 virtual ~CBC_BarcodeRow();
DBC_PDF417BarcodeMatrix.h13 class CBC_BarcodeRow; variable
21 CBC_BarcodeRow* getCurrentRow() const { return m_matrix[m_currentRow].get(); } in getCurrentRow()
32 std::vector<std::unique_ptr<CBC_BarcodeRow>> m_matrix;
DBC_PDF417.h16 class CBC_BarcodeRow; variable
47 static void encodeChar(int32_t pattern, int32_t len, CBC_BarcodeRow* logic);
DBC_PDF417BarcodeMatrix.cpp30 m_matrix[i] = pdfium::MakeUnique<CBC_BarcodeRow>((width + 4) * 17 + 1); in CBC_BarcodeMatrix()
DBC_PDF417.cpp483 CBC_BarcodeRow* logic) { in encodeChar()