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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRoundedRect.h 44 Radii(const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight)
48 , m_bottomRight(bottomRight)
56 , m_bottomRight(intRadii.bottomRight())
67 const FloatSize& bottomRight() const { return m_bottomRight; }
86 FloatRoundedRect(const FloatRect&, const FloatSize& topLeft, const FloatSize& topRight, const FloatSize& bottomLeft, const FloatSize& bottomRight);
115 return FloatRect(m_rect.maxX() - m_radii.bottomRight().width(), m_rect.maxY() - m_radii.bottomRight().height(), m_radii.bottomRight().width(), m_radii.bottomRight().height());
127 return a.topLeft() == b.topLeft() && a.topRight() == b.topRight() && a.bottomLeft() == b.bottomLeft() && a.bottomRight() == b.bottomRight()
    [all...]
RoundedRect.cpp 112 m_bottomRight = edges.bottomRight();
146 RoundedRect::RoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight)
148 , m_radii(topLeft, topRight, bottomLeft, bottomRight)
157 int maxX = m_rect.maxX() - std::max(m_radii.topRight().width(), m_radii.bottomRight().width());
158 int maxY = m_rect.maxY() - std::max(m_radii.bottomLeft().height(), m_radii.bottomRight().height());
175 && m_radii.bottomLeft().width() + m_radii.bottomRight().width() <= m_rect.width()
177 && m_radii.topRight().height() + m_radii.bottomRight().height() <= m_rect.height();
182 int maxRadiusWidth = std::max(m_radii.topLeft().width() + m_radii.topRight().width(), m_radii.bottomLeft().width() + m_radii.bottomRight().width());
183 int maxRadiusHeight = std::max(m_radii.topLeft().height() + m_radii.bottomLeft().height(), m_radii.topRight().height() + m_radii.bottomRight().height());
233 const IntSize& bottomRight = m_radii.bottomRight()
    [all...]
RoundedRect.h 43 Radii(const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight)
47 , m_bottomRight(bottomRight)
58 const IntSize& bottomRight() const { return m_bottomRight; }
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 61 << ::testing::PrintToString(radii.bottomRight()) << ", "
93 EXPECT_EQ(FloatSize(), r.radii().bottomRight());
129 EXPECT_EQ(cornerRadii, r.radii().bottomRight());
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_pic_param_set.h 56 u32 *bottomRight;
h264bsd_slice_group_map.c 74 u32 *bottomRight,
213 bottomRight bottom_right[] values
229 u32 *bottomRight,
244 ASSERT(bottomRight);
255 ASSERT( topLeft[group] <= bottomRight[group] &&
256 bottomRight[group] < picSize );
259 yBottomRight = bottomRight[group] / picWidth;
260 xBottomRight = bottomRight[group] % picWidth;
559 pps->topLeft, pps->bottomRight, picWidth, picHeight);
h264bsd_storage.c 245 FREE(pStorage->pps[id]->bottomRight);
254 FREE(pStorage->pps[id]->bottomRight);
817 ASSERT(pps->bottomRight);
820 if (pps->topLeft[i] > pps->bottomRight[i] ||
821 pps->bottomRight[i] >= picSize)
825 (pps->bottomRight[i] % sps->picWidthInMbs) )
h264bsd_pic_param_set.c 181 ALLOCATE(pPicParamSet->bottomRight,
184 pPicParamSet->bottomRight == NULL)
195 pPicParamSet->bottomRight[i] = value;
  /external/chromium_org/third_party/skia/debugger/QT/
SkListWidget.cpp 36 painter->drawLine(r.topRight(),r.bottomRight());
37 painter->drawLine(r.bottomLeft(),r.bottomRight());
49 painter->drawLine(r.topRight(),r.bottomRight());
50 painter->drawLine(r.bottomLeft(),r.bottomRight());
  /external/skia/debugger/QT/
