Home
last modified time | relevance | path

Searched refs:GetX (Results 1 – 18 of 18) sorted by relevance

/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417BoundingBox.cpp93 newTop = new CBC_ResultPoint((FX_FLOAT)top->GetX(), (FX_FLOAT)newMinY); in addMissingRows()
107 new CBC_ResultPoint((FX_FLOAT)bottom->GetX(), (FX_FLOAT)newMaxY); in addMissingRows()
126 m_topRight = new CBC_ResultPoint(topRight.GetX(), topRight.GetY()); in setTopRight()
133 m_bottomRight = new CBC_ResultPoint(bottomRight.GetX(), bottomRight.GetY()); in setBottomRight()
171 m_topLeft = new CBC_ResultPoint(topLeft->GetX(), topLeft->GetY()); in init()
174 m_bottomLeft = new CBC_ResultPoint(bottomLeft->GetX(), bottomLeft->GetY()); in init()
177 m_topRight = new CBC_ResultPoint(topRight->GetX(), topRight->GetY()); in init()
181 new CBC_ResultPoint(bottomRight->GetX(), bottomRight->GetY()); in init()
195 m_minX = (int32_t)(m_topLeft->GetX() < m_bottomLeft->GetX() in calculateMinMaxValues()
196 ? m_topLeft->GetX() in calculateMinMaxValues()
[all …]
DBC_PDF417Reader.cpp97 return (int32_t)FXSYS_fabs(p1->GetX() - p2->GetX()); in getMaxWidth()
104 return (int32_t)FXSYS_fabs(p1->GetX() - p2->GetX()); in getMinWidth()
DBC_PDF417Detector.cpp143 column = (int32_t)((CBC_ResultPoint*)vertices->GetAt(2))->GetX(); in detect()
146 column = (int32_t)((CBC_ResultPoint*)vertices->GetAt(4))->GetX(); in detect()
168 startColumn = (int32_t)((CBC_ResultPoint*)result->GetAt(4))->GetX(); in findVertices()
230 previousRowLoc.Add((int32_t)((CBC_ResultPoint*)result->GetAt(0))->GetX()); in findRowsWithPattern()
231 previousRowLoc.Add((int32_t)((CBC_ResultPoint*)result->GetAt(1))->GetX()); in findRowsWithPattern()
DBC_PDF417ScanningDecoder.cpp303 int32_t startColumn = (int32_t)startPoint.GetX(); in getRowIndicatorColumn()
/external/pdfium/xfa/src/fxbarcode/datamatrix/
DBC_DataMatrixDetector.cpp213 FX_FLOAT cos = (topRight->GetX() - topLeft->GetX()) / norm; in CorrectTopRightRectangular()
216 topRight->GetX() + corr * cos, topRight->GetY() + corr * sin)); in CorrectTopRightRectangular()
219 cos = (topRight->GetX() - bottomRight->GetX()) / norm; in CorrectTopRightRectangular()
222 topRight->GetX() + corr * cos, topRight->GetY() + corr * sin)); in CorrectTopRightRectangular()
260 FX_FLOAT cos = (topRight->GetX() - topLeft->GetX()) / norm; in CorrectTopRight()
263 topRight->GetX() + corr * cos, topRight->GetY() + corr * sin)); in CorrectTopRight()
266 cos = (topRight->GetX() - bottomRight->GetX()) / norm; in CorrectTopRight()
269 topRight->GetX() + corr * cos, topRight->GetY() + corr * sin)); in CorrectTopRight()
293 return p->GetX() >= 0 && p->GetX() < m_image->GetWidth() && p->GetY() > 0 && in IsValid()
302 (FX_FLOAT)sqrt((a->GetX() - b->GetX()) * (a->GetX() - b->GetX()) + in Distance()
[all …]
/external/v8/test/mjsunit/compiler/
Dpic.js30 function GetX(o) { return o.x; } class
38 assertEquals(42, GetX(o));
40 assertEquals(87, GetX(o));
42 assertTrue(o === GetX(o), "o === GetX(o)");
44 assertEquals("hest", GetX(o));
46 assertTrue(Test === GetX(o), "Test === GetX(o)");
69 GetX(0);
/external/pdfium/xfa/src/fxbarcode/qrcode/
DBC_QRDetector.cpp70 topRight->GetX() - topLeft->GetX() + bottomLeft->GetX(); in ProcessFinderPatternInfo()
75 FX_FLOAT xtemp = (topLeft->GetX() + in ProcessFinderPatternInfo()
76 correctionToTopLeft * (bottomRightX - topLeft->GetX())); in ProcessFinderPatternInfo()
119 bottomRightX = alignmentPattern->GetX(); in SampleGrid()
123 bottomRightX = (topRight->GetX() - topLeft->GetX()) + bottomLeft->GetX(); in SampleGrid()
131 topLeft->GetX(), topLeft->GetY(), topRight->GetX(), topRight->GetY(), in SampleGrid()
132 bottomRightX, bottomRightY, bottomLeft->GetX(), bottomLeft->GetY(), e); in SampleGrid()
171 (int32_t)pattern->GetX(), (int32_t)pattern->GetY(), in CalculateModuleSizeOneWay()
172 (int32_t)otherPattern->GetX(), (int32_t)otherPattern->GetY()); in CalculateModuleSizeOneWay()
174 (int32_t)otherPattern->GetX(), (int32_t)otherPattern->GetY(), in CalculateModuleSizeOneWay()
[all …]
DBC_QRFinderPatternFinder.cpp186 (topRight->GetX() - topLeft->GetX()) < in OrderBestPatterns()
187 (bottomLeft->GetX() - topLeft->GetX()) * in OrderBestPatterns()
199 FX_FLOAT dx = point1->GetX() - point2->GetX(); in Distance()
403 return (int32_t)((fabs(firstConfirmedCenter->GetX() - center->GetX()) - in FindRowSkip()
DBC_QRAlignmentPattern.cpp31 FX_FLOAT CBC_QRAlignmentPattern::GetX() { in GetX() function in CBC_QRAlignmentPattern
41 (FXSYS_fabs(j - GetX()) <= moduleSize)) { in AboutEquals()
DBC_QRFinderPattern.cpp56 if ((fabs(i - GetY()) <= moduleSize) && (fabs(j - GetX()) <= moduleSize)) { in AboutEquals()
63 FX_FLOAT CBC_QRFinderPattern::GetX() { in GetX() function in CBC_QRFinderPattern
DBC_QRAlignmentPattern.h22 FX_FLOAT GetX();
DBC_QRFinderPattern.h21 FX_FLOAT GetX();
/external/clang/test/SemaCXX/
Dms-property-error.cpp5 __declspec(property(get=GetX,put=PutX)) int x[];
6 int GetX(int i, int j) { return i+j; } // expected-note {{'GetX' declared here}} in GetX() function in S
14 __declspec(property(get=GetX,put=PutX)) T x[];
15 T GetX(T i, T j) { return i+j; } // expected-note 3 {{'GetX' declared here}} in GetX() function in St
Dms-property.cpp22 __declspec(property(get=GetX,put=PutX)) int x[];
23 int GetX(int i, int j) { return i+j; } in GetX() function in S
30 __declspec(property(get=GetX,put=PutX)) T x[];
31 T GetX(T i, T j) { return i+j; } in GetX() function in St
/external/clang/test/CodeGenCXX/
Dms-property.cpp23 __declspec(property(get=GetX,put=PutX)) int x[];
24 int GetX(int i, int j) { return i+j; } in GetX() function in S
31 __declspec(property(get=GetX,put=PutX)) T x[];
32 T GetX(T i, T j) { return i+j; } in GetX() function in St
33 T GetX() { return 0; } in GetX() function in St
/external/pdfium/xfa/src/fxbarcode/common/
DBC_WhiteRectangleDetector.cpp216 float yi = y->GetX(); in CenterEdges()
218 float zi = z->GetX(); in CenterEdges()
220 float xi = x->GetX(); in CenterEdges()
222 float ti = t->GetX(); in CenterEdges()
/external/pdfium/xfa/src/fxbarcode/
DBC_ResultPoint.cpp26 FX_FLOAT CBC_ResultPoint::GetX() { in GetX() function in CBC_ResultPoint
DBC_ResultPoint.h15 virtual FX_FLOAT GetX();