HomeSort by relevance Sort by last modified time
    Searched defs:mPath (Results 1 - 25 of 315) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/img_utils/include/img_utils/
FileInput.h 68 String8 mPath;
FileOutput.h 39 String8 mPath;
  /sdk/find_java2/src/
JavaPath.h 32 CPath mPath;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
RoundedLine.java 26 private final Path mPath = new Path();
45 mPath.rewind();
51 return mPath; // Return an empty path
92 mPath.moveTo(p1x, p1y);
93 mPath.arcTo(mArc1, angle, a1);
95 mPath.moveTo(p2x, p2y);
96 mPath.arcTo(mArc2, angle, a2);
98 mPath.moveTo(p1ax, p1ay);
99 mPath.lineTo(p1x, p1y);
100 mPath.lineTo(p1bx, p1by)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Outline.java 62 public final Path mPath = new Path();
91 mPath.rewind();
151 mPath.set(src.mPath);
186 mPath.rewind();
240 mPath.rewind();
241 mPath.addOval(left, top, right, bottom, Path.Direction.CW);
268 mPath.set(convexPath);
280 mPath.offset(dx, dy);
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 38 private Path mPath; // this is what we actually draw
74 mPath = new Path();
79 canvas.drawPath(mPath, paint);
92 outline.setConvexPath(mPath);
109 mPath.reset();
112 mPath.addRoundRect(r, mOuterRadii, Path.Direction.CW);
114 mPath.addRect(r, Path.Direction.CW);
121 mPath.addRoundRect(mInnerRect, mInnerRadii, Path.Direction.CCW);
123 mPath.addRect(mInnerRect, Path.Direction.CCW);
136 shape.mPath = new Path(mPath)
    [all...]
  /frameworks/support/documents-archive/src/android/support/provider/
ParsedDocumentId.java 24 public final String mPath;
28 mPath = path;
46 if (mPath == null) {
49 return mArchiveId + idDelimiter + mPath;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
FingerPaint.java 65 private Path mPath;
71 mPath = new Path();
88 canvas.drawPath(mPath, mPaint);
95 mPath.reset();
96 mPath.moveTo(x, y);
104 mPath.quadTo(mX, mY, (x + mX)/2, (y + mY)/2);
110 mPath.lineTo(mX, mY);
112 mCanvas.drawPath(mPath, mPaint);
114 mPath.reset();
Clipping.java 34 private Path mPath;
46 mPath = new Path();
81 mPath.reset();
82 canvas.clipPath(mPath); // makes the clip empty
83 mPath.addCircle(50, 50, 50, Path.Direction.CCW);
84 canvas.clipPath(mPath, Region.Op.REPLACE);
PathEffects.java 35 private Path mPath;
63 mPath = makeFollowPath();
76 mPath.computeBounds(bounds, false);
86 canvas.drawPath(mPath, mPaint);
94 mPath = makeFollowPath();
ShadowCardDrag.java 117 private final Path mPath = new Path();
121 mPath.reset();
122 mPath.moveTo(0, 0);
123 mPath.lineTo(width, 0);
124 mPath.lineTo(width / 2, height);
125 mPath.lineTo(0, 0);
126 mPath.close();
131 canvas.drawPath(mPath, paint);
136 outline.setConvexPath(mPath);
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
DrawerArrowDrawable.java 53 private final Path mPath = new Path();
130 mPath.rewind();
136 mPath.moveTo(arrowEdge + middleBarCut, 0);
137 mPath.rLineTo(middleBarSize - middleBarCut * 2, 0);
140 mPath.moveTo(arrowEdge, topBottomBarOffset);
141 mPath.rLineTo(arrowWidth, arrowHeight);
144 mPath.moveTo(arrowEdge, -topBottomBarOffset);
145 mPath.rLineTo(arrowWidth, -arrowHeight);
147 mPath.close();
158 canvas.drawPath(mPath, mPaint)
    [all...]