Searched refs:mPath (Results 1 - 22 of 22) sorted by relevance

/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/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/Contacts/src/com/android/contacts/quickcontact/
H A DWebAddress.java47 private String mPath; field in class:WebAddress
75 mPath = "/";
101 mPath = t;
103 mPath = "/" + t;
137 return mScheme + "://" + authInfo + mHost + port + mPath;
/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;
H A DClusterAlbumSet.java108 childPath = mPath.getChild(Uri.encode(childName));
111 childPath = mPath.getChild(minSize);
113 childPath = mPath.getChild(i);
H A DLocalAlbumSet.java129 mType, mPath, entry.bucketId, entry.bucketName);
H A DMediaSet.java145 if (item != null && item.mPath == path) return i;
H A DLocalImage.java175 return new LocalImageRequest(mApplication, mPath, dateModifiedInSec,
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
H A DFileImageRequest.java35 private final String mPath; field in class:FileImageRequest
41 mPath = descriptor.path;
52 final ExifInterface exif = new ExifInterface(mPath);
/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...]
H A DImageFilterDraw.java114 if (sd.mPath == null) {
131 mCacheTransPath.addPath(sd.mPath, toScrMatrix);
161 if (sd == null || sd.mPath == null) {
168 mCacheTransPath.addPath(sd.mPath, toScrMatrix);
/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/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
H A DPieItem.java47 private Path mPath; field in class:PieItem
82 mPath = p;
86 return mPath;
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaThumbRequest.java59 String mPath; field in class:MediaThumbRequest
88 mPath = path;
177 if (mPath != null) {
179 bitmap = ThumbnailUtils.createVideoThumbnail(mPath,
182 bitmap = ThumbnailUtils.createImageThumbnail(mPath,
186 Log.w(TAG, "Can't create mini thumbnail for " + mPath);
H A DMediaProvider.java634 if (mCurrentThumbRequest.mPath != null) {
635 File origFile = new File(mCurrentThumbRequest.mPath);
652 Log.w(TAG, "original file hasn't been stored yet: " + mCurrentThumbRequest.mPath);
3726 String mPath = null; field in class:MediaProvider.ScannerClient
3732 mPath = path;
3741 new String[] { mPath + "/", mPath + "0"},
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/
H A DBitmapRegionTileSource.java245 private String mPath; field in class:BitmapRegionTileSource.FilePathBitmapSource
247 mPath = path;
252 d = SimpleBitmapRegionDecoderWrapper.newInstance(mPath, true);
254 d = DumbBitmapRegionDecoder.newInstance(mPath);
260 return BitmapFactory.decodeFile(mPath, options);
265 ei.readExif(mPath);
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
H A DAccountSelectionUtil.java50 public static Uri mPath; field in class:AccountSelectionUtil
200 importIntent.setData(mPath);
203 mPath = null;
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
H A DVCardService.java73 final String mPath; field in class:VCardService.CustomMediaScannerConnectionClient
77 mPath = path;
87 mConnection.scanFile(mPath, null);
/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/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);
/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);

Completed in 612 milliseconds