Lines Matching refs:Path
32 import android.graphics.Path;
257 Path mPath;
258 Path mFocusPath;
267 mPath = new Path();
268 mFocusPath = new Path();
413 private void drawClipped(Canvas canvas, Paint paint, Path clipPath, int left) {
424 private void setTabPath(Path path, int l, int t, int r, int b) {
425 path.reset();
426 path.moveTo(l, b);
427 path.lineTo(l, t);
428 path.lineTo(r - mTabSliceWidth, t);
429 path.lineTo(r, b);
430 path.close();
433 private void setFocusPath(Path path, int l, int t, int r, int b) {
434 path.reset();
435 path.moveTo(l, b);
436 path.lineTo(l, t);
437 path.lineTo(r - mTabSliceWidth, t);
438 path.lineTo(r, b);