Searched defs:mPath (Results 1 - 16 of 16) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DImageCacheRequest.java32 private Path mPath; field in class:ImageCacheRequest
40 mPath = path;
47 return mPath + "," + mTimeModified + "," +
58 boolean found = cacheService.getImageData(mPath, mTimeModified, mType, buffer);
97 cacheService.putImageData(mPath, mTimeModified, mType, array);
H A DMediaObject.java72 protected final Path mPath; field in class:MediaObject
81 mPath = path;
86 return mPath;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DRoundedLine.java26 private final Path mPath = new Path(); field in class:RoundedLine
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
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
H A DAccountSelectionUtil.java50 public static Uri mPath; field in class:AccountSelectionUtil
188 importIntent.setData(mPath);
191 mPath = null;
/packages/apps/Mms/src/com/android/mms/ui/
H A DUriImage.java62 private String mPath; field in class:UriImage
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
[all...]
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaThumbRequest.java59 String mPath; field in class:MediaThumbRequest
88 mPath = path;
174 if (mPath != null) {
176 bitmap = ThumbnailUtils.createVideoThumbnail(mPath,
179 bitmap = ThumbnailUtils.createImageThumbnail(mPath,
183 Log.w(TAG, "Can't create mini thumbnail for " + mPath);
H A DMediaProvider.java605 File origFile = new File(mCurrentThumbRequest.mPath);
611 Log.w(TAG, "original file hasn't been stored yet: " + mCurrentThumbRequest.mPath);
3669 String mPath = null; field in class:MediaProvider.ScannerClient
3675 mPath = path;
3684 new String[] { mPath + "/", mPath + "0"},
/packages/apps/Camera2/src/com/android/camera/ui/
H A DPieItem.java42 private Path mPath; field in class:PieItem
93 mPath = p;
97 return mPath;
/packages/apps/Camera/src/com/android/camera/ui/
H A DPieItem.java48 private Path mPath; field in class:PieItem
83 mPath = p;
87 return mPath;
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
H A DVCardService.java77 final String mPath; field in class:VCardService.CustomMediaScannerConnectionClient
81 mPath = path;
91 mConnection.scanFile(mPath, null);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DFilterDrawRepresentation.java91 public Path mPath; field in class:FilterDrawRepresentation.StrokeData
102 mPath = new Path(copy.mPath);
121 return mPath.equals(sd.mPath);
126 return "stroke(" + mType + ", path(" + (mPath) + "), " + mRadius + " , "
242 if (fdRep.mCurrent == null ^ (mCurrent == null || mCurrent.mPath == null)) {
247 if (fdRep.mCurrent != null && mCurrent != null && mCurrent.mPath != null) {
283 mCurrent.mPath = new Path();
284 mCurrent.mPath
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
H A DStateView.java35 private Path mPath = new Path(); field in class:StateView
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
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DTabBar.java253 Path mPath; field in class:TabBar.TabView
263 mPath = new Path();
360 setTabPath(mPath, 0, 0, r - l, b - t);
391 drawClipped(canvas, paint, mPath, mWindowPos[0]);
/packages/apps/Browser/src/com/android/browser/view/
H A DPieMenu.java85 private Path mPath; field in class:PieMenu
251 mPath = makeSlice(getDegrees(0) - gap, getDegrees(sweep) + gap, outer, inner, mCenter);
340 canvas.drawPath(mPath, p);
/packages/apps/Camera2/src/com/android/camera/data/
H A DLocalMediaData.java63 protected final String mPath; field in class:LocalMediaData
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
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DPhotoDataAdapter.java853 private final Path mPath; field in class:PhotoDataAdapter.FullImageListener
857 mPath = item.getPath();
869 updateFullImage(mPath, mFuture);
875 private final Path mPath; field in class:PhotoDataAdapter.ScreenNailListener
879 mPath = item.getPath();
891 updateScreenNail(mPath, mFuture);

Completed in 273 milliseconds