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

1 2 3 4 5

  /external/qemu/android/filesystems/
partition_types_unittest.cpp 35 mPath = android::testing::CreateTempFilePath();
39 if (!mPath.empty()) {
40 HANDLE_EINTR(::unlink(mPath.c_str()));
45 return mPath.c_str();
49 std::string mPath;
  /frameworks/av/media/img_utils/include/img_utils/
FileInput.h 68 String8 mPath;
FileOutput.h 39 String8 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 34 public Path mPath;
62 mPath = null;
76 return mRect == null && mPath == null;
121 if (src.mPath != null) {
122 if (mPath == null) {
123 mPath = new Path();
125 mPath.set(src.mPath);
167 mPath = null;
192 if (mPath == null) mPath = new Path()
    [all...]
  /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...]
  /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);
PathFillTypes.java 38 private Path mPath;
45 mPath = new Path();
46 mPath.addCircle(40, 40, 45, Path.Direction.CCW);
47 mPath.addCircle(80, 80, 45, Path.Direction.CCW);
56 mPath.setFillType(ft);
57 canvas.drawPath(mPath, paint);
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
DrawerArrowDrawable.java 52 private final Path mPath = new Path();
111 mPath.rewind();
115 mPath.moveTo(arrowEdge + middleBarCut, 0);
116 mPath.rLineTo(middleBarSize - middleBarCut, 0);
122 mPath.moveTo(arrowEdge, topBottomBarOffset);
123 mPath.rLineTo(arrowWidth, arrowHeight);
126 mPath.moveTo(arrowEdge, -topBottomBarOffset);
127 mPath.rLineTo(arrowWidth, -arrowHeight);
128 mPath.moveTo(0, 0);
129 mPath.close()
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 59 private GeneralPath mPath = new GeneralPath();
71 return mPath;
75 mPath.reset();
76 mPath.append(shape, false /*connect*/);
80 mPath.reset();
84 mPath.reset();
85 mPath.append(iterator, false /*connect*/);
119 pathDelegate.mPath.reset();
189 Area area = new Area(pathDelegate.mPath);
340 pathDelegate.mPath.append(new Ellipse2D.Float
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ScaledPathsActivity.java 39 private final Path mPath;
51 mPath = new Path();
52 mPath.moveTo(0.0f, 0.0f);
53 mPath.cubicTo(0.0f, 0.0f, 100.0f, 150.0f, 100.0f, 200.0f);
54 mPath.cubicTo(100.0f, 200.0f, 50.0f, 300.0f, -80.0f, 200.0f);
55 mPath.cubicTo(-80.0f, 200.0f, 100.0f, 200.0f, 200.0f, 0.0f);
57 mPath.computeBounds(mPathBounds, true);
87 canvas.drawPath(mPath, mPathPaint);
PathOffsetActivity.java 39 private Path mPath;
49 mPath = new Path();
50 mPath.lineTo(100, 100);
51 mPath.lineTo(200, 300);
56 mPath.offset(1, 1);
58 canvas.drawPath(mPath, mPaint);
PathsActivity.java 46 private final Path mPath;
85 mPath = new Path();
86 mPath.moveTo(0.0f, 0.0f);
87 mPath.cubicTo(0.0f, 0.0f, 100.0f, 150.0f, 100.0f, 200.0f);
88 mPath.cubicTo(100.0f, 200.0f, 50.0f, 300.0f, -80.0f, 200.0f);
89 mPath.cubicTo(-80.0f, 200.0f, 100.0f, 200.0f, 200.0f, 0.0f);
92 mPath.computeBounds(mPathBounds, true);
103 canvas.drawPath(mPath, mMediumPaint);
115 canvas.drawPath(mPath, mSmallPaint);
118 canvas.drawPath(mPath, mMediumPaint)
    [all...]
PathsCacheActivity.java 33 private Path mPath;
43 mPath = makePath();
96 canvas.drawPath(mPath, mMediumPaint);
98 mPath.reset();
99 buildPath(mPath);
102 canvas.drawPath(mPath, mMediumPaint);
103 canvas.drawPath(mPath, mMediumPaint);
105 mPath.reset();
106 buildPath(mPath);
109 canvas.drawPath(mPath, mMediumPaint)
    [all...]
SmallCircleActivity.java 49 private final Path mPath;
54 mPath = new Path();
55 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.275f, Path.Direction.CW);
56 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.225f, Path.Direction.CCW);
67 canvas.drawPath(mPath, mPaint);
  /frameworks/base/libs/hwui/
RevealClip.h 40 mPath.rewind();
42 mPath.addCircle(x, y, radius);
59 return &mPath;
67 SkPath mPath;
  /frameworks/base/media/java/android/mtp/
MtpStorage.java 32 private final String mPath;
40 mPath = volume.getPath();
74 return mPath;
  /frameworks/base/tools/aapt/
OutputSet.h 31 : mPath(path), mFile(file) {}
38 return mPath;
41 bool operator<(const OutputEntry& o) const { return getPath() < o.mPath; }
42 bool operator==(const OutputEntry& o) const { return getPath() == o.mPath; }
45 android::String8 mPath;
  /frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
MediaPlayerDataSource.java 39 private final String mPath;
44 mPath = null;
50 mPath = path;
57 mediaPlayer.setDataSource(mPath);
65 VariableSpeedNative.playUri(mPath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileInfo.java 20 private final String mPath;
25 mPath = path;
31 return mPath;
  /development/samples/Obb/src/com/example/android/obbapp/
ObbMountActivity.java 44 private TextView mPath;
62 mPath = (TextView) findViewById(R.id.path);
69 mPath.setText(state.path);
84 mPath.setText(mSM.getMountedObbPath(mObbPath));
86 mPath.setText("");
133 ObbState state = new ObbState(mSM, mStatus.getText(), mPath.getText());
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StateView.java 35 private Path mPath = new Path();
136 mPath.reset();
164 canvas.drawPath(mPath, mPaint);
170 mPath.moveTo(w, 0);
172 mPath.lineTo(0, 0);
173 mPath.lineTo(0, h);
175 mPath.lineTo(d, 0);
176 mPath.lineTo(d, r);
177 mPath.lineTo(0, r + d);
178 mPath.lineTo(d, r + d + r)
    [all...]

Completed in 216 milliseconds

1 2 3 4 5