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

1 2

  /external/webkit/Source/WebCore/platform/graphics/
RoundedIntRect.h 40 Radii(const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight)
42 , m_topRight(topRight)
53 const IntSize& topRight() const { return m_topRight; }
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();
RoundedIntRect.cpp 84 m_topRight = edges.topRight();
90 m_topRight = edges.topRight();
127 RoundedIntRect::RoundedIntRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight)
129 , m_radii(topLeft, topRight, bottomLeft, bottomRight)
145 return m_radii.topLeft().width() + m_radii.topRight().width() <= m_rect.width()
147 && m_radii.topLeft().height() + m_radii.topRight().height() <= m_rect.height()
ShadowBlur.cpp 424 rightSlice = twiceRadius + max(radii.topRight().width(), radii.bottomRight().width());
426 topSlice = twiceRadius + max(radii.topLeft().height(), radii.topRight().height());
516 path.addRoundedRect(shadowedRect, radii.topLeft(), radii.topRight(), radii.bottomLeft(), radii.bottomRight());
557 path.addRoundedRect(holeRect, holeRadii.topLeft(), holeRadii.topRight(), holeRadii.bottomLeft(), holeRadii.bottomRight());
636 path.addRoundedRect(templateHole, radii.topLeft(), radii.topRight(), radii.bottomLeft(), radii.bottomRight());
698 path.addRoundedRect(templateShadow, radii.topLeft(), radii.topRight(), radii.bottomLeft(), radii.bottomRight());
    [all...]
Path.cpp 193 addRoundedRect(r.rect(), r.radii().topLeft(), r.radii().topRight(), r.radii().bottomLeft(), r.radii().bottomRight());
GraphicsContext.h 337 void fillRoundedRect(const IntRect&, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color&, ColorSpace);
  /external/webkit/Source/WebCore/platform/graphics/filters/
FELighting.cpp 92 inline void FELighting::LightingData::topRight(int offset, IntPoint& normalVector)
109 int topRight = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset));
113 normalVector.setX(-top + topRight - (center << 1) + (right << 1) - bottom + bottomRight);
114 normalVector.setY(-(top << 1) - topRight + (bottom << 1) + bottomRight);
124 int topRight = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset));
129 normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1) - bottomLeft + bottomRight);
130 normalVector.setY(-topLeft - (top << 1) - topRight + bottomLeft + (bottom << 1) + bottomRight);
153 int topRight = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset));
154 normalVector.setX(-top + topRight - (center << 1) + (right << 1));
155 normalVector.setY(-(top << 1) - topRight + (center << 1) + right)
    [all...]
FELighting.h 64 inline void topRight(int offset, IntPoint& normalVector);
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.h 101 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 176 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
183 m_data->drawRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight, VG_FILL_PATH);
PainterOpenVG.cpp 854 void PainterOpenVG::drawRoundedRect(const FloatRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, VGbitfield specifiedPaintModes)
881 FloatSize clampedTopRight = FloatSize(topRight).shrunkTo(rect.size()).expandedTo(FloatSize());
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
BorderData.h 110 const LengthSize& topRight() const { return m_topRight; }
RenderStyle.cpp 762 IntSize(border.topRight().width().calcValue(width),
763 border.topRight().height().calcValue(height)),
779 radiiSum = static_cast<unsigned>(radii.topLeft().width()) + static_cast<unsigned>(radii.topRight().width()); // Casts to avoid integer overflow.
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.cpp     [all...]
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 193 Float3 topRight = new Float3(1.0f, 1.0f, 0.0f);
202 fullQuad.set_position(2, topRight, false);
  /external/webkit/Source/WebCore/css/
CSSGradientValue.cpp 650 FloatPoint topRight(size.width(), 0);
651 float topRightDistance = FloatSize(p - topRight).diagonalLength();
663 corner = topRight;
683 FloatPoint topRight(size.width(), 0);
684 float topRightDistance = FloatSize(p - topRight).diagonalLength();
696 corner = topRight;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 747 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
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);
    [all...]
  /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/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 823 const IntSize& topRight,
839 if (topLeft.width() + topRight.width() > rect.width()
842 || topRight.height() + bottomRight.height() > rect.height()) {
851 addCornerArc(&path, r, topRight, 270);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/haiku/
GraphicsContextHaiku.cpp 180 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/Source/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp 758 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight,
770 radii[2] = SkIntToScalar(topRight.width());
771 radii[3] = SkIntToScalar(topRight.height());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 1125 void GraphicsContext::fillRoundedRect(const IntRect& r, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
1131 m_data->shadow.drawRectShadow(this, r, topLeft, topRight, bottomLeft, bottomRight);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 511 FloatPoint topRight(rectBeforeTransform->maxX() - 1, rectBeforeTransform->y());
512 topRight = m_data->m_transform.mapPoint(topRight);
515 FloatSize sideTop = topRight - topLeft;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 278 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/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 744 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
750 path.addRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight);
    [all...]

Completed in 2990 milliseconds

1 2