/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/ |
D | CarHvacManagerTest.java | 136 int max = property.getMaxValue(areaId) == null ? 0 : property.getMaxValue(areaId); in checkIntMinMax() 141 int max = property.getMaxValue() == null ? 0 : property.getMinValue(); in checkIntMinMax() 146 assertThat(property.getMaxValue(0x1 << i)).isNull(); in checkIntMinMax() 163 property.getMaxValue(areaId) == null ? 0f : property.getMinValue(areaId); in checkFloatMinMax() 168 float max = property.getMaxValue() == null ? 0f : property.getMinValue(); in checkFloatMinMax() 173 assertThat(property.getMaxValue(0x1 << i)).isNull(); in checkFloatMinMax()
|
D | CarPropertyConfigTest.java | 61 assertThat(config.getMaxValue(WINDOW_DRIVER)).isNull(); in createFloatPropertyConfig() 64 assertThat(config.getMaxValue(WINDOW_PASSENGER)).isEqualTo(20f); in createFloatPropertyConfig() 83 assertThat(configRead.getMaxValue(WINDOW_DRIVER)).isNull(); in testWriteReadFloat() 86 assertThat(configRead.getMaxValue(WINDOW_PASSENGER)).isEqualTo(20f); in testWriteReadFloat() 107 assertThat(configRead.getMaxValue(WINDOW_DRIVER)).isNull(); in testWriteReadIntegerValue() 110 assertThat(configRead.getMaxValue(WINDOW_PASSENGER)).isEqualTo(expectedMaxValue); in testWriteReadIntegerValue() 131 assertThat(configRead.getMaxValue(WINDOW_DRIVER)).isNull(); in testWriteReadLongValue() 134 assertThat(configRead.getMaxValue(WINDOW_PASSENGER)).isEqualTo(expectedMaxValue); in testWriteReadLongValue() 156 assertThat(configRead.getMaxValue(WINDOW_PASSENGER)).isNull(); in testWriteReadIntegerArray() 158 assertThat(configRead.getMaxValue(WINDOW_DRIVER)).isNull(); in testWriteReadIntegerArray()
|
D | CarCabinManagerTest.java | 140 int max = property.getMaxValue(areId); in checkIntMinMax() 145 int max = property.getMaxValue(); in checkIntMinMax() 150 assertThat(property.getMaxValue(0x1 << i)).isNull(); in checkIntMinMax()
|
/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/hvac/ |
D | HvacUtilsTest.java | 209 when(mAreaIdConfig1.getMaxValue()).thenReturn(1); in getLowestMaxValueForAllAreaIds_integer_returnsLowest() 210 when(mAreaIdConfig2.getMaxValue()).thenReturn(2); in getLowestMaxValueForAllAreaIds_integer_returnsLowest() 211 when(mAreaIdConfig3.getMaxValue()).thenReturn(3); in getLowestMaxValueForAllAreaIds_integer_returnsLowest() 221 when(mAreaIdConfig1.getMaxValue()).thenReturn(0); in getLowestMaxValueForAllAreaIds_integer_ignoresNullValues() 222 when(mAreaIdConfig2.getMaxValue()).thenReturn(1); in getLowestMaxValueForAllAreaIds_integer_ignoresNullValues() 223 when(mAreaIdConfig3.getMaxValue()).thenReturn(null); in getLowestMaxValueForAllAreaIds_integer_ignoresNullValues()
|
D | SeatTemperatureLevelButtonTest.java | 72 when(mAreaIdConfig.getMaxValue()).thenReturn(3); in setUp()
|
/packages/apps/Car/SystemUI/src/com/android/systemui/car/hvac/ |
D | HvacUtils.java | 93 if (lowestMaxValue == null || (areaIdConfig.getMaxValue() != null in getLowestMaxValueForAllAreaIds() 94 && (Integer) areaIdConfig.getMaxValue() < lowestMaxValue)) { in getLowestMaxValueForAllAreaIds() 95 lowestMaxValue = (Integer) areaIdConfig.getMaxValue(); in getLowestMaxValueForAllAreaIds()
|
D | SeatTemperatureLevelButton.java | 113 mTotalLevelCount = Math.min(areaIdConfig.getMaxValue(), mIcons.size()); in setConfigInfo()
|
/packages/services/Car/tests/CarLibUnitTest/src/android/car/hardware/property/ |
D | AreaIdConfigTest.java | 62 assertThat(AREA_ID_CONFIG.getMaxValue()).isEqualTo(MAX_VALUE); in getMaxValue_returnsExpectedValue() 67 assertThat(new AreaIdConfig.Builder<Long>(ACCESS, AREA_ID).build().getMaxValue()).isNull(); in getMaxValue_returnsNullIfNotSet() 107 assertThat((Integer) areaIdConfig.getMaxValue()).isEqualTo(MAX_VALUE); in writeToParcel_writesCorrectly()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/ |
D | HalPropConfigTest.java | 285 assertThat(areaIdConfig.getMaxValue()).isNull(); in toCarPropertyConfig_populatesGlobalAreaId() 304 assertThat(areaIdConfig.getMaxValue()).isEqualTo(MAX_INT32_VALUE); in toCarPropertyConfig_convertsIntegerMinMax() 324 assertThat(areaIdConfig.getMaxValue()).isNull(); in toCarPropertyConfig_doesNotConvertIntegerMinMaxIfBothZero() 343 assertThat(areaIdConfig.getMaxValue()).isEqualTo(MAX_INT64_VALUE); in toCarPropertyConfig_convertsLongMinMax() 364 assertThat(areaIdConfig.getMaxValue()).isNull(); in toCarPropertyConfig_doesNotConvertLongMinMaxIfBothZero() 383 assertThat(areaIdConfig.getMaxValue()).isEqualTo(MAX_FLOAT_VALUE); in toCarPropertyConfig_convertsFloatMinMax() 404 assertThat(areaIdConfig.getMaxValue()).isNull(); in toCarPropertyConfig_doesNotConvertFloatMinMaxIfBothZero() 424 assertThat(areaIdConfig.getMaxValue()).isNull(); in toCarPropertyConfig_doesNotPopulateMinMaxForUnsupportedType()
|
/packages/services/Car/car-lib/src/android/car/hardware/ |
D | CarPropertyConfig.java | 367 public T getMaxValue(int areaId) { in getMaxValue() method in CarPropertyConfig 369 return areaIdConfig == null ? null : areaIdConfig.getMaxValue(); in getMaxValue() 391 public T getMaxValue() { in getMaxValue() method in CarPropertyConfig 393 return areaIdConfig == null ? null : areaIdConfig.getMaxValue(); in getMaxValue() 520 @Nullable public T getMaxValue() { in getMaxValue() method
|
/packages/modules/AdServices/adservices/libraries/cobalt/java/com/android/cobalt/observations/ |
D | PrivateIntegerEncoder.java | 71 mReport.getMaxValue(), in encode()
|
D | PrivateIndexCalculations.java | 114 return min(report.getMaxValue(), max(report.getMinValue(), value)); in clipValue()
|
/packages/services/Car/service/src/com/android/car/ |
D | CarPropertyService.java | 1264 if (areaIdConfig.getMaxValue() != null) { in validateSetParameters() 1268 (Integer) valueToSet <= (Integer) areaIdConfig.getMaxValue(); in validateSetParameters() 1271 (Long) valueToSet <= (Long) areaIdConfig.getMaxValue(); in validateSetParameters() 1274 (Float) valueToSet <= (Float) areaIdConfig.getMaxValue(); in validateSetParameters() 1280 toHexString(areaId), areaIdConfig.getMaxValue()); in validateSetParameters()
|
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/hvac/ |
D | HvacTestFragment.java | 384 mMaxFanSpeeds[i] = (Integer) prop.getMaxValue(mZonesForFanSpeed[i]); in configureFanSpeed() 449 mMaxDTemp = (Float) prop.getMaxValue(mZoneForSetTempD); in configureTempSetpoint() 476 mMaxPTemp = (Float) prop.getMaxValue(mZoneForSetTempP); in configureTempSetpoint()
|
/packages/services/Car/car-lib/src/android/car/hardware/property/ |
D | AreaIdConfig.java | 134 public T getMaxValue() {
|
/packages/services/Car/tests/carservice_test/src/com/android/car/ |
D | CarVendorExtensionManagerTest.java | 147 assertEquals(MAX_PROP_INT32, prop1.getMaxValue()); in testPropertyList()
|
/packages/services/Car/car-lib/api/ |
D | current.txt | 576 method @Deprecated @Nullable public T getMaxValue(int); 577 method @Deprecated @Nullable public T getMaxValue(); 754 method @Nullable public T getMaxValue();
|
/packages/services/Car/car-lib-module/api/ |
D | current.txt | 576 method @Deprecated @Nullable public T getMaxValue(int); 577 method @Deprecated @Nullable public T getMaxValue(); 754 method @Nullable public T getMaxValue();
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | WifiScoreCardTest.java | 636 assertEquals(384.0, signal.getLinkspeed().getMaxValue(), TOL); in testAccessPointSerialization()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | WifiScoreCard.java | 2461 maxValue = Math.max(maxValue, stats.getMaxValue()); in merge()
|
/packages/services/Car/tests/carservice_unit_test/res/raw/ |
D | car_hidden_apis_release_33.2.txt | 270 android.car.hardware CarPropertyConfig.AreaConfig T getMaxValue()
|
D | car_hidden_apis_release_33.1.txt | 270 android.car.hardware CarPropertyConfig.AreaConfig T getMaxValue()
|
D | car_hidden_apis.txt | 354 android.car.hardware CarPropertyConfig.AreaConfig T getMaxValue()
|
D | car_hidden_apis_release_33.3.txt | 296 android.car.hardware CarPropertyConfig.AreaConfig T getMaxValue()
|
/packages/services/Car/tools/GenericCarApiBuilder/ |
D | complete_car_api_list.txt | 1243 method TIRAMISU_0 T getMaxValue(int areaId); 1245 method TIRAMISU_0 T getMaxValue(); 1254 method TIRAMISU_0 T getMaxValue();
|