Home
last modified time | relevance | path

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

/external/pdfium/fxbarcode/pdf417/
DBC_PDF417BarcodeRow.cpp27 CBC_BarcodeRow::CBC_BarcodeRow(size_t width) in CBC_BarcodeRow() function in CBC_BarcodeRow
30 CBC_BarcodeRow::~CBC_BarcodeRow() {} in ~CBC_BarcodeRow()
32 void CBC_BarcodeRow::addBar(bool black, int32_t width) { in addBar()
37 std::vector<uint8_t>& CBC_BarcodeRow::getRow() { in getRow()
DBC_PDF417BarcodeRow.h14 class CBC_BarcodeRow final {
16 explicit CBC_BarcodeRow(size_t width);
17 ~CBC_BarcodeRow();
DBC_PDF417BarcodeMatrix.h13 class CBC_BarcodeRow; variable
20 CBC_BarcodeRow* getRow(size_t row) const { return m_matrix[row].get(); } in getRow()
26 std::vector<std::unique_ptr<CBC_BarcodeRow>> m_matrix;
DBC_PDF417.h15 class CBC_BarcodeRow; variable
42 static void encodeChar(int32_t pattern, int32_t len, CBC_BarcodeRow* logic);
DBC_PDF417BarcodeMatrix.cpp31 m_matrix[i] = pdfium::MakeUnique<CBC_BarcodeRow>(m_width); in CBC_BarcodeMatrix()
DBC_PDF417.cpp433 CBC_BarcodeRow* logic) { in encodeChar()
458 CBC_BarcodeRow* logicRow = logic->getRow(y); in encodeLowLevel()