SkListWidget.cpp 36 painter->drawLine(r.topRight(),r.bottomRight());
37 painter->drawLine(r.bottomLeft(),r.bottomRight());
49 painter->drawLine(r.topRight(),r.bottomRight());
50 painter->drawLine(r.bottomLeft(),r.bottomRight());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeOverlay.java 80 ControlPoint bottomRight = LayoutPoint.create(mCanvas, mask.x + mask.width,
84 int x2 = bottomRight.x;
85 int y2 = bottomRight.y;
MarqueeGesture.java 81 LayoutPoint bottomRight = ControlPoint.create(mCanvas, x + w, y + h).toLayout();
82 mCanvas.getSelectionManager().selectWithin(topLeft, bottomRight, mInitialSelection);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 171 public PointF bottomRight() {
191 PointF bottomRight = rotatePoint(bottomRight(), center, cosa, sina);
193 return new Quad(topLeft, topRight, bottomLeft, bottomRight);
319 private Quad(PointF topLeft, PointF topRight, PointF bottomLeft, PointF bottomRight) {
323 mBottomRight = bottomRight;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShape.cpp 101 paths.shape.addRoundedRect(m_bounds.rect(), m_bounds.radii().topLeft(), m_bounds.radii().topRight(), m_bounds.radii().bottomLeft(), m_bounds.radii().bottomRight());
103 paths.marginShape.addRoundedRect(shapeMarginBounds().rect(), shapeMarginBounds().radii().topLeft(), shapeMarginBounds().radii().topRight(), shapeMarginBounds().radii().bottomLeft(), shapeMarginBounds().radii().bottomRight());
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
StatsFilter.java 85 quad.bottomRight().x, quad.bottomRight().y, mStats);
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
ExternalVideoSurfaceContainer.java 221 RenderCoordinates.NormalizedPoint bottomRight = renderCoordinates.createNormalizedPoint();
223 bottomRight.setAbsoluteCss(mRight, mBottom);
226 float bottom = bottomRight.getYPix();
227 float right = bottomRight.getXPix();
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
HorizontalGravityTest.java 48 mBottomRight = activity.findViewById(R.id.bottomRight);
  /frameworks/base/core/java/android/transition/
ChangeBounds.java 100 new Property<ViewBounds, PointF>(PointF.class, "bottomRight") {
102 public void set(ViewBounds viewBounds, PointF bottomRight) {
103 viewBounds.setBottomRight(bottomRight);
113 new Property<View, PointF>(PointF.class, "bottomRight") {
115 public void set(View view, PointF bottomRight) {
118 int right = Math.round(bottomRight.x);
119 int bottom = Math.round(bottomRight.y);
349 Path bottomRight = getPathMotion().getPath(startRight, startBottom,
352 bottomRight);
490 public void setBottomRight(PointF bottomRight) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FELighting.cpp 78 int bottomRight = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
79 normalVector.setX(-(center << 1) + (right << 1) - bottom + bottomRight);
80 normalVector.setY(-(center << 1) - right + (bottom << 1) + bottomRight);
91 int bottomRight = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
92 normalVector.setX(-(left << 1) + (right << 1) - bottomLeft + bottomRight);
93 normalVector.setY(-left - (center << 1) - right + bottomLeft + (bottom << 1) + bottomRight);
116 int bottomRight = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
117 normalVector.setX(-top + topRight - (center << 1) + (right << 1) - bottom + bottomRight);
118 normalVector.setY(-(top << 1) - topRight + (bottom << 1) + bottomRight);
132 int bottomRight = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset))
    [all...]
FELighting.h 72 inline void bottomRight(int offset, IntPoint& normalVector);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
StatusPanel.java 165 FormData bottomRight = new FormData();
166 bottomRight.bottom = new FormAttachment(100, 0);
167 bottomRight.right = new FormAttachment(100, 0);
168 mYPosLabel.setLayoutData(bottomRight);
  /external/eigen/test/
geo_alignedbox.cpp 123 Vector2f bottomRight; bottomRight << M[0], m[1];
125 VERIFY_IS_APPROX( bottomRight, box.corner( BoxType::BottomRight ) );
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderData.h 125 const LengthSize& bottomRight() const { return m_bottomRight; }
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
StyledCornersBitmapDrawable.java 123 public void setCornerStyles(int topLeft, int topRight, int bottomRight, int bottomLeft) {
126 || mBottomRightCornerStyle != bottomRight
131 mBottomRightCornerStyle = bottomRight;

Completed in 429 milliseconds

1 2