Searched defs:bottomLeft (Results 1 - 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/
H A DRoundedIntRect.cpp82 m_bottomLeft = edges.bottomLeft();
92 m_bottomLeft = edges.bottomLeft();
127 RoundedIntRect::RoundedIntRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight) argument
129 , m_radii(topLeft, topRight, bottomLeft, bottomRight)
146 && m_radii.bottomLeft().width() + m_radii.bottomRight().width() <= m_rect.width()
148 && m_radii.bottomLeft().height() + m_radii.bottomRight().height() <= m_rect.height();
H A DRoundedIntRect.h40 Radii(const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight) argument
43 , m_bottomLeft(bottomLeft)
54 const IntSize& bottomLeft() const { return m_bottomLeft; } function in class:WebCore::RoundedIntRect::Radii
77 RoundedIntRect(const IntRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight);
105 return a.topLeft() == b.topLeft() && a.topRight() == b.topRight() && a.bottomLeft() == b.bottomLeft() && a.bottomRight() == b.bottomRight();
/external/webkit/Source/WebCore/rendering/style/
H A DBorderData.h111 const LengthSize& bottomLeft() const { return m_bottomLeft; } function in class:WebCore::BorderData
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFELighting.cpp85 int bottomLeft = static_cast<int>(pixels->get(offset - cPixelSize + cAlphaChannelOffset)); local
88 normalVector.setX(-(left << 1) + (right << 1) - bottomLeft + bottomRight);
89 normalVector.setY(-left - (center << 1) - right + bottomLeft + (bottom << 1) + bottomRight);
97 int bottomLeft = static_cast<int>(pixels->get(offset - cPixelSize + cAlphaChannelOffset)); local
99 normalVector.setX(-(left << 1) + (center << 1) - bottomLeft + bottom);
100 normalVector.setY(-left - (center << 1) + bottomLeft + (bottom << 1));
126 int bottomLeft = static_cast<int>(pixels->get(offset - cPixelSize + cAlphaChannelOffset)); local
129 normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1) - bottomLeft + bottomRight);
130 normalVector.setY(-topLeft - (top << 1) - topRight + bottomLeft + (bottom << 1) + bottomRight);
141 int bottomLeft local
147 inline void FELighting::LightingData::bottomLeft(int offset, IntPoint& normalVector) function in class:WebCore::FELighting::LightingData
[all...]
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DGraphicsContextHaiku.cpp180 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace) argument
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DGraphicsContextOpenVG.cpp176 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace) argument
183 m_data->drawRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight, VG_FILL_PATH);
H A DPainterOpenVG.cpp854 void PainterOpenVG::drawRoundedRect(const FloatRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, VGbitfield specifiedPaintModes) argument
882 FloatSize clampedBottomLeft = FloatSize(bottomLeft).shrunkTo(rect.size()).expandedTo(FloatSize());
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DGraphicsContextWx.cpp278 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace) argument
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGraphicsContextAndroid.cpp759 const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace)
774 radii[6] = SkIntToScalar(bottomLeft.width());
775 radii[7] = SkIntToScalar(bottomLeft.height());
758 fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace) argument
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DGraphicsContextCairo.cpp1125 void GraphicsContext::fillRoundedRect(const IntRect& r, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace) argument
1131 m_data->shadow.drawRectShadow(this, r, topLeft, topRight, bottomLeft, bottomRight);
1136 path.addRoundedRect(r, topLeft, topRight, bottomLeft, bottomRight);
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DGraphicsContextCG.cpp747 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace) argument
768 contextShadow.drawRectShadow(this, rect, RoundedIntRect::Radii(topLeft, topRight, bottomLeft, bottomRight));
771 bool equalWidths = (topLeft.width() == topRight.width() && topRight.width() == bottomLeft.width() && bottomLeft.width() == bottomRight.width());
772 bool equalHeights = (topLeft.height() == bottomLeft.height() && bottomLeft.height() == topRight.height() && topRight.height() == bottomRight.height());
777 path.addRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsContextQt.cpp744 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace) argument
750 path.addRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DGraphicsContextSkia.cpp824 const IntSize& bottomLeft,
840 || bottomLeft.width() + bottomRight.width() > rect.width()
841 || topLeft.height() + bottomLeft.height() > rect.height()
853 addCornerArc(&path, r, bottomLeft, 90);
821 fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace) argument
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DGraphicsContextWinCE.cpp513 FloatPoint bottomLeft(rectBeforeTransform->x(), rectBeforeTransform->maxY() - 1);
514 bottomLeft = m_data->m_transform.mapPoint(bottomLeft);
516 FloatSize sideLeft = bottomLeft - topLeft;
1211 void GraphicsContext::fillRoundedRect(const IntRect& fillRect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& c, ColorSpace colorSpace) argument
1232 FloatSize newBottomLeft(m_data->mapSize(bottomLeft));

Completed in 259 milliseconds