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

1 2 3 4 5 6 7

  /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;
  /sdk/find_java2/src/
JavaPath.cpp 27 CJavaPath::CJavaPath(int version, CPath path) : mVersion(version), mPath(path) {
28 mPath.Canonicalize();
37 mPath = CPath();
42 mPath = path;
43 mPath.Canonicalize();
54 const TCHAR *longPath = mPath;
72 mPath = CPath(shortPath);
85 const CString &pl = mPath;
86 const CString &pr = rhs.mPath;
92 const CString &pl = mPath;
    [all...]
  /frameworks/av/media/img_utils/src/
FileOutput.cpp 24 FileOutput::FileOutput(String8 path) : mFp(NULL), mPath(path), mOpen(false) {}
28 ALOGW("%s: Destructor called with %s still open.", __FUNCTION__, mPath.string());
35 ALOGW("%s: Open called when file %s already open.", __FUNCTION__, mPath.string());
38 mFp = ::fopen(mPath, "wb");
40 ALOGE("%s: Could not open file %s", __FUNCTION__, mPath.string());
49 ALOGE("%s: Could not write file %s, file not open.", __FUNCTION__, mPath.string());
57 ALOGE("%s: Error %d occurred while writing file %s.", __FUNCTION__, error, mPath.string());
65 ALOGW("%s: Close called when file %s already close.", __FUNCTION__, mPath.string());
71 ALOGE("%s: Failed to close file %s.", __FUNCTION__, mPath.string());
FileInput.cpp 24 FileInput::FileInput(String8 path) : mFp(NULL), mPath(path), mOpen(false) {}
36 ALOGW("%s: Open called when file %s already open.", __FUNCTION__, mPath.string());
39 mFp = ::fopen(mPath, "rb");
41 ALOGE("%s: Could not open file %s", __FUNCTION__, mPath.string());
50 ALOGE("%s: Could not read file %s, file not open.", __FUNCTION__, mPath.string());
57 ALOGE("%s: Error %d occurred while reading file %s.", __FUNCTION__, error, mPath.string());
71 ALOGW("%s: Close called when file %s already close.", __FUNCTION__, mPath.string());
77 ALOGE("%s: Failed to close file %s.", __FUNCTION__, mPath.string());
  /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...]
  /system/vold/
PrivateVolume.cpp 99 mPath = StringPrintf("/mnt/expand/%s", mFsUuid.c_str());
100 setPath(mPath);
102 if (PrepareDir(mPath, 0700, AID_ROOT, AID_ROOT)) {
103 PLOG(ERROR) << getId() << " failed to create mount point " << mPath;
108 int res = ext4::Check(mDmDevPath, mPath);
116 if (ext4::Mount(mDmDevPath, mPath, false, false, true)) {
130 if (f2fs::Mount(mDmDevPath, mPath)) {
140 LOG(VERBOSE) << "Starting restorecon of " << mPath;
144 property_set("selinux.restorecon_recursive", mPath.c_str());
149 if (strcmp(mPath.c_str(), value) == 0)
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
PathShape.java 30 private Path mPath;
49 mPath = path;
58 canvas.drawPath(mPath, paint);
71 shape.mPath = new Path(mPath);
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/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;
  /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...]
  /frameworks/base/graphics/java/android/graphics/
Outline.java 35 public Path mPath;
63 mPath = null;
77 return mRect == null && mPath == null;
122 if (src.mPath != null) {
123 if (mPath == null) {
124 mPath = new Path();
126 mPath.set(src.mPath);
168 mPath = null;
193 if (mPath == null) mPath = new Path()
    [all...]
  /frameworks/base/libs/hwui/
Outline.h 39 mPath.reset();
40 mPath.addRoundRect(SkRect::MakeLTRB(left, top, right, bottom),
51 mPath = *outline;
58 mPath.reset();
64 mPath.reset();
106 return &mPath;
122 SkPath mPath;
RevealClip.h 40 mPath.rewind();
42 mPath.addCircle(x, y, radius);
59 return &mPath;
67 SkPath mPath;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
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);
Compass.java 81 private Path mPath = new Path();
88 mPath.moveTo(0, -50);
89 mPath.lineTo(-20, 60);
90 mPath.lineTo(0, 50);
91 mPath.lineTo(20, 60);
92 mPath.close();
113 canvas.drawPath(mPath, mPaint);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
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);
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);
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);
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...]
TextOnPathActivity.java 30 private Path mPath;
37 mPath = makePath();
98 mMeasure = new PathMeasure(mPath, false);
115 canvas.drawTextOnPath(mText + mText, mPath, 0.0f, 0.0f, mPaint);
116 canvas.drawPath(mPath, mPathPaint);
135 canvas.drawTextOnPath(mText, mPath, 0.0f, 10.0f, mPaint);
139 canvas.drawPath(mPath, mPathPaint);
143 canvas.drawTextOnPath(mText, mPath, 0.0f, 0.0f, mPaint);
144 canvas.drawPath(mPath, mPathPaint);
148 canvas.drawTextOnPath(mText, mPath, 0.0f, 0.0f, mPaint)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 28 private Path mPath;
33 mPath = new Path();
63 mPathMeasure.setPath(mPath, true);
64 mPath.addRect(1f, 2f, 3f, 4f, Path.Direction.CW);
65 mPathMeasure.setPath(mPath, true);
73 mPath.addRect(1, 2, 3, 4, Path.Direction.CW);
74 mPathMeasure.setPath(mPath, true);
80 mPath.addRect(1, 2, 3, 4, Path.Direction.CW);
81 mPathMeasure.setPath(mPath, true);
104 mPathMeasure.setPath(mPath, true)
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureLibraries.java 53 private final File mPath;
56 mPath = path;
61 return !mPath.canWrite();
67 final File file = mPath;
83 Log.d(LOG_TAG, "Could not save the gesture library in " + mPath, e);
85 Log.d(LOG_TAG, "Could not save the gesture library in " + mPath, e);
93 final File file = mPath;
99 Log.d(LOG_TAG, "Could not load the gesture library from " + mPath, e);
101 Log.d(LOG_TAG, "Could not load the gesture library from " + mPath, e);
  /frameworks/base/media/java/android/mtp/
MtpStorage.java 32 private final String mPath;
40 mPath = volume.getPath();
62 return mPath;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 61 private Path2D mPath = new Path2D.Double();
73 return mPath;
77 mPath.reset();
78 mPath.append(shape, false /*connect*/);
82 mPath.reset();
86 mPath.reset();
87 mPath.append(iterator, false /*connect*/);
121 pathDelegate.mPath.reset();
191 Area area = new Area(pathDelegate.mPath);
342 pathDelegate.mPath.append(new Ellipse2D.Float
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
GradleModule.java 35 private String mPath;
77 mPath = path;
81 return mPath;
86 return "GradleModule [mJavaProject=" + mJavaProject + ", mPath=" + mPath + ", mType="

Completed in 2946 milliseconds

1 2 3 4 5 6 7