Searched refs:maxFloatValue (Results 1 – 10 of 10) sorted by relevance
/packages/services/Car/libs/vehicle-hal-support-lib/src/com/android/car/hal/test/ |
D | AidlVehiclePropConfigBuilder.java | 151 area.maxFloatValue = maxValue; in addAreaConfig() 184 area.maxFloatValue = maxValue; in addAreaConfig() 210 newArea.maxFloatValue = area.maxFloatValue; in duplicateAreaConfig()
|
D | HidlVehiclePropConfigBuilder.java | 64 newArea.maxFloatValue = area.maxFloatValue; in clone() 120 area.maxFloatValue = maxValue; in addAreaConfig()
|
/packages/services/Car/service/src/com/android/car/hal/ |
D | HalPropConfig.java | 169 int maxInt32Value, float minFloatValue, float maxFloatValue, long minInt64Value, in generateAreaIdConfig() argument 195 } else if (classMatched(Float.class, clazz) && (minFloatValue != 0 || maxFloatValue != 0)) { in generateAreaIdConfig() 196 areaIdConfigBuilder.setMinValue(minFloatValue).setMaxValue(maxFloatValue); in generateAreaIdConfig()
|
D | AidlHalAreaConfig.java | 92 return mConfig.maxFloatValue; in getMaxFloatValue()
|
D | HidlHalAreaConfig.java | 96 return mConfig.maxFloatValue; in getMaxFloatValue()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/hal/ |
D | HalPropConfigTest.java | 148 hidlAreaConfig.maxFloatValue = MAX_FLOAT_VALUE; in getTestHidlAreaConfig() 161 aidlAreaConfig.maxFloatValue = MAX_FLOAT_VALUE; in getTestAidlAreaConfig() 176 aidlAreaConfig.maxFloatValue = MAX_FLOAT_VALUE; in getTestInvalidAidlAreaConfig() 396 aidlVehiclePropConfig.areaConfigs[0].maxFloatValue = 0; in toCarPropertyConfig_doesNotConvertFloatMinMaxIfBothZero()
|
/packages/services/Car/cpp/vhal/client/src/ |
D | HidlHalPropConfig.cpp | 112 return mAreaConfig.maxFloatValue; in getMaxFloatValue()
|
D | AidlHalPropConfig.cpp | 116 return mAreaConfig.maxFloatValue; in getMaxFloatValue()
|
/packages/services/Car/service/src/com/android/car/hal/fakevhal/ |
D | FakeVehicleStub.java | 895 float maxFloatValue = areaConfig.getMaxFloatValue(); in withinRange() local 896 if (minFloatValue != maxFloatValue || minFloatValue != 0) { in withinRange() 898 if (floatValue > maxFloatValue || floatValue < minFloatValue) { in withinRange() 901 areaId, minFloatValue, maxFloatValue, floatValue); in withinRange()
|
D | FakeVhalConfigParser.java | 521 areaConfig.maxFloatValue = parseFloatValue(reader, fieldName, errors); in parseAreaConfig()
|