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

  /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());
  /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/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());
  /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();
  /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);
  /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; }
RenderStyle.cpp     [all...]
RenderStyle.h 496 const LengthSize& borderBottomRightRadius() const { return surround->border.bottomRight(); }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGradientValue.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContext.cpp     [all...]
GraphicsContext.h 265 void fillRoundedRect(const IntRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color&);
Path.cpp 388 addRoundedRect(r.rect(), r.radii().topLeft(), r.radii().topRight(), r.radii().bottomLeft(), r.radii().bottomRight());
  /external/chromium_org/third_party/WebKit/Source/core/paint/
BoxPainter.cpp 248 if (!clipRect.radii().topLeft().isEmpty() || !clipRect.radii().bottomRight().isEmpty()) {
256 bottomCornerRadii.setBottomRight(clipRect.radii().bottomRight());
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 

Completed in 610 milliseconds