Home
last modified time | relevance | path

Searched refs:CarNavigationInstrumentCluster (Results 1 – 25 of 25) sorted by relevance

/packages/services/Car/car-lib/src/android/car/navigation/
DCarNavigationInstrumentCluster.java36 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 …]
DCarNavigationInstrumentCluster.aidl18 parcelable CarNavigationInstrumentCluster;
DCarNavigationStatusManager.java89 public CarNavigationInstrumentCluster getInstrumentClusterInfo() { in getInstrumentClusterInfo()
/packages/services/Car/tests/carservice_unit_test/src/android/car/navigation/
DCarNavigationInstrumentClusterTest.java32 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/
DFakeInstrumentClusterNavigation.java20 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/
DCarNavigationStatusManagerTest.java21 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/
DLoggingClusterRenderingService.java21 import android.car.navigation.CarNavigationInstrumentCluster;
41 public CarNavigationInstrumentCluster getNavigationProperties() { in getNavigationRenderer()
43 CarNavigationInstrumentCluster config = in getNavigationRenderer()
44 CarNavigationInstrumentCluster.createCluster(1000); in getNavigationRenderer()
DClusterRenderingService.java32 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/
DInstrumentClusterServiceTest.java41 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()
DClusterHomeServiceUnitTest.java22 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/
DIInstrumentClusterNavigation.aidl18 import android.car.navigation.CarNavigationInstrumentCluster;
43 CarNavigationInstrumentCluster getInstrumentClusterInfo(); in getInstrumentClusterInfo()
DNavigationRenderer.java23 import android.car.navigation.CarNavigationInstrumentCluster;
40 public abstract CarNavigationInstrumentCluster getNavigationProperties(); in getNavigationProperties()
DInstrumentClusterRenderingService.java35 import android.car.navigation.CarNavigationInstrumentCluster;
558 public CarNavigationInstrumentCluster getInstrumentClusterInfo() throws RemoteException { in getInstrumentClusterInfo()
/packages/services/Car/service/src/com/android/car/cluster/
DClusterNavigationService.java28 import android.car.navigation.CarNavigationInstrumentCluster;
75 CarNavigationInstrumentCluster getInstrumentClusterInfo(); in getInstrumentClusterInfo()
97 public CarNavigationInstrumentCluster getInstrumentClusterInfo() { in getInstrumentClusterInfo()
DClusterHomeService.java40 import android.car.navigation.CarNavigationInstrumentCluster;
299 public CarNavigationInstrumentCluster getInstrumentClusterInfo() { in getInstrumentClusterInfo()
300 return CarNavigationInstrumentCluster.createCluster(DEFAULT_MIN_UPDATE_INTERVAL_MILLIS); in getInstrumentClusterInfo()
DInstrumentClusterService.java33 import android.car.navigation.CarNavigationInstrumentCluster;
130 public CarNavigationInstrumentCluster getInstrumentClusterInfo() { in getInstrumentClusterInfo()
/packages/services/Car/car-lib/api/
Dsystem-lint-baseline.txt492 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 …]
Dsystem-current.txt604 …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…
Dtest-current.txt675 …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/
Dsystem-current.txt604 …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/
Dcomplete_car_api_list.txt994 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/
Dcar_hidden_apis_release_33.2.txt413 android.car.navigation CarNavigationInstrumentCluster Bundle getExtra()
Dcar_hidden_apis_release_33.1.txt413 android.car.navigation CarNavigationInstrumentCluster Bundle getExtra()
Dcar_hidden_apis.txt517 android.car.navigation CarNavigationInstrumentCluster Bundle getExtra()
Dcar_hidden_apis_release_33.3.txt460 android.car.navigation CarNavigationInstrumentCluster Bundle getExtra()