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

  /external/webkit/WebCore/rendering/style/
BorderData.h 45 IntSize bottomLeft;
60 if (bottomLeft.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
735 bottomLeft = surround->border.bottomLeft;
750 radiiSum = static_cast<unsigned>(bottomLeft.width()) + static_cast<unsigned>(bottomRight.width());
755 radiiSum = static_cast<unsigned>(topLeft.height()) + static_cast<unsigned>(bottomLeft.height());
773 bottomLeft.scale(factor);
774 if (!bottomLeft.width() || !bottomLeft.height())
775 bottomLeft = IntSize();
    [all...]
RenderStyle.h 391 const IntSize& borderBottomLeftRadius() const { return surround->border.bottomLeft; }
    [all...]
  /external/webkit/WebCore/rendering/
RenderBoxModelObject.cpp 465 IntSize topLeft, topRight, bottomLeft, bottomRight;
466 style()->getBorderRadiiForRect(borderRect, topLeft, topRight, bottomLeft, bottomRight);
470 includeLeftEdge ? bottomLeft : 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 119 context->fillRect(IntRect(borderRect.bottomLeft(), IntSize(width(), 1)), 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)
737 FloatSize clampedBottomLeft = FloatSize(bottomLeft).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 100 IntPoint bottomLeft() const { return IntPoint(x(), bottom() - 1); }
  /packages/apps/Music/src/com/android/music/
VerticalTextSpinner.java 324 final int bottomLeft = 0;
334 canvas.clipRect(bottomLeft, bottomTop, bottomRight, bottomBottom);
  /external/webkit/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 773 const IntSize& bottomLeft,
787 || bottomLeft.width() + bottomRight.width() > rect.width()
788 || topLeft.height() + bottomLeft.height() > rect.height()
800 addCornerArc(&path, r, bottomLeft, 90);
    [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)
662 radii[6] = SkIntToScalar(bottomLeft.width());
663 radii[7] = SkIntToScalar(bottomLeft.height());
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp 514 FloatPoint bottomLeft(rectBeforeTransform->x(), rectBeforeTransform->bottom() - 1);
515 bottomLeft = m_data->m_transform.mapPoint(bottomLeft);
517 FloatSize sideLeft = bottomLeft - 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...]
  /external/webkit/WebKit/chromium/src/
WebViewImpl.cpp 650 location = focusedNode->getRect().bottomLeft();
    [all...]

Completed in 528 milliseconds