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

  /external/skia/src/core/
SkScan.h 54 static void FrameRect(const SkRect&, const SkPoint& strokeSize,
56 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
86 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
SkScan_Antihair.cpp 916 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
918 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
920 SkScalar rx = SkScalarHalf(strokeSize.fX);
921 SkScalar ry = SkScalarHalf(strokeSize.fY);
945 rx = strokeSize.fX - rx;
946 ry = strokeSize.fY - ry;
958 if (strokeSize.fX < 1 || strokeSize.fY < 1) {
996 void SkScan::AntiFrameRect(const SkRect& r, const SkPoint& strokeSize,
    [all...]
SkScan_Hairline.cpp 632 void SkScan::FrameRect(const SkRect& r, const SkPoint& strokeSize,
634 SkASSERT(strokeSize.fX >= 0 && strokeSize.fY >= 0);
636 if (strokeSize.fX < 0 || strokeSize.fY < 0) {
640 const SkScalar dx = strokeSize.fX;
641 const SkScalar dy = strokeSize.fY;
SkDraw.h 116 * Iff RectType == kStroke_RectType, then strokeSize is set to the device
120 SkPoint* strokeSize);
SkDraw.cpp 679 SkPoint* strokeSize) {
685 *strokeSize = compute_stroke_size(paint, matrix);
691 SkPoint* strokeSize) {
709 } else if (easy_rect_join(paint, matrix, strokeSize)) {
745 SkPoint strokeSize;
746 RectType rtype = ComputeRectType(paint, *fMatrix, &strokeSize);
773 // For kStroke_RectType, strokeSize is already computed.
775 ? strokeSize
810 SkScan::AntiFrameRect(localDevRect, strokeSize, clip, blitter);
812 SkScan::FrameRect(localDevRect, strokeSize, clip, blitter)
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
CircleButtonsLayout.java 33 final float strokeSize = res.getDimension(R.dimen.circletimer_circle_size);
36 mDiamOffset = Utils.calculateRadiusOffset(strokeSize, dotStrokeSize, markerStrokeSize) * 2;
Utils.java 184 float strokeSize, float dotStrokeSize, float markerStrokeSize) {
185 return Math.max(strokeSize, Math.max(dotStrokeSize, markerStrokeSize));

Completed in 252 milliseconds