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

1 2 3

  /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 48 IFolderLayout topLeft =
50 "topLeft", //NON-NLS-1
54 topLeft.addView("org.eclipse.test.internal.performance.results.ui.ComponentsView"); //NON-NLS-1
55 topLeft.addView("org.eclipse.test.internal.performance.results.ui.BuildsView"); //NON-NLS-1
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
Align.java 28 static public final int topLeft = top | left;
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixDetector.cpp 114 CBC_ResultPoint* topLeft = (CBC_ResultPoint*)corners[2];
127 TransitionsBetween(topLeft, topRight))
145 CorrectTopRightRectangular(bottomLeft, bottomRight, topLeft, topRight,
154 TransitionsBetween(topLeft, correctedTopRight.get()))
167 SampleGrid(m_image, topLeft, bottomLeft, bottomRight,
173 CorrectTopRight(bottomLeft, bottomRight, topLeft, topRight, dimension));
182 TransitionsBetween(topLeft, correctedTopRight.get()))
192 m_image, topLeft, bottomLeft, bottomRight, correctedTopRight.get(),
198 result->Add(topLeft);
207 CBC_ResultPoint* topLeft,
    [all...]
BC_DataMatrixDetector.h 41 CBC_ResultPoint* topLeft,
47 CBC_ResultPoint* topLeft,
51 CBC_ResultPoint* topLeft,
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRDetector.cpp 50 CBC_AutoPtr<CBC_QRFinderPattern> topLeft(info->GetTopLeft());
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();
75 FX_FLOAT xtemp = (topLeft->GetX() +
76 correctionToTopLeft * (bottomRightX - topLeft->GetX()));
78 FX_FLOAT ytemp = (topLeft->GetY() +
79 correctionToTopLeft * (bottomRightY - topLeft->GetY()));
89 SampleGrid(m_image, topLeft.get(), topRight.get(), bottomLeft.get(),
    [all...]
BC_QRDetector.h 32 FX_FLOAT CalculateModuleSize(CBC_ResultPoint* topLeft,
51 static int32_t ComputeDimension(CBC_ResultPoint* topLeft,
57 CBC_ResultPoint* topLeft,
BC_QRFinderPatternFinder.cpp 171 CBC_QRFinderPattern *topLeft, *topRight, *bottomLeft;
173 topLeft = (CBC_QRFinderPattern*)(*patterns)[0];
177 topLeft = (CBC_QRFinderPattern*)(*patterns)[1];
181 topLeft = (CBC_QRFinderPattern*)(*patterns)[2];
185 if ((bottomLeft->GetY() - topLeft->GetY()) *
186 (topRight->GetX() - topLeft->GetX()) <
187 (bottomLeft->GetX() - topLeft->GetX()) *
188 (topRight->GetY() - topLeft->GetY())) {
194 (*patterns)[1] = topLeft;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 89 * @param topLeft the top-left 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);
98 PointF p2 = new PointF(topLeft.x - np.x, topLeft.y + np.y);
100 return new Quad(topLeft, topRight, p2, p3);
147 public PointF topLeft() {
188 PointF topLeft = rotatePoint(topLeft(), center, cosa, sina)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_pic_param_set.h 55 u32 *topLeft;
h264bsd_slice_group_map.c 73 u32 *topLeft,
212 topLeft top_left[] values
228 u32 *topLeft,
243 ASSERT(topLeft);
255 ASSERT( topLeft[group] <= bottomRight[group] &&
257 yTopLeft = topLeft[group] / picWidth;
258 xTopLeft = topLeft[group] % picWidth;
559 pps->topLeft, pps->bottomRight, picWidth, picHeight);
h264bsd_pic_param_set.c 179 ALLOCATE(pPicParamSet->topLeft,
183 if (pPicParamSet->topLeft == NULL ||
191 pPicParamSet->topLeft[i] = value;
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417BoundingBox.cpp 28 CBC_ResultPoint* topLeft,
33 if ((topLeft == NULL && topRight == NULL) ||
35 (topLeft != NULL && bottomLeft == NULL) ||
39 init(image, topLeft, bottomLeft, topRight, bottomRight);
161 CBC_ResultPoint* topLeft,
170 if (topLeft) {
171 m_topLeft = new CBC_ResultPoint(topLeft->GetX(), topLeft->GetY());
BC_PDF417BoundingBox.h 14 CBC_ResultPoint* topLeft,
50 CBC_ResultPoint* topLeft,
  /external/skia/debugger/QT/
SkListWidget.cpp 35 painter->drawLine(r.topLeft(),r.topRight());
38 painter->drawLine(r.topLeft(),r.bottomLeft());
48 painter->drawLine(r.topLeft(),r.topRight());
51 painter->drawLine(r.topLeft(),r.bottomLeft());
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
ScrollPaneScrollBarsTest.java 39 private Table bottomLeft, bottomRight, topLeft, topRight, horizOnlyTop, horizOnlyBottom, vertOnlyLeft, vertOnlyRight;
100 topLeft = new Table();
101 topLeft.setSize(contWidth, contHeight);
104 topLeft.setPosition(x, y);
105 stage.addActor(topLeft);
110 y = topLeft.getY();
123 x = topLeft.getX();
124 y = topLeft.getY() + topLeft.getHeight() + gap;
222 topLeft.add(topLeftScroll).expand().fill().colspan(4);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeOverlay.java 79 ControlPoint topLeft = LayoutPoint.create(mCanvas, mask.x, mask.y).toControl();
82 int x1 = topLeft.x;
83 int y1 = topLeft.y;
MarqueeGesture.java 80 LayoutPoint topLeft = ControlPoint.create(mCanvas, x, y).toLayout();
82 mCanvas.getSelectionManager().selectWithin(topLeft, bottomRight, mInitialSelection);
  /frameworks/base/core/java/com/android/internal/policy/
DockedDividerUtils.java 58 * @param topLeft Pass true if the bounds are at the top/left of the screen, false if they are
62 public static void sanitizeStackBounds(Rect bounds, boolean topLeft) {
67 if (topLeft) {
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
StatsFilter.java 84 regionscore(pixelBuffer, width, height, quad.topLeft().x, quad.topLeft().y,
  /frameworks/base/core/java/android/transition/
ChangeBounds.java 87 new Property<ViewBounds, PointF>(PointF.class, "topLeft") {
89 public void set(ViewBounds viewBounds, PointF topLeft) {
90 viewBounds.setTopLeft(topLeft);
130 new Property<View, PointF>(PointF.class, "topLeft") {
132 public void set(View view, PointF topLeft) {
133 int left = Math.round(topLeft.x);
134 int top = Math.round(topLeft.y);
149 public void set(View view, PointF topLeft) {
150 int left = Math.round(topLeft.x);
151 int top = Math.round(topLeft.y)
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
PixelCopyTests.java 267 private void assertBitmapQuadColor(Bitmap bitmap, int topLeft, int topRight,
270 assertEquals("Top left", topLeft, getPixelFloatPos(bitmap, .25f, .25f));
276 private void assertBitmapQuadColor(Bitmap bitmap, int topLeft, int topRight,
279 assertTrue("Top left", pixelsAreSame(topLeft, getPixelFloatPos(bitmap, .25f, .25f), threshold));
303 public QuadColorGLRenderer(int topLeft, int topRight,
305 mTopLeftColor = topLeft;
  /external/opencv3/modules/cudalegacy/src/
graphcuts.cpp 204 void cv::cuda::graphcut(GpuMat& terminals, GpuMat& leftTransp, GpuMat& rightTransp, GpuMat& top, GpuMat& topLeft, GpuMat& topRight,
224 CV_Assert(topLeft.size() == src_size);
225 CV_Assert(topLeft.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>(),
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestGraphics.java 90 public void drawString(@NonNull String string, @NonNull Point topLeft) {
91 mDrawn.add("drawString(" + string + "," + topLeft + ")");
  /external/eigen/test/
geo_alignedbox.cpp 124 Vector2f topLeft; topLeft << m[0], M[1];
126 VERIFY_IS_APPROX( topLeft, box.corner( BoxType::TopLeft ) );
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
NinePatch.java 54 private int topLeft = -1, topCenter = -1, topRight = -1;
200 topLeft = ninePatch.topLeft;
256 topLeft = add(patches[TOP_LEFT], color, false, false);
360 if (topLeft != -1) set(topLeft, x, topRowY, centerColumnX - x, y + height - topRowY, c);

Completed in 952 milliseconds

1 2 3