/packages/apps/WallpaperPicker2/src/com/android/wallpaper/asset/ |
D | CropRectRotator.java | 34 public static Rect rotateCropRectForExifOrientation(Point dimensions, Rect srcRect, in rotateCropRectForExifOrientation() argument 41 return new Rect(srcRect.top, dimensions.x - srcRect.right, srcRect.bottom, in rotateCropRectForExifOrientation() 42 dimensions.x - srcRect.left); in rotateCropRectForExifOrientation() 44 return new Rect(dimensions.x - srcRect.right, dimensions.y - srcRect.bottom, in rotateCropRectForExifOrientation() 45 dimensions.x - srcRect.left, dimensions.y - srcRect.top); in rotateCropRectForExifOrientation() 47 … return new Rect(dimensions.y - srcRect.bottom, srcRect.left, dimensions.y - srcRect.top, in rotateCropRectForExifOrientation()
|
D | BitmapUtils.java | 93 public static float calculateHorizontalAlignment(Point dimensions, Rect rect) { in calculateHorizontalAlignment() argument 95 int paddingRight = dimensions.x - rect.right; in calculateHorizontalAlignment() 110 public static float calculateVerticalAlignment(Point dimensions, Rect rect) { in calculateVerticalAlignment() argument 112 int paddingBottom = dimensions.y - rect.bottom; in calculateVerticalAlignment()
|
D | BuiltInWallpaperAsset.java | 180 Point dimensions = calculateRawDimensions(); in doInBackground() local 182 float horizontalCenter = BitmapUtils.calculateHorizontalAlignment(dimensions, mRect); in doInBackground() 183 float verticalCenter = BitmapUtils.calculateVerticalAlignment(dimensions, mRect); in doInBackground() 218 protected void onPostExecute(Point dimensions) { in onPostExecute() argument 219 mReceiver.onDimensionsDecoded(dimensions); in onPostExecute()
|
D | ContentUriAsset.java | 125 public void onDimensionsDecoded(@Nullable Point dimensions) { in decodeBitmapRegion() 126 if (dimensions == null) { in decodeBitmapRegion() 133 decodeBitmap(dimensions.x, dimensions.y, new BitmapReceiver() { in decodeBitmapRegion()
|
D | CurrentWallpaperAssetV16.java | 136 protected void onPostExecute(Point dimensions) { in onPostExecute() argument 137 mReceiver.onDimensionsDecoded(dimensions); in onPostExecute()
|
D | StreamableAsset.java | 387 protected void onPostExecute(Point dimensions) { in onPostExecute() argument 388 mReceiver.onDimensionsDecoded(dimensions); in onPostExecute()
|
D | Asset.java | 262 void onDimensionsDecoded(@Nullable Point dimensions); in onDimensionsDecoded() argument
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/ |
D | DefaultWallpaperPersister.java | 149 public void onDimensionsDecoded(@Nullable Point dimensions) { in setIndividualWallpaperWithPosition() 150 if (dimensions == null) { in setIndividualWallpaperWithPosition() 162 wallpaper, asset, dimensions, screenSize, callback); in setIndividualWallpaperWithPosition() 168 wallpaper, asset, dimensions, screenSize, callback); in setIndividualWallpaperWithPosition() 204 Point dimensions, Point screenSize, SetWallpaperCallback callback) { in setIndividualWallpaperWithCenterPosition() argument 205 if (dimensions.x >= screenSize.x && dimensions.y >= screenSize.y) { in setIndividualWallpaperWithCenterPosition() 207 (dimensions.x - screenSize.x) / 2, in setIndividualWallpaperWithCenterPosition() 208 (dimensions.y - screenSize.y) / 2, in setIndividualWallpaperWithCenterPosition() 209 dimensions.x - ((dimensions.x - screenSize.x) / 2), in setIndividualWallpaperWithCenterPosition() 210 dimensions.y - ((dimensions.y - screenSize.y) / 2)); in setIndividualWallpaperWithCenterPosition() [all …]
|
/packages/apps/Camera2/src/com/android/camera/data/ |
D | VideoDataFactory.java | 48 Size dimensions; in fromCursor() local 58 dimensions = new Size(profile.videoFrameWidth, profile.videoFrameHeight); in fromCursor() 61 dimensions = UNKNOWN_SIZE; in fromCursor() 64 dimensions = new Size(width, height); in fromCursor() 83 dimensions, in fromCursor()
|
D | PhotoDataFactory.java | 46 Size dimensions; in fromCursor() local 54 dimensions = decodeBitmapDimensions(filePath); in fromCursor() 55 if (dimensions == null) { in fromCursor() 62 dimensions = new Size(width, height); in fromCursor() 80 dimensions, in fromCursor()
|
D | FilmstripItemData.java | 56 Size dimensions, in FilmstripItemData() argument 67 mDimensions = dimensions; in FilmstripItemData() 261 public Builder withDimensions(Size dimensions) { in withDimensions() argument 262 mDimensions = dimensions; in withDimensions()
|
D | VideoItemData.java | 33 Size dimensions, long sizeInBytes, int orientation, in VideoItemData() argument 35 super(contentId, title, mimeType, creationDate, lastModifiedDate, filePath, uri, dimensions, in VideoItemData()
|
D | PlaceholderItem.java | 53 Size dimensions = new Size(width, height); in PlaceholderItem() local 71 dimensions, in PlaceholderItem()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/sorting/ |
D | SortModel.java | 454 List<SortDimension> dimensions = new ArrayList<>(4); in createModel() local 458 dimensions.add(builder in createModel() 470 dimensions.add(builder in createModel() 480 dimensions.add(builder in createModel() 491 dimensions.add(builder in createModel() 501 dimensions.add(builder in createModel() 511 return new SortModel(dimensions); in createModel()
|
/packages/apps/ThemePicker/src/com/android/customization/model/theme/ |
D | ThemeManager.java | 133 dimensions -> { 136 if (dimensions != null && dimensions.y > 0) { 137 scale = (float) defaultCropSurfaceSize.y / dimensions.y;
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/ |
D | ActualKeyboardBuilder.java | 75 final int[] dimensions = new int[rows.size()]; in buildKeyboard() local 76 for (int rowIndex = 0; rowIndex < dimensions.length; rowIndex++) { in buildKeyboard() 77 dimensions[rowIndex] = rows.get(rowIndex).size(); in buildKeyboard()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/ |
D | ImagePreviewFragment.java | 119 mWallpaperAsset.decodeRawDimensions(getActivity(), dimensions -> { in onCreateView() 126 if (dimensions == null) { in onCreateView() 131 mRawWallpaperSize = dimensions; in onCreateView()
|
/packages/apps/Launcher3/ |
D | build.gradle | 42 // The flavor dimensions for build variants (e.g. aospWithQuickstep, aospWithoutQuickstep) 43 // See: https://developer.android.com/studio/build/build-variants#flavor-dimensions
|
/packages/services/Car/evs/app/ |
D | config.json.readme | 21 "display" : { // This configures the dimensions of the surround view display
|
/packages/apps/Dialer/java/com/android/dialer/theme/ |
D | README.md | 58 * Drawables, images, animations, dimensions, styles, ect. that can be (or are)
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | en_GB_wordlist.combined.gz | 1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ... |
D | en_US_wordlist.combined.gz | 1dictionary=main:en_us,locale=en_US,description=English (US),date ... |
D | en_wordlist.combined.gz | 1dictionary=main:en,locale=en,description=English,date=1414726273, ... |
D | da_wordlist.combined.gz | 1dictionary=main:da,locale=da,description=Dansk,date=1393228134, ... |
D | fr_wordlist.combined.gz | 1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ... |