/packages/services/Car/car-lib/src/android/car/navigation/ |
D | CarNavigationInstrumentCluster.java | 36 public final class CarNavigationInstrumentCluster implements Parcelable { class 64 public static final Parcelable.Creator<CarNavigationInstrumentCluster> CREATOR = 65 new Parcelable.Creator<CarNavigationInstrumentCluster>() { 66 public CarNavigationInstrumentCluster createFromParcel(Parcel in) { 67 return new CarNavigationInstrumentCluster(in); 70 public CarNavigationInstrumentCluster[] newArray(int size) { 71 return new CarNavigationInstrumentCluster[size]; 78 public static CarNavigationInstrumentCluster createCluster(int minIntervalMillis) { in createCluster() 79 return new CarNavigationInstrumentCluster(minIntervalMillis, CLUSTER_TYPE_IMAGE_CODES_ONLY, in createCluster() 86 public static CarNavigationInstrumentCluster createCustomImageCluster(int minIntervalMillis, in createCustomImageCluster() [all …]
|
D | CarNavigationInstrumentCluster.aidl | 18 parcelable CarNavigationInstrumentCluster;
|
D | CarNavigationStatusManager.java | 89 public CarNavigationInstrumentCluster getInstrumentClusterInfo() { in getInstrumentClusterInfo()
|
/packages/services/Car/tests/carservice_unit_test/src/android/car/navigation/ |
D | CarNavigationInstrumentClusterTest.java | 32 CarNavigationInstrumentCluster carNavigationInstrumentCluster = in testCopyConstructor_constructsAsExpected() 33 CarNavigationInstrumentCluster.createCustomImageCluster( in testCopyConstructor_constructsAsExpected() 37 CarNavigationInstrumentCluster copy = new CarNavigationInstrumentCluster( in testCopyConstructor_constructsAsExpected() 49 CarNavigationInstrumentCluster[] carNavigationInstrumentClusters = in testNewArray() 50 CarNavigationInstrumentCluster.CREATOR.newArray(10); in testNewArray() 57 CarNavigationInstrumentCluster carNavigationInstrumentCluster = in testCreateFromParcel() 58 CarNavigationInstrumentCluster.createCustomImageCluster( in testCreateFromParcel() 65 CarNavigationInstrumentCluster navigationClusterInfoFromParcel = in testCreateFromParcel() 66 CarNavigationInstrumentCluster.CREATOR.createFromParcel(parcel); in testCreateFromParcel()
|
/packages/services/Car/libs/car-test-lib/src/android/car/testapi/ |
D | FakeInstrumentClusterNavigation.java | 20 import android.car.navigation.CarNavigationInstrumentCluster; 33 private CarNavigationInstrumentCluster mCarNavigationInstrumentCluster = 34 CarNavigationInstrumentCluster.createCluster(DEFAULT_MIN_UPDATE_INTERVAL_MILLIS); 42 public CarNavigationInstrumentCluster getInstrumentClusterInfo() { in getInstrumentClusterInfo() 56 CarNavigationInstrumentCluster.createCluster(minIntervalMillis); in setImageCodeClusterInfo() 66 CarNavigationInstrumentCluster in setCustomImageClusterInfo()
|
/packages/services/Car/tests/CarLibTests/src/android/car/ |
D | CarNavigationStatusManagerTest.java | 21 import android.car.navigation.CarNavigationInstrumentCluster; 70 CarNavigationInstrumentCluster.CLUSTER_TYPE_IMAGE_CODES_ONLY); in getInstrumentClusterInfo_returnsImageCodeCluster() 77 CarNavigationInstrumentCluster instrumentCluster = in setImageCodeClusterInfo_returnsImageCodeCluster() 81 .isEqualTo(CarNavigationInstrumentCluster.CLUSTER_TYPE_IMAGE_CODES_ONLY); in setImageCodeClusterInfo_returnsImageCodeCluster() 93 CarNavigationInstrumentCluster instrumentCluster = in setCustomImageClusterInfo_returnsCustomImageCluster() 97 .isEqualTo(CarNavigationInstrumentCluster.CLUSTER_TYPE_CUSTOM_IMAGES_SUPPORTED); in setCustomImageClusterInfo_returnsCustomImageCluster()
|
/packages/apps/Car/Cluster/DirectRenderingCluster/src/android/car/cluster/ |
D | LoggingClusterRenderingService.java | 21 import android.car.navigation.CarNavigationInstrumentCluster; 41 public CarNavigationInstrumentCluster getNavigationProperties() { in getNavigationRenderer() 43 CarNavigationInstrumentCluster config = in getNavigationRenderer() 44 CarNavigationInstrumentCluster.createCluster(1000); in getNavigationRenderer()
|
D | ClusterRenderingService.java | 32 import android.car.navigation.CarNavigationInstrumentCluster; 341 public CarNavigationInstrumentCluster getNavigationProperties() { in getNavigationRenderer() 342 CarNavigationInstrumentCluster config = in getNavigationRenderer() 343 CarNavigationInstrumentCluster.createCluster(1000); in getNavigationRenderer()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/cluster/ |
D | InstrumentClusterServiceTest.java | 41 import android.car.navigation.CarNavigationInstrumentCluster; 203 CarNavigationInstrumentCluster clusterInfo = mService.getInstrumentClusterInfo(); in testGetInstrumentClusterInfo_navigationRendererInitialFailures() 333 private final CarNavigationInstrumentCluster mClusterInfo = 334 CarNavigationInstrumentCluster.createCustomImageCluster( 347 public CarNavigationInstrumentCluster getInstrumentClusterInfo() throws RemoteException { in getInstrumentClusterInfo()
|
D | ClusterHomeServiceUnitTest.java | 22 import static android.car.navigation.CarNavigationInstrumentCluster.CLUSTER_TYPE_IMAGE_CODES_ONLY; 43 import android.car.navigation.CarNavigationInstrumentCluster; 305 CarNavigationInstrumentCluster clusterInfo = mClusterHomeService.getInstrumentClusterInfo(); in getInstrumentClusterInfoReturnsClusterInfo()
|
/packages/services/Car/car-lib/src/android/car/cluster/renderer/ |
D | IInstrumentClusterNavigation.aidl | 18 import android.car.navigation.CarNavigationInstrumentCluster; 43 CarNavigationInstrumentCluster getInstrumentClusterInfo(); in getInstrumentClusterInfo()
|
D | NavigationRenderer.java | 23 import android.car.navigation.CarNavigationInstrumentCluster; 40 public abstract CarNavigationInstrumentCluster getNavigationProperties(); in getNavigationProperties()
|
D | InstrumentClusterRenderingService.java | 35 import android.car.navigation.CarNavigationInstrumentCluster; 558 public CarNavigationInstrumentCluster getInstrumentClusterInfo() throws RemoteException { in getInstrumentClusterInfo()
|
/packages/services/Car/service/src/com/android/car/cluster/ |
D | ClusterNavigationService.java | 28 import android.car.navigation.CarNavigationInstrumentCluster; 75 CarNavigationInstrumentCluster getInstrumentClusterInfo(); in getInstrumentClusterInfo() 97 public CarNavigationInstrumentCluster getInstrumentClusterInfo() { in getInstrumentClusterInfo()
|
D | ClusterHomeService.java | 40 import android.car.navigation.CarNavigationInstrumentCluster; 299 public CarNavigationInstrumentCluster getInstrumentClusterInfo() { in getInstrumentClusterInfo() 300 return CarNavigationInstrumentCluster.createCluster(DEFAULT_MIN_UPDATE_INTERVAL_MILLIS); in getInstrumentClusterInfo()
|
D | InstrumentClusterService.java | 33 import android.car.navigation.CarNavigationInstrumentCluster; 130 public CarNavigationInstrumentCluster getInstrumentClusterInfo() { in getInstrumentClusterInfo()
|
/packages/services/Car/car-lib/api/ |
D | system-lint-baseline.txt | 492 MissingNullability: android.car.navigation.CarNavigationInstrumentCluster#CREATOR: 493 …llability on field `CREATOR` in class `class android.car.navigation.CarNavigationInstrumentCluster` 494 …oid.car.navigation.CarNavigationInstrumentCluster#CarNavigationInstrumentCluster(android.car.navig… 495 Missing nullability on parameter `that` in method `CarNavigationInstrumentCluster` 496 MissingNullability: android.car.navigation.CarNavigationInstrumentCluster#createCluster(int): 498 MissingNullability: android.car.navigation.CarNavigationInstrumentCluster#createCustomImageCluster(… 500 MissingNullability: android.car.navigation.CarNavigationInstrumentCluster#writeToParcel(android.os.… 3540 UnflaggedApi: android.car.navigation.CarNavigationInstrumentCluster: 3541 …w API must be flagged with @FlaggedApi: class android.car.navigation.CarNavigationInstrumentCluster 3542 UnflaggedApi: android.car.navigation.CarNavigationInstrumentCluster#CLUSTER_TYPE_CUSTOM_IMAGES_SUPP… [all …]
|
D | system-current.txt | 604 …method public abstract android.car.navigation.CarNavigationInstrumentCluster getNavigationProperti… 1870 public final class CarNavigationInstrumentCluster implements android.os.Parcelable { 1871 … ctor public CarNavigationInstrumentCluster(android.car.navigation.CarNavigationInstrumentCluster); 1872 method public static android.car.navigation.CarNavigationInstrumentCluster createCluster(int); 1873 …method public static android.car.navigation.CarNavigationInstrumentCluster createCustomImageCluste… 1884 …c final android.os.Parcelable.Creator<android.car.navigation.CarNavigationInstrumentCluster> CREAT… 1888 …ISSION_CAR_NAVIGATION_MANAGER) public android.car.navigation.CarNavigationInstrumentCluster getIns…
|
D | test-current.txt | 675 …method public abstract android.car.navigation.CarNavigationInstrumentCluster getNavigationProperti… 1947 public final class CarNavigationInstrumentCluster implements android.os.Parcelable { 1948 … ctor public CarNavigationInstrumentCluster(android.car.navigation.CarNavigationInstrumentCluster); 1949 method public static android.car.navigation.CarNavigationInstrumentCluster createCluster(int); 1950 …method public static android.car.navigation.CarNavigationInstrumentCluster createCustomImageCluste… 1961 …c final android.os.Parcelable.Creator<android.car.navigation.CarNavigationInstrumentCluster> CREAT… 1965 …ISSION_CAR_NAVIGATION_MANAGER) public android.car.navigation.CarNavigationInstrumentCluster getIns…
|
/packages/services/Car/car-lib-module/api/ |
D | system-current.txt | 604 …method public abstract android.car.navigation.CarNavigationInstrumentCluster getNavigationProperti… 1870 public final class CarNavigationInstrumentCluster implements android.os.Parcelable { 1871 … ctor public CarNavigationInstrumentCluster(android.car.navigation.CarNavigationInstrumentCluster); 1872 method public static android.car.navigation.CarNavigationInstrumentCluster createCluster(int); 1873 …method public static android.car.navigation.CarNavigationInstrumentCluster createCustomImageCluste… 1884 …c final android.os.Parcelable.Creator<android.car.navigation.CarNavigationInstrumentCluster> CREAT… 1888 …ISSION_CAR_NAVIGATION_MANAGER) public android.car.navigation.CarNavigationInstrumentCluster getIns…
|
/packages/services/Car/tools/GenericCarApiBuilder/ |
D | complete_car_api_list.txt | 994 class @hide @SystemApi CarNavigationInstrumentCluster package android.car.navigation 997 field TIRAMISU_0 Parcelable.Creator<CarNavigationInstrumentCluster> CREATOR; 998 method TIRAMISU_0 CarNavigationInstrumentCluster createCluster(int minIntervalMillis); 999 …method TIRAMISU_0 CarNavigationInstrumentCluster createCustomImageCluster(int minIntervalMillis, i… 1014 method TIRAMISU_0 CarNavigationInstrumentCluster getInstrumentClusterInfo(); 1946 method TIRAMISU_0 CarNavigationInstrumentCluster getNavigationProperties();
|
/packages/services/Car/tests/carservice_unit_test/res/raw/ |
D | car_hidden_apis_release_33.2.txt | 413 android.car.navigation CarNavigationInstrumentCluster Bundle getExtra()
|
D | car_hidden_apis_release_33.1.txt | 413 android.car.navigation CarNavigationInstrumentCluster Bundle getExtra()
|
D | car_hidden_apis.txt | 517 android.car.navigation CarNavigationInstrumentCluster Bundle getExtra()
|
D | car_hidden_apis_release_33.3.txt | 460 android.car.navigation CarNavigationInstrumentCluster Bundle getExtra()
|