HomeSort by relevance Sort by last modified time
    Searched refs:topLeft (Results 26 - 50 of 71) sorted by null

12 3

  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.cpp     [all...]
RenderInline.cpp     [all...]
RenderBox.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/openvg/
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)
880 FloatSize clampedTopLeft = FloatSize(topLeft).shrunkTo(rect.size()).expandedTo(FloatSize());
    [all...]
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 191 Float3 topLeft = new Float3(-1.0f, 1.0f, 0.0f);
196 fullQuad.set_position(0, topLeft, false);
  /external/webkit/Source/WebCore/css/
CSSGradientValue.cpp 647 FloatPoint topLeft;
648 float topLeftDistance = FloatSize(p - topLeft).diagonalLength();
659 corner = topLeft;
680 FloatPoint topLeft;
681 float topLeftDistance = FloatSize(p - topLeft).diagonalLength();
692 corner = topLeft;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
ShadowBlur.cpp 423 leftSlice = twiceRadius + max(radii.topLeft().width(), radii.bottomLeft().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());
  /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());
773 if (equalWidths && equalHeights && topLeft.width() * 2 == rect.width() && topLeft.height() * 2 == rect.height())
777 path.addRoundedRect(rect, topLeft, topRight, bottomLeft, bottomRight);
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
RenderThemeQt.cpp 779 const QPoint topLeft = rect.location();
780 p.painter->translate(topLeft);
785 p.painter->translate(-topLeft);
878 const QPoint topLeft = r.location();
879 p.painter->translate(topLeft);
896 p.painter->translate(-topLeft);
940 const QPoint topLeft = r.location();
941 p.painter->translate(topLeft);
946 p.painter->translate(-topLeft);
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 228 float topLeft = (float) Math.sqrt(xFloorSq + yFloorSq);
232 float sum = topLeft + topRight + btmLeft + btmRight;
234 float value = topLeft / sum;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GCWrapper.java 396 public void drawString(String string, Point topLeft) {
397 drawString(string, topLeft.x, topLeft.y);
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_decoder.c 291 FREE(picParamSet.topLeft);
559 FREE(pStorage->pps[i]->topLeft);
  /packages/apps/Music/src/com/android/music/
VerticalTextSpinner.java 281 final int topLeft = 0;
299 canvas.clipRect(topLeft, topTop, topRight, topBottom);
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 135 SkPoint topleft = {rc.fLeft, rc.fTop}; local
137 return isPointSkiaSafe(transform, topleft) && isPointSkiaSafe(transform, bottomright);
822 const IntSize& topLeft,
839 if (topLeft.width() + topRight.width() > rect.width()
841 || topLeft.height() + bottomLeft.height() > rect.height()
854 addCornerArc(&path, r, topLeft, 180);
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebTextCompletionController.mm 124 - (void)_placePopupWindow:(NSPoint)topLeft
131 NSPoint wordStart = topLeft;
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebChromeClient.cpp 499 POINT topLeft = {0, 0};
501 ::ClientToScreen(viewWindow, &topLeft);
502 result.move(topLeft.x, topLeft.y);
  /external/webkit/Tools/QtTestBrowser/
webview.cpp 116 QRectF itemRect(graphicsWebView()->geometry().topLeft(), graphicsWebView()->page()->mainFrame()->contentsSize());
  /external/skia/src/ports/
SkFontHost_mac_atsui.cpp 261 glyph->fLeft = sk_float_round2int(screenMetrics.topLeft.x) - 1;
262 glyph->fTop = -sk_float_round2int(screenMetrics.topLeft.y) - 1;
  /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,
768 radii[0] = SkIntToScalar(topLeft.width());
769 radii[1] = SkIntToScalar(topLeft.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/rendering/style/
RenderStyle.cpp 760 return RoundedIntRect::Radii(IntSize(border.topLeft().width().calcValue(width),
761 border.topLeft().height().calcValue(height)),
779 radiiSum = static_cast<unsigned>(radii.topLeft().width()) + static_cast<unsigned>(radii.topRight().width()); // Casts to avoid integer overflow.
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java     [all...]

Completed in 4556 milliseconds

12 3