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

  /external/skqp/src/core/
SkScan.h 56 static void FrameRect(const SkRect&, const SkPoint& strokeSize,
58 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
91 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 112 * Iff RectType == kStroke_RectType, then strokeSize is set to the device
116 SkPoint* strokeSize);
SkDraw.cpp 679 SkPoint* strokeSize) {
685 *strokeSize = compute_stroke_size(paint, matrix);
691 SkPoint* strokeSize) {
708 } else if (easy_rect_join(paint, matrix, strokeSize)) {
754 SkPoint strokeSize;
755 RectType rtype = ComputeRectType(paint, *fMatrix, &strokeSize);
775 // For kStroke_RectType, strokeSize is already computed.
777 ? strokeSize
818 SkScan::AntiFrameRect(localDevRect, strokeSize, clip, blitter);
820 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));
  /external/skia/src/core/
SkScan.h 57 static void FrameRect(const SkRect&, const SkPoint& strokeSize,
59 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
93 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 113 * Iff RectType == kStroke_RectType, then strokeSize is set to the device
117 SkPoint* strokeSize);
SkDraw.cpp 684 SkPoint* strokeSize) {
690 *strokeSize = compute_stroke_size(paint, matrix);
696 SkPoint* strokeSize) {
713 } else if (easy_rect_join(paint, matrix, strokeSize)) {
759 SkPoint strokeSize;
760 RectType rtype = ComputeRectType(paint, *fMatrix, &strokeSize);
780 // For kStroke_RectType, strokeSize is already computed.
782 ? strokeSize
823 SkScan::AntiFrameRect(localDevRect, strokeSize, clip, blitter);
825 SkScan::FrameRect(localDevRect, strokeSize, clip, blitter)
    [all...]

Completed in 1209 milliseconds