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

1 2

  /external/webkit/WebCore/rendering/style/
BorderData.h 44 IntSize topRight;
58 if (topRight.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
733 topRight = surround->border.topRight;
745 radiiSum = static_cast<unsigned>(topLeft.width()) + static_cast<unsigned>(topRight.width()); // Casts to avoid integer overflow.
760 radiiSum = static_cast<unsigned>(topRight.height()) + static_cast<unsigned>(bottomRight.height());
770 topRight.scale(factor);
771 if (!topRight.width() || !topRight.height())
772 topRight = IntSize();
    [all...]
RenderStyle.h 390 const IntSize& borderTopRightRadius() const { return surround->border.topRight; }
    [all...]
  /external/webkit/WebCore/rendering/
RenderBoxModelObject.cpp 465 IntSize topLeft, topRight, bottomLeft, bottomRight;
466 style()->getBorderRadiiForRect(borderRect, topLeft, topRight, bottomLeft, bottomRight);
469 includeRightEdge ? topRight : 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...]
RenderFrameSet.cpp 99 context->fillRect(IntRect(borderRect.topRight(), IntSize(1, height())), borderEndEdgeColor(), colorSpace);
  /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)
736 FloatSize clampedTopRight = FloatSize(topRight).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 445 void GraphicsContext::addRoundedRectClip(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight,
451 clip(Path::createRoundedRectangle(rect, topLeft, topRight, bottomLeft, bottomRight));
454 void GraphicsContext::clipOutRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight,
460 clipOut(Path::createRoundedRectangle(rect, topLeft, topRight, bottomLeft, bottomRight));
IntRect.h 99 IntPoint topRight() const { return IntPoint(right() - 1, y()); }
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 229 float topRight = (float) Math.sqrt(xCeilingSq + yFloorSq);
232 float sum = topLeft + topRight + btmLeft + btmRight;
240 value = topRight / sum;
  /packages/apps/Music/src/com/android/music/
VerticalTextSpinner.java 283 final int topRight = selectorRight;
299 canvas.clipRect(topLeft, topTop, topRight, topBottom);
  /external/webkit/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 772 const IntSize& topRight,
786 if (topLeft.width() + topRight.width() > rect.width()
789 || topRight.height() + bottomRight.height() > rect.height()) {
798 addCornerArc(&path, r, topRight, 270);
    [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 646 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight,
658 radii[2] = SkIntToScalar(topRight.width());
659 radii[3] = SkIntToScalar(topRight.height());
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp 512 FloatPoint topRight(rectBeforeTransform->right() - 1, rectBeforeTransform->y());
513 topRight = m_data->m_transform.mapPoint(topRight);
516 FloatSize sideTop = topRight - topLeft;
    [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/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 482 milliseconds

1 2