/external/pdfium/xfa/src/fxbarcode/ |
BC_ResultPoint.cpp | 26 FX_FLOAT CBC_ResultPoint::GetX() {
|
BC_ResultPoint.h | 15 virtual FX_FLOAT GetX();
|
/external/clang/test/SemaCXX/ |
ms-property-error.cpp | 5 __declspec(property(get=GetX,put=PutX)) int x[]; 6 int GetX(int i, int j) { return i+j; } // expected-note {{'GetX' declared here}} 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}}
|
ms-property.cpp | 22 __declspec(property(get=GetX,put=PutX)) int x[]; 23 int GetX(int i, int j) { return i+j; } 30 __declspec(property(get=GetX,put=PutX)) T x[]; 31 T GetX(T i, T j) { return i+j; }
|
/external/pdfium/xfa/src/fxbarcode/pdf417/ |
BC_PDF417BoundingBox.cpp | 93 newTop = new CBC_ResultPoint((FX_FLOAT)top->GetX(), (FX_FLOAT)newMinY);
107 new CBC_ResultPoint((FX_FLOAT)bottom->GetX(), (FX_FLOAT)newMaxY);
126 m_topRight = new CBC_ResultPoint(topRight.GetX(), topRight.GetY());
133 m_bottomRight = new CBC_ResultPoint(bottomRight.GetX(), bottomRight.GetY());
171 m_topLeft = new CBC_ResultPoint(topLeft->GetX(), topLeft->GetY());
174 m_bottomLeft = new CBC_ResultPoint(bottomLeft->GetX(), bottomLeft->GetY());
177 m_topRight = new CBC_ResultPoint(topRight->GetX(), topRight->GetY());
181 new CBC_ResultPoint(bottomRight->GetX(), bottomRight->GetY());
195 m_minX = (int32_t)(m_topLeft->GetX() < m_bottomLeft->GetX()
[all...] |
BC_PDF417Reader.cpp | 97 return (int32_t)FXSYS_fabs(p1->GetX() - p2->GetX());
104 return (int32_t)FXSYS_fabs(p1->GetX() - p2->GetX());
|
BC_PDF417Detector.cpp | 143 column = (int32_t)((CBC_ResultPoint*)vertices->GetAt(2))->GetX();
146 column = (int32_t)((CBC_ResultPoint*)vertices->GetAt(4))->GetX();
168 startColumn = (int32_t)((CBC_ResultPoint*)result->GetAt(4))->GetX();
230 previousRowLoc.Add((int32_t)((CBC_ResultPoint*)result->GetAt(0))->GetX());
231 previousRowLoc.Add((int32_t)((CBC_ResultPoint*)result->GetAt(1))->GetX());
|
BC_PDF417ScanningDecoder.cpp | 303 int32_t startColumn = (int32_t)startPoint.GetX();
|
/external/pdfium/xfa/src/fxbarcode/qrcode/ |
BC_QRAlignmentPattern.h | 22 FX_FLOAT GetX();
|
BC_QRAlignmentPattern.cpp | 31 FX_FLOAT CBC_QRAlignmentPattern::GetX() {
41 (FXSYS_fabs(j - GetX()) <= moduleSize)) {
|
BC_QRFinderPattern.h | 21 FX_FLOAT GetX();
|
BC_QRDetector.cpp | 70 topRight->GetX() - topLeft->GetX() + bottomLeft->GetX();
75 FX_FLOAT xtemp = (topLeft->GetX() +
76 correctionToTopLeft * (bottomRightX - topLeft->GetX()));
119 bottomRightX = alignmentPattern->GetX();
123 bottomRightX = (topRight->GetX() - topLeft->GetX()) + bottomLeft->GetX();
131 topLeft->GetX(), topLeft->GetY(), topRight->GetX(), topRight->GetY(), [all...] |
BC_QRFinderPattern.cpp | 56 if ((fabs(i - GetY()) <= moduleSize) && (fabs(j - GetX()) <= moduleSize)) {
63 FX_FLOAT CBC_QRFinderPattern::GetX() {
|
BC_QRFinderPatternFinder.cpp | 186 (topRight->GetX() - topLeft->GetX()) <
187 (bottomLeft->GetX() - topLeft->GetX()) *
199 FX_FLOAT dx = point1->GetX() - point2->GetX();
403 return (int32_t)((fabs(firstConfirmedCenter->GetX() - center->GetX()) -
|
/external/v8/test/mjsunit/compiler/ |
pic.js | 30 function GetX(o) { return o.x; } 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/clang/test/CodeGenCXX/ |
ms-property.cpp | 23 __declspec(property(get=GetX,put=PutX)) int x[]; 24 int GetX(int i, int j) { return i+j; } 31 __declspec(property(get=GetX,put=PutX)) T x[]; 32 T GetX(T i, T j) { return i+j; } 33 T GetX() { return 0; } 56 // CHECK: call i32 @"\01?GetX@S@@QEAAHHH@Z"(%class.S* %{{.+}}, i32 223, i32 11) 61 // CHECK: call float @"\01?GetX@?$St@M@@QEAAMMM@Z"(%class.St* %{{.+}}, float 2.230000e+02, float 1.100000e+01) 70 // CHECK-NEXT: [[GET:%.+]] = call float @"\01?GetX@?$St@M@@QEAAMMM@Z"(%class.St* %{{.+}}, float [[CONV]], float 1.000000e+00) 80 // CHECK: [[P1_X_22_33:%.+]] = call i32 @"\01?GetX@S@@QEAAHHH@Z"(%class.S* [[P1]], i32 22, i32 33) 90 // CHECK: [[P1_X_ARGC_0:%.+]] = call i32 @"\01?GetX@S@@QEAAHHH@Z"(%class.S* [[P1]], i32 [[ARGC]], i32 0 [all...] |
/external/pdfium/xfa/src/fxbarcode/datamatrix/ |
BC_DataMatrixDetector.cpp | 213 FX_FLOAT cos = (topRight->GetX() - topLeft->GetX()) / norm;
216 topRight->GetX() + corr * cos, topRight->GetY() + corr * sin));
219 cos = (topRight->GetX() - bottomRight->GetX()) / norm;
222 topRight->GetX() + corr * cos, topRight->GetY() + corr * sin));
260 FX_FLOAT cos = (topRight->GetX() - topLeft->GetX()) / norm;
263 topRight->GetX() + corr * cos, topRight->GetY() + corr * sin));
266 cos = (topRight->GetX() - bottomRight->GetX()) / norm; [all...] |
/external/pdfium/xfa/src/fxbarcode/common/ |
BC_WhiteRectangleDetector.cpp | 216 float yi = y->GetX();
218 float zi = z->GetX();
220 float xi = x->GetX();
222 float ti = t->GetX();
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
d3drmobj.h | [all...] |