Home
last modified time | relevance | path

Searched refs:m_codewords (Results 1 – 12 of 12) sorted by relevance

/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417DetectionResultColumn.cpp31 m_codewords = new CFX_PtrArray; in CBC_DetectionResultColumn()
32 m_codewords->SetSize(boundingBox->getMaxY() - boundingBox->getMinY() + 1); in CBC_DetectionResultColumn()
35 for (int32_t i = 0; i < m_codewords->GetSize(); i++) { in ~CBC_DetectionResultColumn()
36 delete (CBC_Codeword*)m_codewords->GetAt(i); in ~CBC_DetectionResultColumn()
38 m_codewords->RemoveAll(); in ~CBC_DetectionResultColumn()
39 delete m_codewords; in ~CBC_DetectionResultColumn()
49 codeword = (CBC_Codeword*)m_codewords->GetAt(nearImageRow); in getCodewordNearby()
55 if (nearImageRow < m_codewords->GetSize()) { in getCodewordNearby()
56 codeword = (CBC_Codeword*)m_codewords->GetAt(nearImageRow); in getCodewordNearby()
73 m_codewords->SetAt(imageRowToCodewordIndex(imageRow), codeword); in setCodeword()
[all …]
DBC_PDF417DetectionResultColumn.h26 CFX_PtrArray* m_codewords; variable
DBC_PDF417DetectionResultRowIndicatorColumn.cpp41 for (int32_t i = 0; i < m_codewords->GetSize(); i++) { in setRowNumbers()
42 CBC_Codeword* codeword = (CBC_Codeword*)m_codewords->GetAt(i); in setRowNumbers()
/external/pdfium/xfa/src/fxbarcode/qrcode/
DBC_QRDataBlock.cpp30 : m_numDataCodewords(numDataCodewords), m_codewords(codewords) {} in CBC_QRDataBlock()
32 if (m_codewords != NULL) { in ~CBC_QRDataBlock()
33 delete m_codewords; in ~CBC_QRDataBlock()
34 m_codewords = NULL; in ~CBC_QRDataBlock()
41 return m_codewords; in GetCodewords()
76 ((CBC_QRDataBlock*)(*result)[0])->m_codewords->GetSize(); in GetDataBlocks()
80 ->m_codewords->GetSize(); in GetDataBlocks()
93 (*(((CBC_QRDataBlock*)(*result)[x])->m_codewords))[k] = in GetDataBlocks()
99 ->m_codewords))[shorterBlocksNumDataCodewords] = in GetDataBlocks()
102 int32_t max = ((CBC_QRDataBlock*)(*result)[0])->m_codewords->GetSize(); in GetDataBlocks()
[all …]
DBC_QRDataBlock.h16 CFX_ByteArray* m_codewords; variable
/external/pdfium/xfa/src/fxbarcode/datamatrix/
DBC_EncoderContext.cpp76 m_codewords += codewords; in writeCodewords()
79 m_codewords += codeword; in writeCodeword()
82 return m_codewords.GetLength(); in getCodewordCount()
DBC_DataMatrixDataBlock.cpp29 m_codewords.Copy(*codewords); in CBC_DataMatrixDataBlock()
110 return &m_codewords; in GetCodewords()
DBC_DataMatrixDataBlock.h23 CFX_ByteArray m_codewords; variable
DBC_DefaultPlacement.cpp29 m_codewords = codewords; in CBC_DefaultPlacement()
111 int32_t v = m_codewords.GetAt(pos); in module()
DBC_DefaultPlacement.h25 CFX_WideString m_codewords;
DBC_EncoderContext.h38 CFX_WideString m_codewords; variable
DBC_HighLevelEncoder.cpp111 int32_t len = context.m_codewords.GetLength(); in encodeHighLevel()
127 CFX_WideString codewords = context.m_codewords; in encodeHighLevel()