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

  /external/chromium_org/third_party/skia/src/core/
SkScan.h 50 static void FrameRect(const SkRect&, const SkPoint& strokeSize,
52 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
89 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
SkScan_Hairline.cpp 340 void SkScan::FrameRect(const SkRect& r, const SkPoint& strokeSize,
342 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
344 if (strokeSize.fX < 0 || strokeSize.fY < 0) {
348 const SkScalar dx = strokeSize.fX;
349 const SkScalar dy = strokeSize.fY;
SkScan_Antihair.cpp 988 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
990 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
992 SkScalar rx = SkScalarHalf(strokeSize.fX);
993 SkScalar ry = SkScalarHalf(strokeSize.fY);
1023 rx = strokeSize.fX - rx;
1024 ry = strokeSize.fY - ry;
1056 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
1059 AntiFrameRect(r, strokeSize, &clip.bwRgn(), blitter);
1062 AntiFrameRect(r, strokeSize, &wrap.getRgn(), wrap.getBlitter())
    [all...]
SkDraw.cpp 796 SkPoint* strokeSize) {
804 matrix.mapVectors(strokeSize, &pt, 1);
805 strokeSize->fX = SkScalarAbs(strokeSize->fX);
806 strokeSize->fY = SkScalarAbs(strokeSize->fY);
812 SkPoint* strokeSize) {
830 } else if (easy_rect_join(paint, matrix, strokeSize)) {
854 SkPoint strokeSize;
855 RectType rtype = ComputeRectType(paint, *fMatrix, &strokeSize);
    [all...]
  /external/skia/src/core/
SkScan.h 50 static void FrameRect(const SkRect&, const SkPoint& strokeSize,
52 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
89 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
SkScan_Hairline.cpp 340 void SkScan::FrameRect(const SkRect& r, const SkPoint& strokeSize,
342 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
344 if (strokeSize.fX < 0 || strokeSize.fY < 0) {
348 const SkScalar dx = strokeSize.fX;
349 const SkScalar dy = strokeSize.fY;
SkScan_Antihair.cpp 988 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
990 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
992 SkScalar rx = SkScalarHalf(strokeSize.fX);
993 SkScalar ry = SkScalarHalf(strokeSize.fY);
1023 rx = strokeSize.fX - rx;
1024 ry = strokeSize.fY - ry;
1056 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
1059 AntiFrameRect(r, strokeSize, &clip.bwRgn(), blitter);
1062 AntiFrameRect(r, strokeSize, &wrap.getRgn(), wrap.getBlitter())
    [all...]
SkDraw.cpp 796 SkPoint* strokeSize) {
804 matrix.mapVectors(strokeSize, &pt, 1);
805 strokeSize->fX = SkScalarAbs(strokeSize->fX);
806 strokeSize->fY = SkScalarAbs(strokeSize->fY);
812 SkPoint* strokeSize) {
830 } else if (easy_rect_join(paint, matrix, strokeSize)) {
854 SkPoint strokeSize;
855 RectType rtype = ComputeRectType(paint, *fMatrix, &strokeSize);
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkDraw.h 104 * Iff RectType == kStroke_RectType, then strokeSize is set to the device
108 SkPoint* strokeSize);
  /external/skia/include/core/
SkDraw.h 104 * Iff RectType == kStroke_RectType, then strokeSize is set to the device
108 SkPoint* strokeSize);
  /packages/apps/DeskClock/src/com/android/deskclock/
Utils.java 160 float strokeSize, float dotStrokeSize, float markerStrokeSize) {
161 return Math.max(strokeSize, Math.max(dotStrokeSize, markerStrokeSize));
170 float strokeSize = resources.getDimension(R.dimen.circletimer_circle_size);
173 return calculateRadiusOffset(strokeSize, dotStrokeSize, markerStrokeSize);

Completed in 2790 milliseconds