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

1 2

  /external/webkit/WebCore/rendering/style/
BorderData.h 46 IntSize bottomRight;
62 if (bottomRight.width() > 0)
98 topLeft == o.topLeft && topRight == o.topRight && bottomLeft == o.bottomLeft && bottomRight == o.bottomRight;
RenderStyle.cpp 730 void RenderStyle::getBorderRadiiForRect(const IntRect& r, IntSize& topLeft, IntSize& topRight, IntSize& bottomLeft, IntSize& bottomRight) const
736 bottomRight = surround->border.bottomRight;
750 radiiSum = static_cast<unsigned>(bottomLeft.width()) + static_cast<unsigned>(bottomRight.width());
760 radiiSum = static_cast<unsigned>(topRight.height()) + static_cast<unsigned>(bottomRight.height());
776 bottomRight.scale(factor);
777 if (!bottomRight.width() || !bottomRight.height())
778 bottomRight = IntSize();
    [all...]
RenderStyle.h 392 const IntSize& borderBottomRightRadius() const { return surround->border.bottomRight; }
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
GridCameraManager.java 94 final Vector3f bottomRight = pool.create();
109 camera.convertToCameraSpace(camera.mWidth, camera.mHeight, 0, bottomRight);
112 if ((bottomRight.x - topLeft.x) > (imgBottomRight.x - imgTopLeft.x)) {
113 final float hCenterExtent= (bottomRight.x + topLeft.x)/2 -
118 float rightExtent = bottomRight.x - imgBottomRight.x;
128 if ((bottomRight.y - topLeft.y) > (imgBottomRight.y - imgTopLeft.y)) {
129 final float vCenterExtent= (bottomRight.y + topLeft.y)/2 -
134 float bottomExtent = bottomRight.y - imgBottomRight.y;
147 pool.delete(bottomRight);
262 final Vector3f bottomRight = pool.create()
    [all...]
  /external/webkit/WebCore/rendering/
RenderBoxModelObject.cpp 465 IntSize topLeft, topRight, bottomLeft, bottomRight;
466 style()->getBorderRadiiForRect(borderRect, topLeft, topRight, bottomLeft, bottomRight);
471 includeRightEdge ? bottomRight : IntSize());
    [all...]
RenderReplaced.cpp 137 IntSize topLeft, topRight, bottomLeft, bottomRight;
138 style()->getBorderRadiiForRect(borderRect, topLeft, topRight, bottomLeft, bottomRight);
140 paintInfo.context->addRoundedRectClip(borderRect, topLeft, topRight, bottomLeft, bottomRight);
RenderWidget.cpp 252 IntSize topLeft, topRight, bottomLeft, bottomRight;
253 style()->getBorderRadiiForRect(borderRect, topLeft, topRight, bottomLeft, bottomRight);
255 paintInfo.context->addRoundedRectClip(borderRect, topLeft, topRight, bottomLeft, bottomRight);
RenderThemeChromiumWin.cpp 634 IntSize topLeft, topRight, bottomLeft, bottomRight;
635 o->style()->getBorderRadiiForRect(r, topLeft, topRight, bottomLeft, bottomRight);
636 i.context->addRoundedRectClip(r, topLeft, topRight, bottomLeft, bottomRight);
RenderBox.cpp 875 IntSize topLeft, topRight, bottomLeft, bottomRight;
877 style()->getBorderRadiiForRect(borderRect, topLeft, topRight, bottomLeft, bottomRight);
879 paintInfo.context->addRoundedRectClip(borderRect, topLeft, topRight, bottomLeft, bottomRight);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
HorizontalGravityTest.java 48 mBottomRight = activity.findViewById(R.id.bottomRight);
  /external/webkit/WebCore/platform/graphics/openvg/
PainterOpenVG.h 89 void drawRoundedRect(const FloatRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH));
GraphicsContextOpenVG.cpp 178 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
185 m_data->drawRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight, VG_FILL_PATH);
PainterOpenVG.cpp 709 void PainterOpenVG::drawRoundedRect(const FloatRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, VGbitfield specifiedPaintModes)
738 FloatSize clampedBottomRight = FloatSize(bottomRight).shrunkTo(rect.size()).expandedTo(FloatSize());
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.h 249 void fillRoundedRect(const IntRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color&, ColorSpace);
272 void addRoundedRectClip(const IntRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight);
276 void clipOutRoundedRect(const IntRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight);
GraphicsContext.cpp 446 const IntSize& bottomLeft, const IntSize& bottomRight)
451 clip(Path::createRoundedRectangle(rect, topLeft, topRight, bottomLeft, bottomRight));
455 const IntSize& bottomLeft, const IntSize& bottomRight)
460 clipOut(Path::createRoundedRectangle(rect, topLeft, topRight, bottomLeft, bottomRight));
IntRect.h 101 IntPoint bottomRight() const { return IntPoint(right() - 1, bottom() - 1); }
  /packages/apps/Music/src/com/android/music/
VerticalTextSpinner.java 326 final int bottomRight = selectorRight;
334 canvas.clipRect(bottomLeft, bottomTop, bottomRight, bottomBottom);
  /external/webkit/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 135 SkPoint bottomright = {rc.fRight, rc.fBottom}; local
136 return isPointSkiaSafe(transform, topleft) && isPointSkiaSafe(transform, bottomright);
774 const IntSize& bottomRight,
787 || bottomLeft.width() + bottomRight.width() > rect.width()
789 || topRight.height() + bottomRight.height() > rect.height()) {
799 addCornerArc(&path, r, bottomRight, 0);
    [all...]
  /external/webkit/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 172 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
  /external/webkit/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp 647 const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace)
660 radii[4] = SkIntToScalar(bottomRight.width());
661 radii[5] = SkIntToScalar(bottomRight.height());
    [all...]
  /external/webkit/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 651 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
663 addPath(Path::createRoundedRectangle(rect, topLeft, topRight, bottomLeft, bottomRight));
    [all...]
  /external/webkit/WebKit/chromium/tests/
TransparencyWinTest.cpp 390 FloatRect bottomRight(15, 15, 1, 1);
391 helper.context()->fillRect(bottomRight, green, DeviceColorSpace);
  /external/webkit/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 265 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp     [all...]
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 642 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
647 Path path = Path::createRoundedRectangle(rect, topLeft, topRight, bottomLeft, bottomRight);
    [all...]

Completed in 468 milliseconds

1 2