/packages/providers/MediaProvider/pdf/framework/java/android/graphics/pdf/content/ |
D | PdfPageGotoLinkContent.java | 54 private final Destination mDestination; 65 public PdfPageGotoLinkContent(@NonNull List<RectF> bounds, @NonNull Destination in PdfPageGotoLinkContent() 77 this.mDestination = in.readParcelable(Destination.class.getClassLoader()); in PdfPageGotoLinkContent() 103 public Destination getDestination() { in getDestination() 121 public static final class Destination implements Parcelable { class in PdfPageGotoLinkContent 123 public static final Creator<Destination> CREATOR = new Creator<Destination>() { 125 public Destination createFromParcel(Parcel in) { 126 return new Destination(in); 130 public Destination[] newArray(int size) { 131 return new Destination[size]; [all …]
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/ |
D | WallpaperPersister.java | 61 … float scale, @Destination int destination, SetWallpaperCallback callback); in setIndividualWallpaper() 132 @Destination int destination in saveStaticWallpaperMetadata() 191 void onLiveWallpaperSet(@Destination int destination); in onLiveWallpaperSet() 201 @Destination int destination); in setLiveWallpaperMetadata() 207 void onSuccess(WallpaperInfo wallpaperInfo, @Destination int destination); in onSuccess() 219 @interface Destination { annotation 226 static int destinationToFlags(@Destination int destination) { in destinationToFlags() 242 @Destination
|
D | DefaultWallpaperPersister.java | 110 @Nullable Rect cropRect, float scale, @Destination final int destination, in setIndividualWallpaper() 182 @Destination int destination, SetWallpaperCallback callback) { in setIndividualWallpaper() 189 @Destination int destination, SetWallpaperCallback callback) { in setIndividualWallpaper() 204 Rect cropHint, @Destination int destination, SetWallpaperCallback callback) { in setIndividualWallpaper() 249 @Destination int destination) { in saveStaticWallpaperMetadata() 281 public boolean saveStaticWallpaperToPreferences(@Destination int destination, in saveStaticWallpaperToPreferences() 426 public void onLiveWallpaperSet(@Destination int destination) { in onLiveWallpaperSet() 454 @Destination int destination) { in setLiveWallpaperMetadata() 487 @Destination 505 @Destination int destination, WallpaperPersister.SetWallpaperCallback callback) { in SetWallpaperTask() [all …]
|
D | WallpaperSetter.java | 29 import com.android.wallpaper.module.WallpaperPersister.Destination; 90 @Destination final int destination, float wallpaperScale, @Nullable Rect cropRect, in setCurrentWallpaper() 142 @Destination int destination) { in setCurrentWallpaper() 162 @SetWallpaperEntryPoint int setWallpaperEntryPoint, @Destination final int destination, in setCurrentLiveWallpaper() 221 @Destination final int destination, @Nullable WallpaperColors colors, in setCurrentLiveWallpaperFromRestore() 254 @Destination int destination) { in onWallpaperApplied()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/converter/ |
D | WallpaperModelFactory.kt | 33 import com.android.wallpaper.picker.data.Destination 53 var wallpaperDestination = Destination.NOT_APPLIED in getWallpaperModel() 57 WallpaperManager.FLAG_SYSTEM -> Destination.APPLIED_TO_SYSTEM in getWallpaperModel() 58 WallpaperManager.FLAG_LOCK -> Destination.APPLIED_TO_LOCK in getWallpaperModel() 60 Destination.APPLIED_TO_SYSTEM_LOCK in getWallpaperModel() 66 Destination.NOT_APPLIED in getWallpaperModel()
|
/packages/apps/WallpaperPicker2/tests/common/src/com/android/wallpaper/testing/ |
D | TestWallpaperPersister.java | 53 @Destination 79 @Nullable final Rect cropRect, final float scale, final @Destination int destination, in setIndividualWallpaper() 155 @Destination 193 public void onLiveWallpaperSet(@Destination int destination) { in onLiveWallpaperSet() 198 @Destination int destination) { in setLiveWallpaperMetadata() 213 String collectionId, int wallpaperId, String remoteId, @Destination int destination) { in saveStaticWallpaperMetadata()
|
D | WallpaperModelUtils.kt | 30 import com.android.wallpaper.picker.data.Destination 87 destination = Destination.NOT_APPLIED, in getStaticWallpaperModel() 133 destination = Destination.NOT_APPLIED, in getLiveWallpaperModel()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/ |
D | SetWallpaperErrorDialogFragment.java | 25 import com.android.wallpaper.module.WallpaperPersister.Destination; 40 … @Destination int wallpaperDestination) { in newInstance() 54 … @Destination final int wallpaperDestination = getArguments().getInt(ARG_WALLPAPER_DESTINATION); in onCreateDialog() 85 void onClickTryAgain(@Destination int wallpaperDestination);
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/model/ |
D | SetWallpaperViewModel.java | 27 import com.android.wallpaper.module.WallpaperPersister.Destination; 50 public void onSuccess(WallpaperInfo wallpaperInfo, @Destination int destination) { in getCallback() 65 @Destination
|
/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/ |
D | TaskImageContainer.java | 114 public enum Destination { enum in TaskImageContainer.TaskInfo 120 public final Destination destination; 129 Destination aDestination) { in TaskInfo() 291 TaskInfo.Destination aDestination) { in onStart()
|
D | TaskPreviewChainedJpeg.java | 74 onStart(mId, inputImage, resultImage, TaskInfo.Destination.INTERMEDIATE_THUMBNAIL); in run() 92 TaskInfo.Destination.INTERMEDIATE_THUMBNAIL); in run()
|
D | TaskChainedCompressImageToJpeg.java | 63 onStart(mId, inputImage, resultImage, TaskInfo.Destination.FINAL_IMAGE); in run() 92 TaskInfo.Destination.FINAL_IMAGE); in run()
|
D | TaskCompressImageToJpeg.java | 233 onStart(mId, inputImage, resultImage, TaskInfo.Destination.FINAL_IMAGE); in run() 256 onStart(mId, inputImage, resultImage, TaskInfo.Destination.FINAL_IMAGE); in run() 333 TaskInfo.Destination.FINAL_IMAGE); in run() 352 TaskInfo.Destination.FINAL_IMAGE); in run()
|
D | TaskJpegEncode.java | 211 TaskInfo.Destination aDestination) { in onJpegEncodeDone() 227 TaskInfo.Destination destination) { in onUriResolved()
|
/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/ |
D | CarNavigationManagerTest.java | 27 import android.car.cluster.navigation.NavigationState.Destination; 79 Destination destination = Destination.newBuilder().build(); in testSerializeAndDeserializeProto() 108 assertThat(Destination.parseFrom(destination.toByteArray())).isNotNull(); in testSerializeAndDeserializeProto()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/customization/shared/model/ |
D | WallpaperDestination.kt | 26 import com.android.wallpaper.module.WallpaperPersister.Destination 47 @Destination
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/logging/ |
D | UserEventLogger.kt | 22 import com.android.wallpaper.module.WallpaperPersister.Destination 108 fun toWallpaperDestinationForLogging(@Destination destination: Int): Int { in logSnapshot()
|
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/cluster/ |
D | InstrumentClusterFragment.java | 26 import android.car.cluster.navigation.NavigationState.Destination; 27 import android.car.cluster.navigation.NavigationState.Destination.Traffic; 164 .addDestinations(Destination.newBuilder() in getNavStateData()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/data/ |
D | WallpaperDestination.kt | 6 enum class Destination(val value: Int) { class
|
D | CommonWallpaperData.kt | 29 var destination: Destination,
|
/packages/apps/Car/Launcher/app/tests/src/com/android/car/carlauncher/calmmode/ |
D | NavigationStateViewModelTest.java | 66 NavigationState.Destination destination = in buildNavStateProto() 67 NavigationState.Destination.newBuilder() in buildNavStateProto()
|
/packages/providers/MediaProvider/pdf/framework/api/ |
D | current.txt | 71 …android.graphics.RectF>, @NonNull android.graphics.pdf.content.PdfPageGotoLinkContent.Destination); 74 …method @NonNull public android.graphics.pdf.content.PdfPageGotoLinkContent.Destination getDestinat… 79 public static final class PdfPageGotoLinkContent.Destination implements android.os.Parcelable { 80 ctor public PdfPageGotoLinkContent.Destination(int, float, float, float); 87 …oid.os.Parcelable.Creator<android.graphics.pdf.content.PdfPageGotoLinkContent.Destination> CREATOR;
|
/packages/apps/Car/Cluster/DirectRenderingCluster/src/android/car/cluster/ |
D | NavStateController.java | 23 import android.car.cluster.navigation.NavigationState.Destination; 24 import android.car.cluster.navigation.NavigationState.Destination.Traffic; 140 Destination destination = state.getDestinationsCount() > 0 in update()
|
/packages/apps/Car/Cluster/ClusterOsDouble/src/com/android/car/cluster/view/ |
D | NavStateController.java | 22 import android.car.cluster.navigation.NavigationState.Destination; 23 import android.car.cluster.navigation.NavigationState.Destination.Traffic; 138 Destination destination = state.getDestinationsCount() > 0 in update()
|
/packages/modules/Bluetooth/system/gd/rust/linux/service/ |
D | README.md | 14 - Destination: this is always `org.chromium.bluetooth`
|