HomeSort by relevance Sort by last modified time
    Searched refs:CBC_ResultPoint (Results 1 - 25 of 26) sorted by null

1 2

  /external/pdfium/xfa/src/fxbarcode/
BC_ResultPoint.h 9 class CBC_ResultPoint;
10 class CBC_ResultPoint {
12 CBC_ResultPoint();
13 CBC_ResultPoint(FX_FLOAT x, FX_FLOAT y);
14 virtual ~CBC_ResultPoint() {}
BC_ResultPoint.cpp 25 CBC_ResultPoint::CBC_ResultPoint(FX_FLOAT x, FX_FLOAT y) : m_x(x), m_y(y) {}
26 FX_FLOAT CBC_ResultPoint::GetX() {
29 FX_FLOAT CBC_ResultPoint::GetY() {
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixDetector.h 11 class CBC_ResultPoint;
17 CBC_ResultPointsAndTransitions(CBC_ResultPoint* from,
18 CBC_ResultPoint* to,
25 CBC_ResultPoint* GetFrom() { return m_from; }
26 CBC_ResultPoint* GetTo() { return m_to; }
30 CBC_ResultPoint* m_from;
31 CBC_ResultPoint* m_to;
39 CBC_ResultPoint* CorrectTopRightRectangular(CBC_ResultPoint* bottomLeft,
40 CBC_ResultPoint* bottomRight,
    [all...]
BC_DataMatrixDetector.cpp 54 CBC_ResultPoint* pointA = (CBC_ResultPoint*)(*cornerPoints)[0];
55 CBC_ResultPoint* pointB = (CBC_ResultPoint*)(*cornerPoints)[1];
56 CBC_ResultPoint* pointC = (CBC_ResultPoint*)(*cornerPoints)[2];
57 CBC_ResultPoint* pointD = (CBC_ResultPoint*)(*cornerPoints)[3];
72 CFX_MapPtrTemplate<CBC_ResultPoint*, int32_t> pointCount;
80 CBC_ResultPoint* maybeTopLeft = NULL;
    [all...]
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417BoundingBox.h 10 class CBC_ResultPoint;
14 CBC_ResultPoint* topLeft,
15 CBC_ResultPoint* bottomLeft,
16 CBC_ResultPoint* topRight,
17 CBC_ResultPoint* bottomRight,
28 void setTopRight(CBC_ResultPoint topRight);
29 void setBottomRight(CBC_ResultPoint bottomRight);
34 CBC_ResultPoint* getTopLeft();
35 CBC_ResultPoint* getTopRight();
36 CBC_ResultPoint* getBottomLeft();
    [all...]
BC_PDF417Reader.cpp 70 detectorResult->getBits(), (CBC_ResultPoint*)points->GetAt(4),
71 (CBC_ResultPoint*)points->GetAt(5), (CBC_ResultPoint*)points->GetAt(6),
72 (CBC_ResultPoint*)points->GetAt(7), getMinCodewordWidth(*points),
92 int32_t CBC_PDF417Reader::getMaxWidth(CBC_ResultPoint* p1,
93 CBC_ResultPoint* p2) {
99 int32_t CBC_PDF417Reader::getMinWidth(CBC_ResultPoint* p1,
100 CBC_ResultPoint* p2) {
108 getMaxWidth((CBC_ResultPoint*)p.GetAt(6), (CBC_ResultPoint*)p.GetAt(2)) *
    [all...]
BC_PDF417Reader.h 10 class CBC_ResultPoint;
24 static int32_t getMaxWidth(CBC_ResultPoint* p1, CBC_ResultPoint* p2);
25 static int32_t getMinWidth(CBC_ResultPoint* p1, CBC_ResultPoint* p2);
BC_PDF417BoundingBox.cpp 28 CBC_ResultPoint* topLeft,
29 CBC_ResultPoint* bottomLeft,
30 CBC_ResultPoint* topRight,
31 CBC_ResultPoint* bottomRight,
81 CBC_ResultPoint* newTopLeft = m_topLeft;
82 CBC_ResultPoint* newBottomLeft = m_bottomLeft;
83 CBC_ResultPoint* newTopRight = m_topRight;
84 CBC_ResultPoint* newBottomRight = m_bottomRight;
85 CBC_ResultPoint* newTop = NULL;
86 CBC_ResultPoint* newBottom = NULL;
    [all...]
BC_PDF417ScanningDecoder.h 14 class CBC_ResultPoint;
27 CBC_ResultPoint* imageTopLeft,
28 CBC_ResultPoint* imageBottomLeft,
29 CBC_ResultPoint* imageTopRight,
30 CBC_ResultPoint* imageBottomRight,
55 CBC_ResultPoint startPoint,
BC_PDF417DetectorResult.cpp 36 delete (CBC_ResultPoint*)temp->GetAt(j);
BC_PDF417Detector.cpp 125 row = row > ((CBC_ResultPoint*)barcodeCoordinate->GetAt(1))->GetY();
128 row = row > ((CBC_ResultPoint*)barcodeCoordinate->GetAt(3))->GetY();
143 column = (int32_t)((CBC_ResultPoint*)vertices->GetAt(2))->GetX();
144 row = (int32_t)((CBC_ResultPoint*)vertices->GetAt(2))->GetY();
146 column = (int32_t)((CBC_ResultPoint*)vertices->GetAt(4))->GetX();
147 row = (int32_t)((CBC_ResultPoint*)vertices->GetAt(4))->GetY();
168 startColumn = (int32_t)((CBC_ResultPoint*)result->GetAt(4))->GetX();
169 startRow = (int32_t)((CBC_ResultPoint*)result->GetAt(4))->GetY();
218 0, new CBC_ResultPoint((FX_FLOAT)loc->GetAt(0), (FX_FLOAT)startRow));
220 1, new CBC_ResultPoint((FX_FLOAT)loc->GetAt(1), (FX_FLOAT)startRow));
    [all...]
BC_PDF417DetectionResultRowIndicatorColumn.cpp 55 CBC_ResultPoint* top =
57 CBC_ResultPoint* bottom =
131 CBC_ResultPoint* top =
133 CBC_ResultPoint* bottom =
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRDetector.h 9 class CBC_ResultPoint;
32 FX_FLOAT CalculateModuleSize(CBC_ResultPoint* topLeft,
33 CBC_ResultPoint* topRight,
34 CBC_ResultPoint* bottomLeft);
35 FX_FLOAT CalculateModuleSizeOneWay(CBC_ResultPoint* pattern,
36 CBC_ResultPoint* otherPattern);
51 static int32_t ComputeDimension(CBC_ResultPoint* topLeft,
52 CBC_ResultPoint* topRight,
53 CBC_ResultPoint* bottomLeft,
57 CBC_ResultPoint* topLeft,
    [all...]
BC_QRAlignmentPattern.h 10 class CBC_ResultPoint;
12 class CBC_QRAlignmentPattern : public CBC_ResultPoint {
BC_QRDetectorResult.h 10 class CBC_ResultPoint;
BC_QRFinderPattern.h 9 class CBC_ResultPoint;
11 class CBC_QRFinderPattern : public CBC_ResultPoint {
BC_QRDetectorResult.cpp 32 delete (CBC_ResultPoint*)(*m_points)[i];
BC_QRFinderPatternFinder.h 11 class CBC_ResultPoint;
51 static FX_FLOAT Distance(CBC_ResultPoint* point1, CBC_ResultPoint* point2);
BC_QRCodeReader.h 12 class CBC_ResultPoint;
BC_QRDetector.cpp 90 (CBC_ResultPoint*)(alignmentPattern), dimension, e);
107 CBC_ResultPoint* topLeft,
108 CBC_ResultPoint* topRight,
109 CBC_ResultPoint* bottomLeft,
110 CBC_ResultPoint* alignmentPattern,
136 int32_t CBC_QRDetector::ComputeDimension(CBC_ResultPoint* topLeft,
137 CBC_ResultPoint* topRight,
138 CBC_ResultPoint* bottomLeft,
160 FX_FLOAT CBC_QRDetector::CalculateModuleSize(CBC_ResultPoint* topLeft,
161 CBC_ResultPoint* topRight,
    [all...]
BC_QRAlignmentPattern.cpp 29 : CBC_ResultPoint(posX, posY), m_moduleSize(estimateModuleSize) {}
BC_QRFinderPattern.cpp 29 : CBC_ResultPoint(x, posY),
BC_QRFinderPatternFinder.cpp 165 FX_FLOAT abDistance = Distance((CBC_ResultPoint*)(*patterns)[0],
166 (CBC_ResultPoint*)(*patterns)[1]);
167 FX_FLOAT bcDistance = Distance((CBC_ResultPoint*)(*patterns)[1],
168 (CBC_ResultPoint*)(*patterns)[2]);
169 FX_FLOAT acDistance = Distance((CBC_ResultPoint*)(*patterns)[0],
170 (CBC_ResultPoint*)(*patterns)[2]);
197 FX_FLOAT CBC_QRFinderPatternFinder::Distance(CBC_ResultPoint* point1,
198 CBC_ResultPoint* point2) {
  /external/pdfium/xfa/src/fxbarcode/common/
BC_WhiteRectangleDetector.h 10 class CBC_ResultPoint;
24 CBC_ResultPoint* GetBlackPointOnSegment(FX_FLOAT aX,
29 CFX_PtrArray* CenterEdges(CBC_ResultPoint* y,
30 CBC_ResultPoint* z,
31 CBC_ResultPoint* x,
32 CBC_ResultPoint* t);
BC_WhiteRectangleDetector.cpp 125 CBC_AutoPtr<CBC_ResultPoint> z(NULL);
127 z = CBC_AutoPtr<CBC_ResultPoint>(
138 CBC_AutoPtr<CBC_ResultPoint> t(NULL);
140 t = CBC_AutoPtr<CBC_ResultPoint>(
151 CBC_AutoPtr<CBC_ResultPoint> x(NULL);
153 x = CBC_AutoPtr<CBC_ResultPoint>(
164 CBC_AutoPtr<CBC_ResultPoint> y(NULL);
166 y = CBC_AutoPtr<CBC_ResultPoint>(
187 CBC_ResultPoint* CBC_WhiteRectangleDetector::GetBlackPointOnSegment(
199 return new CBC_ResultPoint((FX_FLOAT)x, (FX_FLOAT)y);
    [all...]

Completed in 228 milliseconds

1 2