/aosp12/frameworks/base/tools/incident_section_gen/ |
H A D | main.cpp | 196 static inline Destination getMessageDest(const Descriptor* descriptor, const Destination overridden… in getMessageDest() 201 static inline Destination getFieldDest(const FieldDescriptor* field) { in getFieldDest() 202 Destination fieldDest = getPrivacyFlags(field).dest(); in getFieldDest() 208 static inline string getDestString(const Destination dest) { in getDestString() 236 Destination fieldDest = getFieldDest(field); in isDefaultField() 248 const Destination messageDest = getMessageDest(descriptor, dest); in isDefaultMessageImpl() 252 const Destination fieldDest = getFieldDest(field); in isDefaultMessageImpl() 319 const Destination fieldDest = getFieldDest(field); in generatePrivacyFlags() 477 const Destination incidentDest = getPrivacyFlags(descriptor).dest(); in generateSectionListCpp() 482 const Destination fieldDest = getFieldDest(field); in generateSectionListCpp() [all …]
|
/aosp12/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/ |
H A 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);
|
H A D | PreviewFragment.java | 57 import com.android.wallpaper.module.WallpaperPersister.Destination; 394 public void onClickTryAgain(@Destination int wallpaperDestination) { in onClickTryAgain() 455 protected abstract void setCurrentWallpaper(@Destination int destination); in setCurrentWallpaper() 475 protected void showSetWallpaperErrorDialog(@Destination int wallpaperDestination) { in showSetWallpaperErrorDialog()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/ |
H A 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()
|
H A D | TaskPreviewChainedJpeg.java | 74 onStart(mId, inputImage, resultImage, TaskInfo.Destination.INTERMEDIATE_THUMBNAIL); in run() 92 TaskInfo.Destination.INTERMEDIATE_THUMBNAIL); in run()
|
H A D | TaskChainedCompressImageToJpeg.java | 63 onStart(mId, inputImage, resultImage, TaskInfo.Destination.FINAL_IMAGE); in run() 92 TaskInfo.Destination.FINAL_IMAGE); in run()
|
H A D | TaskCompressImageToJpeg.java | 232 onStart(mId, inputImage, resultImage, TaskInfo.Destination.FINAL_IMAGE); in run() 255 onStart(mId, inputImage, resultImage, TaskInfo.Destination.FINAL_IMAGE); in run() 332 TaskInfo.Destination.FINAL_IMAGE); in run() 351 TaskInfo.Destination.FINAL_IMAGE); in run()
|
H A D | TaskJpegEncode.java | 211 TaskInfo.Destination aDestination) { in onJpegEncodeDone() 227 TaskInfo.Destination destination) { in onUriResolved()
|
H A D | TaskConvertImageToRGBPreview.java | 878 onStart(mId, inputImage, resultImage, TaskInfo.Destination.FAST_THUMBNAIL); in run() 890 onPreviewDone(resultImage, inputImage, convertedImage, TaskInfo.Destination.FAST_THUMBNAIL); in run() 903 TaskInfo.Destination destination) { in onPreviewDone()
|
/aosp12/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/ |
H A D | CarNavigationManagerTest.java | 27 import android.car.cluster.navigation.NavigationState.Destination; 81 Destination destination = Destination.newBuilder().build(); in testSerializeAndDeserializeProto() 110 assertThat(Destination.parseFrom(destination.toByteArray())).isNotNull(); in testSerializeAndDeserializeProto()
|
/aosp12/packages/apps/WallpaperPicker2/src/com/android/wallpaper/model/ |
H A D | SetWallpaperViewModel.java | 27 import com.android.wallpaper.module.WallpaperPersister.Destination; 65 @Destination
|
/aosp12/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/ |
H A D | DefaultWallpaperPersister.java | 96 @Nullable Rect cropRect, float scale, @Destination final int destination, in setIndividualWallpaper() 277 @Destination int destination, SetWallpaperCallback callback) { in setIndividualWallpaper() 297 Point fillSize, @Destination int destination, SetWallpaperCallback callback) { in setIndividualWallpaperFill() 317 Point stretchSize, @Destination int destination, SetWallpaperCallback callback) { in setIndividualWallpaperStretch() 333 @Destination int destination, SetWallpaperCallback callback) { in setIndividualWallpaper() 603 @Destination 618 SetWallpaperTask(WallpaperInfo wallpaper, Bitmap bitmap, @Destination int destination, in SetWallpaperTask() 632 @Destination int destination, WallpaperPersister.SetWallpaperCallback callback) { in SetWallpaperTask() 773 private void setImageWallpaperMetadata(@Destination int destination, int wallpaperId) { in setImageWallpaperMetadata()
|
H A D | WallpaperPersister.java | 57 … float scale, @Destination int destination, SetWallpaperCallback callback); in setIndividualWallpaper() 185 @interface Destination { annotation
|
H A D | WallpaperSetter.java | 30 import com.android.wallpaper.module.WallpaperPersister.Destination; 83 @Destination final int destination, in setCurrentWallpaper() 120 @Nullable Asset wallpaperAsset, @Destination final int destination, in setCurrentWallpaper() 190 @Destination final int destination, @Nullable WallpaperColors colors, in setCurrentLiveWallpaper()
|
H A D | WallpaperPreferences.java | 29 import com.android.wallpaper.module.WallpaperPersister.Destination; 491 void updateDailyWallpaperSet(@Destination int destination, String collectionId, in updateDailyWallpaperSet()
|
/aosp12/packages/apps/WallpaperPicker2/tests/src/com/android/wallpaper/testing/ |
H A D | TestWallpaperPersister.java | 49 @Destination 75 @Nullable final Rect cropRect, final float scale, final @Destination int destination, in setIndividualWallpaper() 176 @Destination
|
H A D | TestWallpaperPreferences.java | 24 import com.android.wallpaper.module.WallpaperPersister.Destination; 542 public void updateDailyWallpaperSet(@Destination int destination, String collectionId, in updateDailyWallpaperSet()
|
/aosp12/frameworks/base/core/proto/android/os/ |
H A D | metadata.proto | 34 enum Destination { enum 39 optional Destination dest = 3;
|
/aosp12/frameworks/base/core/proto/android/ |
H A D | privacy.proto | 26 enum Destination { enum 51 optional Destination dest = 1 [ default = DEST_UNSET ];
|
/aosp12/frameworks/rs/script_api/include/ |
H A D | rs_quaternion.rsh | 34 * q: Destination quaternion to add to. 122 * q: Destination quaternion. 148 * q: Destination quaternion. 182 * q: Destination quaternion. 231 * q: Destination quaternion.
|
/aosp12/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/cluster/ |
H A D | InstrumentClusterFragment.java | 26 import android.car.cluster.navigation.NavigationState.Destination; 27 import android.car.cluster.navigation.NavigationState.Destination.Traffic; 169 .addDestinations(Destination.newBuilder() in getNavStateData()
|
/aosp12/packages/apps/Car/Cluster/ClusterOsDouble/src/com/android/car/cluster/view/ |
H A 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()
|
/aosp12/packages/apps/Car/Cluster/DirectRenderingCluster/src/android/car/cluster/ |
H A 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()
|
/aosp12/frameworks/av/media/libmediatranscoding/transcoder/tests/fuzzer/ |
H A D | README.md | 12 1. Destination Mime Type (parameter name: `dstMime`)
|
/aosp12/packages/modules/StatsD/statsd/src/ |
H A D | statsd_config.proto | 397 enum Destination { enum 401 optional Destination dest = 2;
|