Home | History | Annotate | Download | only in setup

Lines Matching defs:path

23 import android.graphics.Path;
85 private final Path mIndicatorPath = new Path();
103 final Path path = mIndicatorPath;
104 path.rewind();
107 path.moveTo(width, 0.0f);
108 path.lineTo(0.0f, halfHeight);
109 path.lineTo(width, height);
112 path.moveTo(0.0f, 0.0f);
113 path.lineTo(width, halfHeight);
114 path.lineTo(0.0f, height);
116 path.close();
120 canvas.drawPath(path, mIndicatorPaint);