HomeSort by relevance Sort by last modified time
    Searched refs:mPath (Results 51 - 75 of 101) sorted by null

1 23 4 5

  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 62 private String mPath;
85 Log.v(TAG, "UriImage uri: " + uri + " mPath: " + mPath + " mWidth: " + mWidth +
91 mPath = uri.getPath();
93 String extension = MimeTypeMap.getFileExtensionFromUrl(mPath);
97 int dotPos = mPath.lastIndexOf('.');
99 extension = mPath.substring(dotPos + 1);
110 mSrc = mPath.substring(mPath.lastIndexOf('/') + 1);
178 mPath = filePath
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameView.java 598 private final Path mPath;
609 mPath = new Path();
610 mPath.moveTo(0, 0);
611 mPath.lineTo((float)Math.cos(-CORNER_ANGLE) * mSize,
613 mPath.lineTo(mSize, 0);
614 mPath.lineTo((float)Math.cos(CORNER_ANGLE) * mSize,
616 mPath.lineTo(0, 0);
696 canvas.drawPath(mPath, mPaint);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ScaledTextActivity.java 51 private final Path mPath;
59 mPath = makePath();
129 // canvas.drawTextOnPath(TEXT + TEXT + TEXT, mPath, 0.0f, 0.0f, mPaint);
  /frameworks/base/tools/aapt/
AaptAssets.h 180 const String8& getPath() const { return mPath; }
209 String8 mPath;
227 : mLeaf(leaf), mPath(path) { }
233 const String8& getPath() const { return mPath; }
247 String8 mPath;
260 : mLeaf(leaf), mPath(path) { }
265 const String8& getPath() const { return mPath; }
312 String8 mPath;
  /frameworks/av/cmds/stagefright/
SimplePlayer.h 86 AString mPath;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterDraw.java 114 if (sd.mPath == null) {
131 mCacheTransPath.addPath(sd.mPath, toScrMatrix);
161 if (sd == null || sd.mPath == null) {
168 mCacheTransPath.addPath(sd.mPath, toScrMatrix);
  /system/core/libsysutils/src/
NetlinkEvent.cpp 51 mPath = NULL;
57 if (mPath)
58 free(mPath);
303 mPath = strdup(p+1);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
Sensors.java 59 private Path mPath = new Path();
83 mPath.arcTo(mRect, 0, 180);
110 final Path path = mPath;
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
ObjectViewer.java 60 private String mPath;
67 mPath = path;
72 mScannerConnection.scanFile(mPath, null);
  /packages/apps/Camera2/src/com/android/camera/data/
LocalMediaData.java 63 protected final String mPath;
92 mPath = new String(path);
137 return mPath;
157 File f = new File(mPath);
266 mediaDetails.addDetail(MediaDetails.INDEX_PATH, mPath);
399 return "Photo:" + ",data=" + mPath + ",mimeType=" + mMimeType
435 MediaDetails.extractExifInfo(mediaDetails, mPath);
512 BitmapFactory.decodeFile(mPath, justBoundsOpts);
539 Bitmap b = BitmapFactory.decodeFile(mPath, opts);
686 return "Video:" + ",data=" + mPath + ",mimeType=" + mMimeTyp
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
AccountSelectionUtil.java 50 public static Uri mPath;
188 importIntent.setData(mPath);
191 mPath = null;
  /frameworks/base/core/tests/coretests/src/android/os/storage/
AsecTests.java 140 String mPath = Environment.getExternalStorageDirectory().toString();
141 String state = getMs().getVolumeState(mPath);
508 String mPath = Environment.getExternalStorageDirectory().toString();
509 String state = getMs().getVolumeState(mPath);
522 String mPath = Environment.getExternalStorageDirectory().toString();
523 int ret = getMs().mountVolume(mPath);
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/
BitmapRegionTileSource.java 227 private String mPath;
230 mPath = path;
235 d = SimpleBitmapRegionDecoderWrapper.newInstance(mPath, true);
237 d = DumbBitmapRegionDecoder.newInstance(mPath);
243 return BitmapFactory.decodeFile(mPath, options);
248 ei.readExif(mPath);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/
BitmapRegionTileSource.java 225 private String mPath;
228 mPath = path;
233 d = SimpleBitmapRegionDecoderWrapper.newInstance(mPath, true);
235 d = DumbBitmapRegionDecoder.newInstance(mPath);
241 return BitmapFactory.decodeFile(mPath, options);
246 ei.readExif(mPath);
  /frameworks/av/media/libstagefright/include/
MPEG4Extractor.h 91 Vector<uint32_t> mPath;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
ProjectState.java 73 private String mPath;
95 mPath = null;
106 mPath = project.getProject().getLocation().toOSString();
136 return mPath;
  /development/samples/ControllerSample/src/com/example/controllersample/
GameView.java 651 private final Path mPath;
679 mPath = new Path();
680 mPath.moveTo(0, 0);
681 mPath.lineTo((float) Math.cos(-CORNER_ANGLE) * mSize,
683 mPath.lineTo(mSize, 0);
684 mPath.lineTo((float) Math.cos(CORNER_ANGLE) * mSize,
686 mPath.lineTo(0, 0);
    [all...]
  /frameworks/base/media/java/android/media/
MediaScanner.java 356 String mPath;
363 mPath = path;
371 return mPath + " mRowId: " + mRowId;
432 private String mPath;
506 mPath = path;
766 map.put(MediaStore.MediaColumns.DATA, mPath);
    [all...]
  /frameworks/base/libs/hwui/
DisplayListOp.h 556 : ClipOp(op), mPath(path) {}
559 renderer.clipPath(mPath, mOp);
563 SkRect bounds = mPath->getBounds();
571 SkPath* mPath;
    [all...]
PathCache.cpp 379 (key.shape.path.mPath == pair.getFirst() ||
380 key.shape.path.mPath == pair.getSecond())) {
428 entry.shape.path.mPath = path;
470 entry.shape.path.mPath = path;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
VCardService.java 77 final String mPath;
81 mPath = path;
91 mConnection.scanFile(mPath, null);
  /hardware/qcom/display/msm8960/liboverlay/
overlayUtils.h 787 char mPath[utils::MAX_PATH_LEN];
800 mPath[0] = 0;
821 ::strncpy(mPath, dev, utils::MAX_PATH_LEN);
848 mFD, mPath);
  /hardware/qcom/display/msm8974/liboverlay/
overlayUtils.h 765 char mPath[utils::MAX_PATH_LEN];
778 mPath[0] = 0;
799 ::strncpy(mPath, dev, utils::MAX_PATH_LEN);
826 mFD, mPath);
  /hardware/qcom/display/msm8x26/liboverlay/
overlayUtils.h 787 char mPath[utils::MAX_PATH_LEN];
800 mPath[0] = 0;
821 ::strncpy(mPath, dev, utils::MAX_PATH_LEN);
848 mFD, mPath);
  /packages/apps/Browser/src/com/android/browser/
TabBar.java 253 Path mPath;
263 mPath = new Path();
360 setTabPath(mPath, 0, 0, r - l, b - t);
391 drawClipped(canvas, paint, mPath, mWindowPos[0]);

Completed in 1630 milliseconds

1 23 4 5