Home
last modified time | relevance | path

Searched refs:CBC_Codeword (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417Codeword.cpp25 int32_t CBC_Codeword::BARCODE_ROW_UNKNOWN = -1;
26 CBC_Codeword::CBC_Codeword(int32_t startX, in CBC_Codeword() function in CBC_Codeword
36 CBC_Codeword::~CBC_Codeword() {} in ~CBC_Codeword()
37 FX_BOOL CBC_Codeword::hasValidRowNumber() { in hasValidRowNumber()
40 FX_BOOL CBC_Codeword::isValidRowNumber(int32_t rowNumber) { in isValidRowNumber()
44 void CBC_Codeword::setRowNumberAsRowIndicatorColumn() { in setRowNumberAsRowIndicatorColumn()
47 int32_t CBC_Codeword::getWidth() { in getWidth()
50 int32_t CBC_Codeword::getStartX() { in getStartX()
53 int32_t CBC_Codeword::getEndX() { in getEndX()
56 int32_t CBC_Codeword::getBucket() { in getBucket()
[all …]
DBC_PDF417DetectionResult.cpp95 CBC_Codeword* codeword = in toString()
96 (CBC_Codeword*)((CBC_DetectionResultColumn*) in toString()
132 if (!((CBC_Codeword*)codewords->GetAt(codewordsRow)) in adjustRowNumbers()
160 ((CBC_Codeword*)LRIcodewords->GetAt(codewordsRow))->getRowNumber() == in adjustRowNumbersFromBothRI()
161 ((CBC_Codeword*)RRIcodewords->GetAt(codewordsRow)) in adjustRowNumbersFromBothRI()
165 CBC_Codeword* codeword = in adjustRowNumbersFromBothRI()
166 (CBC_Codeword*)((CBC_DetectionResultColumn*) in adjustRowNumbersFromBothRI()
174 ((CBC_Codeword*)LRIcodewords->GetAt(codewordsRow))->getRowNumber()); in adjustRowNumbersFromBothRI()
200 ((CBC_Codeword*)codewords->GetAt(codewordsRow))->getRowNumber(); in adjustRowNumbersFromRRI()
205 CBC_Codeword* codeword = in adjustRowNumbersFromRRI()
[all …]
DBC_PDF417DetectionResultColumn.cpp36 delete (CBC_Codeword*)m_codewords->GetAt(i); in ~CBC_DetectionResultColumn()
41 CBC_Codeword* CBC_DetectionResultColumn::getCodewordNearby(int32_t imageRow) { in getCodewordNearby()
42 CBC_Codeword* codeword = getCodeword(imageRow); in getCodewordNearby()
49 codeword = (CBC_Codeword*)m_codewords->GetAt(nearImageRow); in getCodewordNearby()
56 codeword = (CBC_Codeword*)m_codewords->GetAt(nearImageRow); in getCodewordNearby()
72 CBC_Codeword* codeword) { in setCodeword()
75 CBC_Codeword* CBC_DetectionResultColumn::getCodeword(int32_t imageRow) { in getCodeword()
76 return (CBC_Codeword*)m_codewords->GetAt(imageRowToCodewordIndex(imageRow)); in getCodeword()
88 CBC_Codeword* codeword = (CBC_Codeword*)m_codewords->GetAt(i); in toString()
DBC_PDF417DetectionResultRowIndicatorColumn.cpp42 CBC_Codeword* codeword = (CBC_Codeword*)m_codewords->GetAt(i); in setRowNumbers()
71 CBC_Codeword* codeword = (CBC_Codeword*)codewords->GetAt(codewordsRow); in adjustCompleteIndicatorColumnRowNumbers()
119 CBC_Codeword* codeword = (CBC_Codeword*)getCodewords()->GetAt(i); in getRowHeights()
148 CBC_Codeword* codeword = (CBC_Codeword*)codewords->GetAt(codewordsRow); in adjustIncompleteIndicatorColumnRowNumbers()
175 CBC_Codeword* codeword = (CBC_Codeword*)codewords->GetAt(i); in getBarcodeMetadata()
231 CBC_Codeword* codeword = (CBC_Codeword*)codewords->GetAt(codewordRow); in removeIncorrectCodewords()
DBC_PDF417DetectionResultColumn.h9 class CBC_Codeword; variable
15 CBC_Codeword* getCodewordNearby(int32_t imageRow);
18 void setCodeword(int32_t imageRow, CBC_Codeword* codeword);
19 CBC_Codeword* getCodeword(int32_t imageRow);
DBC_PDF417DetectionResult.h11 class CBC_Codeword; variable
48 CBC_Codeword* codeword);
52 static FX_BOOL adjustRowNumber(CBC_Codeword* codeword,
53 CBC_Codeword* otherCodeword);
DBC_PDF417Codeword.h9 class CBC_Codeword {
11 CBC_Codeword(int32_t startX, int32_t endX, int32_t bucket, int32_t value);
12 virtual ~CBC_Codeword();
DBC_PDF417ScanningDecoder.cpp133 CBC_Codeword* codeword = detectCodeword( in decode()
308 CBC_Codeword* codeword = in getRowIndicatorColumn()
487 CBC_Codeword* codeword = (CBC_Codeword*)temp->GetAt(l); in createBarcodeMatrix()
511 CBC_Codeword* codeword = NULL; in getStartColumn()
539 CBC_Codeword* previousRowCodeword = in getStartColumn()
540 (CBC_Codeword*)detectionResult->getDetectionResultColumn( in getStartColumn()
556 CBC_Codeword* CBC_PDF417ScanningDecoder::detectCodeword( in detectCodeword()
593 return new CBC_Codeword(startColumn, endColumn, in detectCodeword()
DBC_PDF417ScanningDecoder.h12 class CBC_Codeword; variable
80 static CBC_Codeword* detectCodeword(CBC_CommonBitMatrix* image,