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

1 2 3 4

  /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/chromium_org/third_party/WebKit/Source/platform/geometry/
RoundedRect.cpp 106 m_topLeft = edges.topLeft();
148 RoundedRect::RoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight)
150 , m_radii(topLeft, topRight, bottomLeft, bottomRight)
157 int minX = m_rect.x() + max(m_radii.topLeft().width(), m_radii.bottomLeft().width());
158 int minY = m_rect.y() + max(m_radii.topLeft().height(), m_radii.topRight().height());
176 return m_radii.topLeft().width() + m_radii.topRight().width() <= m_rect.width()
178 && m_radii.topLeft().height() + m_radii.bottomLeft().height() <= m_rect.height()
184 int maxRadiusWidth = std::max(m_radii.topLeft().width() + m_radii.topRight().width(), m_radii.bottomLeft().width() + m_radii.bottomRight().width());
185 int maxRadiusHeight = std::max(m_radii.topLeft().height() + m_radii.bottomLeft().height(), m_radii.topRight().height() + m_radii.bottomRight().height());
202 const IntSize& topLeft = m_radii.topLeft()
    [all...]
FloatRoundedRect.h 43 Radii(const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight)
44 : m_topLeft(topLeft)
55 const FloatSize& topLeft() const { return m_topLeft; }
77 FloatRoundedRect(const FloatRect&, const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight);
94 return FloatRect(m_rect.x(), m_rect.y(), m_radii.topLeft().width(), m_radii.topLeft().height());
118 return a.topLeft() == b.topLeft() && a.topRight() == b.topRight() && a.bottomLeft() == b.bottomLeft() && a.bottomRight() == b.bottomRight();
RoundedRect.h 43 Radii(const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight)
44 : m_topLeft(topLeft)
55 const IntSize& topLeft() const { return m_topLeft; }
80 RoundedRect(const IntRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight);
116 return a.topLeft() == b.topLeft() && a.topRight() == b.topRight() && a.bottomLeft() == b.bottomLeft() && a.bottomRight() == b.bottomRight();
FloatRoundedRect.cpp 48 FloatRoundedRect::FloatRoundedRect(const FloatRect& rect, const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight)
50 , m_radii(topLeft, topRight, bottomLeft, bottomRight)
FloatRoundedRectTest.cpp 59 << ::testing::PrintToString(radii.topLeft()) << ", "
90 EXPECT_EQ(FloatSize(), r.radii().topLeft());
126 EXPECT_EQ(cornerRadii, r.radii().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...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCommon.h 20 bool* firstContour, int* index, int* endIndex, SkPoint* topLeft,
SkPathOpsSimplify.cpp 16 SkPoint topLeft = {SK_ScalarMin, SK_ScalarMin};
21 &index, &endIndex, &topLeft, &topUnsortable, &topDone);
25 SkASSERT(topLeft.fX != SK_ScalarMin && topLeft.fY != SK_ScalarMin);
26 topLeft.fX = topLeft.fY = SK_ScalarMin;
SkPathOpsOp.cpp 143 SkPoint topLeft = {SK_ScalarMin, SK_ScalarMin};
148 &index, &endIndex, &topLeft, &topUnsortable, &done);
152 SkASSERT(topLeft.fX != SK_ScalarMin && topLeft.fY != SK_ScalarMin);
153 topLeft.fX = topLeft.fY = SK_ScalarMin;
  /external/skia/src/pathops/
SkPathOpsCommon.h 20 bool* firstContour, int* index, int* endIndex, SkPoint* topLeft,
SkPathOpsSimplify.cpp 16 SkPoint topLeft = {SK_ScalarMin, SK_ScalarMin};
21 &index, &endIndex, &topLeft, &topUnsortable, &topDone);
25 SkASSERT(topLeft.fX != SK_ScalarMin && topLeft.fY != SK_ScalarMin);
26 topLeft.fX = topLeft.fY = SK_ScalarMin;
SkPathOpsOp.cpp 143 SkPoint topLeft = {SK_ScalarMin, SK_ScalarMin};
148 &index, &endIndex, &topLeft, &topUnsortable, &done);
152 SkASSERT(topLeft.fX != SK_ScalarMin && topLeft.fY != SK_ScalarMin);
153 topLeft.fX = topLeft.fY = SK_ScalarMin;
  /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);
  /external/chromium_org/third_party/skia/src/gpu/
SkGrPixelRef.cpp 62 SkIPoint* topLeft;
69 topLeft = &pointStorage;
73 topLeft = NULL;
91 context->copyTexture(texture, dst->asRenderTarget(), topLeft);
  /external/skia/src/gpu/
SkGrPixelRef.cpp 62 SkIPoint* topLeft;
69 topLeft = &pointStorage;
73 topLeft = NULL;
91 context->copyTexture(texture, dst->asRenderTarget(), topLeft);
  /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);
  /external/skia/tests/
PathOpsBoundsTest.cpp 77 SkPoint topLeft = {0, 0};
78 bounds.setPointBounds(topLeft);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
StatsFilter.java 84 regionscore(pixelBuffer, width, height, quad.topLeft().x, quad.topLeft().y,
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FELighting.cpp 65 inline void FELighting::LightingData::topLeft(int offset, IntPoint& normalVector)
119 int topLeft = static_cast<int>(pixels->item(offset - cPixelSize + cAlphaChannelOffset));
126 normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1) - bottomLeft + bottomRight);
127 normalVector.setY(-topLeft - (top << 1) - topRight + bottomLeft + (bottom << 1) + bottomRight);
135 int topLeft = static_cast<int>(pixels->item(offset - cPixelSize + cAlphaChannelOffset));
140 normalVector.setX(-topLeft + top - (left << 1) + (center << 1) - bottomLeft + bottom);
141 normalVector.setY(-topLeft - (top << 1) + bottomLeft + (bottom << 1));
161 int topLeft = static_cast<int>(pixels->item(offset - cPixelSize + cAlphaChannelOffset));
164 normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1));
165 normalVector.setY(-topLeft - (top << 1) - topRight + left + (center << 1) + right)
    [all...]
FELighting.h 67 inline void topLeft(int offset, IntPoint& normalVector);
  /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 117 Vector2f topLeft; topLeft << m[0], M[1];
119 VERIFY_IS_APPROX( topLeft, box.corner( BoxType::TopLeft ) );

Completed in 2920 milliseconds

1 2 3 4