/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/ |
D | StateView.java | 35 private Path mPath = new Path(); field in StateView 136 mPath.reset(); in onDraw() 164 canvas.drawPath(mPath, mPaint); in onDraw() 170 mPath.moveTo(w, 0); in drawHorizontalPath() 172 mPath.lineTo(0, 0); in drawHorizontalPath() 173 mPath.lineTo(0, h); in drawHorizontalPath() 175 mPath.lineTo(d, 0); in drawHorizontalPath() 176 mPath.lineTo(d, r); in drawHorizontalPath() 177 mPath.lineTo(0, r + d); in drawHorizontalPath() 178 mPath.lineTo(d, r + d + r); in drawHorizontalPath() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | RoundedLine.java | 26 private final Path mPath = new Path(); field in RoundedLine 45 mPath.rewind(); in makePath() 51 return mPath; // Return an empty path in makePath() 92 mPath.moveTo(p1x, p1y); in makePath() 93 mPath.arcTo(mArc1, angle, a1); in makePath() 95 mPath.moveTo(p2x, p2y); in makePath() 96 mPath.arcTo(mArc2, angle, a2); in makePath() 98 mPath.moveTo(p1ax, p1ay); in makePath() 99 mPath.lineTo(p1x, p1y); in makePath() 100 mPath.lineTo(p1bx, p1by); in makePath() [all …]
|
/packages/services/Car/car-support-lib/src/android/support/car/ui/ |
D | DrawerArrowDrawable.java | 53 private final Path mPath = new Path(); field in DrawerArrowDrawable 130 mPath.rewind(); in draw() 136 mPath.moveTo(arrowEdge + middleBarCut, 0); in draw() 137 mPath.rLineTo(middleBarSize - middleBarCut * 2, 0); in draw() 140 mPath.moveTo(arrowEdge, topBottomBarOffset); in draw() 141 mPath.rLineTo(arrowWidth, arrowHeight); in draw() 144 mPath.moveTo(arrowEdge, -topBottomBarOffset); in draw() 145 mPath.rLineTo(arrowWidth, -arrowHeight); in draw() 147 mPath.close(); in draw() 158 canvas.drawPath(mPath, mPaint); in draw()
|
D | CircularClipAnimation.java | 200 info.mPath.reset(); in onAnimationUpdate() 201 info.mPath.addCircle(mCircleX + info.mOffset.x, mCircleY + info.mOffset.y, in onAnimationUpdate() 203 info.mClippingView.setClipPath(info.mPath); in onAnimationUpdate() 234 final Path mPath; field in CircularClipAnimation.PathClipingViewInfo 240 mPath = new Path(); in PathClipingViewInfo()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
D | FilterDrawRepresentation.java | 91 public Path mPath; field in FilterDrawRepresentation.StrokeData 102 mPath = new Path(copy.mPath); in StrokeData() 121 return mPath.equals(sd.mPath); in equals() 126 return "stroke(" + mType + ", path(" + (mPath) + "), " + mRadius + " , " in toString() 242 if (fdRep.mCurrent == null ^ (mCurrent == null || mCurrent.mPath == null)) { in equals() 247 if (fdRep.mCurrent != null && mCurrent != null && mCurrent.mPath != null) { in equals() 283 mCurrent.mPath = new Path(); in startNewSection() 284 mCurrent.mPath.moveTo(x, y); in startNewSection() 292 mCurrent.mPath.lineTo(x, y); in addPoint() 376 stroke.mPath = new Path(); in deSerializeRepresentation() [all …]
|
D | ImageFilterDraw.java | 114 if (sd.mPath == null) { in paint() 131 mCacheTransPath.addPath(sd.mPath, toScrMatrix); in paint() 161 if (sd == null || sd.mPath == null) { in paint() 168 mCacheTransPath.addPath(sd.mPath, toScrMatrix); in paint()
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
D | WebAddress.java | 47 private String mPath; field in WebAddress 75 mPath = "/"; in WebAddress() 101 mPath = t; in WebAddress() 103 mPath = "/" + t; in WebAddress() 137 return mScheme + "://" + authInfo + mHost + port + mPath; in toString()
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
D | ImageCacheRequest.java | 32 private Path mPath; field in ImageCacheRequest 40 mPath = path; in ImageCacheRequest() 47 return mPath + "," + mTimeModified + "," + in debugTag() 58 boolean found = cacheService.getImageData(mPath, mTimeModified, mType, buffer); in run() 97 cacheService.putImageData(mPath, mTimeModified, mType, array); in run()
|
D | MediaObject.java | 72 protected final Path mPath; field in MediaObject 81 mPath = path; in MediaObject() 86 return mPath; in getPath()
|
D | ClusterAlbumSet.java | 108 childPath = mPath.getChild(Uri.encode(childName)); in updateClusters() 111 childPath = mPath.getChild(minSize); in updateClusters() 113 childPath = mPath.getChild(i); in updateClusters()
|
D | LocalAlbumSet.java | 129 mType, mPath, entry.bucketId, entry.bucketName); in run()
|
D | MediaSet.java | 145 if (item != null && item.mPath == path) return i; in getIndexOf()
|
D | LocalImage.java | 175 return new LocalImageRequest(mApplication, mPath, dateModifiedInSec, in requestImage()
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
D | MediaThumbRequest.java | 59 String mPath; field in 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);
|
D | MediaProvider.java | 638 if (mCurrentThumbRequest.mPath != null) { in onCreate() 639 File origFile = new File(mCurrentThumbRequest.mPath); in onCreate() 656 … Log.w(TAG, "original file hasn't been stored yet: " + mCurrentThumbRequest.mPath); in onCreate() 3743 String mPath = null; field in MediaProvider.ScannerClient 3749 mPath = path; in ScannerClient() 3758 new String[] { mPath + "/", mPath + "0"}, in onMediaScannerConnected()
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
D | FileImageRequest.java | 35 private final String mPath; field in FileImageRequest 41 mPath = descriptor.path; in FileImageRequest() 52 final ExifInterface exif = new ExifInterface(mPath); in loadBitmapInternal()
|
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/ |
D | PieItem.java | 47 private Path mPath; field in PieItem 82 mPath = p; in setPath() 86 return mPath; in getPath()
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/ |
D | BitmapRegionTileSource.java | 250 private String mPath; field in BitmapRegionTileSource.FilePathBitmapSource 252 mPath = path; in FilePathBitmapSource() 257 d = SimpleBitmapRegionDecoderWrapper.newInstance(mPath, true); in loadBitmapRegionDecoder() 259 d = DumbBitmapRegionDecoder.newInstance(mPath); in loadBitmapRegionDecoder() 265 return BitmapFactory.decodeFile(mPath, options); in loadPreviewBitmap() 270 ei.readExif(mPath); in readExif()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
D | AccountSelectionUtil.java | 51 public static Uri mPath; field in AccountSelectionUtil 194 importIntent.setData(mPath); in doImportFromVcfFile() 197 mPath = null; in doImportFromVcfFile()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/ |
D | VCardService.java | 73 final String mPath; field in VCardService.CustomMediaScannerConnectionClient 77 mPath = path; in CustomMediaScannerConnectionClient() 87 mConnection.scanFile(mPath, null); in onMediaScannerConnected()
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
D | PhotoDataAdapter.java | 853 private final Path mPath; field in PhotoDataAdapter.FullImageListener 857 mPath = item.getPath(); in FullImageListener() 869 updateFullImage(mPath, mFuture); in run() 875 private final Path mPath; field in PhotoDataAdapter.ScreenNailListener 879 mPath = item.getPath(); in ScreenNailListener() 891 updateScreenNail(mPath, mFuture); in run()
|
/packages/services/Car/bluetooth/bt-map-service/ |
D | bt_hci_startup_issues.txt | 80610 mId=emulated mStorageId=65537 mPath=/storage/emulated/0 81179 mId=emulated mStorageId=65537 mPath=/storage/emulated/0
|