Home
last modified time | relevance | path

Searched refs:AreaConfig (Results 1 – 2 of 2) sorted by relevance

/packages/services/Car/car-lib/src/android/car/hardware/
DCarPropertyConfig.java56 private final SparseArray<AreaConfig<T>> mSupportedAreas;
62 SparseArray<AreaConfig<T>> supportedAreas, Class<T> type) { in CarPropertyConfig()
303 AreaConfig<T> area = mSupportedAreas.get(areaId); in getMinValue()
314 AreaConfig<T> area = mSupportedAreas.get(areaId); in getMaxValue()
324 AreaConfig<T> area = mSupportedAreas.get(0); in getMinValue()
334 AreaConfig<T> area = mSupportedAreas.get(0); in getMaxValue()
383 AreaConfig<T> area = in.readParcelable(getClass().getClassLoader()); in CarPropertyConfig()
428 public static class AreaConfig<T> implements Parcelable { class in CarPropertyConfig
432 private AreaConfig(T minValue, T maxValue) { in AreaConfig() method in CarPropertyConfig.AreaConfig
437 public static final Parcelable.Creator<AreaConfig<Object>> CREATOR =
[all …]
/packages/services/Car/tools/emulator/
Duser_action_generator.py77 areaConfigs[area] = AreaConfig(configs[0], valueType)
80 areaConfigs[config.area_id] = AreaConfig(config, valueType)
84 class AreaConfig(object): class