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

1 2 3

  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixDetector.cpp 115 CBC_ResultPoint* topRight = NULL;
118 topRight = pointA;
120 topRight = pointB;
122 topRight = pointC;
124 topRight = pointD;
127 TransitionsBetween(topLeft, topRight))
130 TransitionsBetween(bottomRight, topRight))
145 CorrectTopRightRectangular(bottomLeft, bottomRight, topLeft, topRight,
148 correctedTopRight = CBC_AutoPtr<CBC_ResultPoint>(topRight);
150 delete topRight;
    [all...]
BC_DataMatrixDetector.h 42 CBC_ResultPoint* topRight,
48 CBC_ResultPoint* topRight,
54 CBC_ResultPoint* topRight,
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
Align.java 29 static public final int topRight = top | right;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformanceResultsPerspective.java 58 IFolderLayout topRight =
60 "topRight", //NON-NLS-1
64 topRight.addView(IPageLayout.ID_PROP_SHEET); //NON-NLS-1
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417BoundingBox.h 16 CBC_ResultPoint* topRight,
28 void setTopRight(CBC_ResultPoint topRight);
52 CBC_ResultPoint* topRight,
BC_PDF417BoundingBox.cpp 30 CBC_ResultPoint* topRight,
33 if ((topLeft == NULL && topRight == NULL) ||
36 (topRight != NULL && bottomRight == NULL)) {
39 init(image, topLeft, bottomLeft, topRight, bottomRight);
122 void CBC_BoundingBox::setTopRight(CBC_ResultPoint topRight) {
126 m_topRight = new CBC_ResultPoint(topRight.GetX(), topRight.GetY());
163 CBC_ResultPoint* topRight,
176 if (topRight) {
177 m_topRight = new CBC_ResultPoint(topRight->GetX(), topRight->GetY());
    [all...]
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRDetector.h 33 CBC_ResultPoint* topRight,
52 CBC_ResultPoint* topRight,
58 CBC_ResultPoint* topRight,
BC_QRDetector.cpp 51 CBC_AutoPtr<CBC_QRFinderPattern> topRight(info->GetTopRight());
54 CalculateModuleSize(topLeft.get(), topRight.get(), bottomLeft.get());
59 int32_t dimension = ComputeDimension(topLeft.get(), topRight.get(),
70 topRight->GetX() - topLeft->GetX() + bottomLeft->GetX();
72 topRight->GetY() - topLeft->GetY() + bottomLeft->GetY();
89 SampleGrid(m_image, topLeft.get(), topRight.get(), bottomLeft.get(),
96 points->Add(topRight.release());
100 points->Add(topRight.release());
108 CBC_ResultPoint* topRight,
123 bottomRightX = (topRight->GetX() - topLeft->GetX()) + bottomLeft->GetX();
    [all...]
BC_QRFinderPatternFinder.cpp 171 CBC_QRFinderPattern *topLeft, *topRight, *bottomLeft;
174 topRight = (CBC_QRFinderPattern*)(*patterns)[1];
178 topRight = (CBC_QRFinderPattern*)(*patterns)[0];
182 topRight = (CBC_QRFinderPattern*)(*patterns)[0];
186 (topRight->GetX() - topLeft->GetX()) <
188 (topRight->GetY() - topLeft->GetY())) {
189 CBC_QRFinderPattern* temp = topRight;
190 topRight = bottomLeft;
195 (*patterns)[2] = topRight;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 90 * @param topRight the top-right of the quad
94 public static Quad fromLineAndHeight(PointF topLeft, PointF topRight, float height) {
95 PointF dp = new PointF(topRight.x - topLeft.x, topRight.y - topLeft.y);
99 PointF p3 = new PointF(topRight.x - np.x, topRight.y + np.y);
100 return new Quad(topLeft, topRight, p2, p3);
155 public PointF topRight() {
189 PointF topRight = rotatePoint(topRight(), center, cosa, sina)
    [all...]
  /external/skia/debugger/QT/
SkListWidget.cpp 35 painter->drawLine(r.topLeft(),r.topRight());
36 painter->drawLine(r.topRight(),r.bottomRight());
48 painter->drawLine(r.topLeft(),r.topRight());
49 painter->drawLine(r.topRight(),r.bottomRight());
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
ScrollPaneScrollBarsTest.java 39 private Table bottomLeft, bottomRight, topLeft, topRight, horizOnlyTop, horizOnlyBottom, vertOnlyLeft, vertOnlyRight;
107 topRight = new Table();
108 topRight.setSize(contWidth, contHeight);
111 topRight.setPosition(x, y);
112 stage.addActor(topRight);
116 x = topRight.getX();
117 y = topRight.getY() + topRight.getHeight() + gap;
223 topRight.add(topRightScroll).expand().fill().colspan(4);
  /cts/tests/tests/view/src/android/view/cts/
PixelCopyTests.java 267 private void assertBitmapQuadColor(Bitmap bitmap, int topLeft, int topRight,
271 assertEquals("Top right", topRight, getPixelFloatPos(bitmap, .75f, .25f));
276 private void assertBitmapQuadColor(Bitmap bitmap, int topLeft, int topRight,
280 assertTrue("Top right", pixelsAreSame(topRight, getPixelFloatPos(bitmap, .75f, .25f), threshold));
303 public QuadColorGLRenderer(int topLeft, int topRight,
306 mTopRightColor = topRight;
  /external/opencv3/modules/cudalegacy/src/
graphcuts.cpp 204 void cv::cuda::graphcut(GpuMat& terminals, GpuMat& leftTransp, GpuMat& rightTransp, GpuMat& top, GpuMat& topLeft, GpuMat& topRight,
227 CV_Assert(topRight.size() == src_size);
228 CV_Assert(topRight.type() == terminals.type());
258 top.ptr<Npp32s>(), topLeft.ptr<Npp32s>(), topRight.ptr<Npp32s>(),
265 top.ptr<Npp32s>(), topLeft.ptr<Npp32s>(), topRight.ptr<Npp32s>(),
272 top.ptr<Npp32f>(), topLeft.ptr<Npp32f>(), topRight.ptr<Npp32f>(),
  /external/deqp/modules/egl/
teglPartialUpdateTests.cpp 120 IVec2 topRight;
126 , topRight (topRight_)
256 const float x2 = windowToDeviceCoordinates(coloredRect.topRight.x(), width);
257 const float y2 = windowToDeviceCoordinates(coloredRect.topRight.y(), height);
306 coloredRect.topRight.x()-coloredRect.bottomLeft.x(), coloredRect.topRight.y()-coloredRect.bottomLeft.y());
339 coloredRect.topRight.x()-coloredRect.bottomLeft.x(), coloredRect.topRight.y()-coloredRect.bottomLeft.y()), color);
475 damageRegion.push_back(rect.topRight.x() - rect.bottomLeft.x() + marginLeft + marginRight);
476 damageRegion.push_back(rect.topRight.y() - rect.bottomLeft.y() + marginBottom + marginTop)
    [all...]
teglBufferAgeTests.cpp 132 IVec2 topRight;
138 , topRight (topRight_)
267 float x2 = windowToDeviceCoordinates(coloredRect.topRight.x(), width);
268 float y2 = windowToDeviceCoordinates(coloredRect.topRight.y(), height);
317 coloredRect.topRight.x()-coloredRect.bottomLeft.x(), coloredRect.topRight.y()-coloredRect.bottomLeft.y());
350 coloredRect.topRight.x()-coloredRect.bottomLeft.x(), coloredRect.topRight.y()-coloredRect.bottomLeft.y()), color);
teglSwapBuffersWithDamageTests.cpp 88 IVec2 topRight;
94 , topRight (topRight_)
198 const float x2 = windowToDeviceCoordinates(coloredRect.topRight.x(), width);
199 const float y2 = windowToDeviceCoordinates(coloredRect.topRight.y(), height);
248 coloredRect.topRight.x()-coloredRect.bottomLeft.x(), coloredRect.topRight.y()-coloredRect.bottomLeft.y());
676 damageRegion.push_back(rect.topRight.x() - rect.bottomLeft.x());
677 damageRegion.push_back(rect.topRight.y() - rect.bottomLeft.y());
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
NinePatch.java 54 private int topLeft = -1, topCenter = -1, topRight = -1;
202 topRight = ninePatch.topRight;
266 topRight = add(patches[TOP_RIGHT], color, false, false);
362 if (topRight != -1) set(topRight, rightColumnX, topRowY, x + width - rightColumnX, y + height - topRowY, c);
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
IsometricTiledMapRenderer.java 38 private Vector2 topRight = new Vector2();
96 topRight.set(viewBounds.x + viewBounds.width, viewBounds.y);
109 int col2 = (int)(translateScreenToIso(topRight).x / tileWidth) + 2;
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
StyledCornersBitmapDrawable.java 480 private void setCornerStyles(int topLeft, int topRight, int bottomRight, int bottomLeft) {
482 || mTopRightCornerStyle != topRight
487 mTopRightCornerStyle = topRight;
  /external/deqp/modules/gles3/functional/
es3fTextureWrapTests.cpp 101 tcu::Vec2 topRight;
104 Case (const tcu::Vec2& bl, const tcu::Vec2& tr) : bottomLeft(bl), topRight(tr) {}
326 computeQuadTexCoord2D(texCoord, m_cases[m_caseNdx].bottomLeft, m_cases[m_caseNdx].topRight);
346 log << TestLog::Message << "Note: lookup coordinates: bottom-left " << m_cases[m_caseNdx].bottomLeft << ", top-right " << m_cases[m_caseNdx].topRight << TestLog::EndMessage;
  /external/deqp/modules/gles31/functional/
es31fTextureFilteringTests.cpp 139 tcu::Vec2 topRight;
150 , topRight (topRight_)
351 m_testCtx.getLog() << TestLog::Message << "Coordinates: " << curCase.bottomLeft << " -> " << curCase.topRight << TestLog::EndMessage;
359 computeQuadTexCoordCubeArray(texCoord, face, curCase.bottomLeft, curCase.topRight, curCase.layerRange);
  /external/deqp/modules/glshared/
glsTextureTestUtil.hpp 364 void computeQuadTexCoord2D (std::vector<float>& dst, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight);
365 void computeQuadTexCoord2DArray (std::vector<float>& dst, int layerNdx, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight);
368 void computeQuadTexCoordCube (std::vector<float>& dst, tcu::CubeFace face, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight);
369 void computeQuadTexCoordCubeArray (std::vector<float>& dst, tcu::CubeFace face, const tcu::Vec2& bottomLeft, const tcu::Vec2& topRight, const tcu::Vec2& layerRange);
  /external/opencv3/modules/cudalegacy/include/opencv2/
cudalegacy.hpp 243 CV_EXPORTS void graphcut(GpuMat& terminals, GpuMat& leftTransp, GpuMat& rightTransp, GpuMat& top, GpuMat& topLeft, GpuMat& topRight,
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 229 float topRight = (float) Math.sqrt(xCeilingSq + yFloorSq);
232 float sum = topLeft + topRight + btmLeft + btmRight;
240 value = topRight / sum;

Completed in 590 milliseconds

1 2 3