Searched refs:toValue (Results 1 – 6 of 6) sorted by relevance
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | InterruptibleInOutAnimator.java | 68 public InterruptibleInOutAnimator(long duration, float fromValue, float toValue) { in InterruptibleInOutAnimator() argument 69 mAnimator = ObjectAnimator.ofFloat(this, VALUE, fromValue, toValue).setDuration(duration); in InterruptibleInOutAnimator() 72 mOriginalToValue = toValue; in InterruptibleInOutAnimator() 84 final float toValue = (direction == IN) ? mOriginalToValue : mOriginalFromValue; in animate() local 98 mAnimator.setFloatValues(startValue, toValue); in animate()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/internal/property/ |
D | ConstantDebugUtilsUnitTest.java | 43 assertThat(ConstantDebugUtils.toValue(VehicleGear.class, "GEAR_DRIVE")).isEqualTo( in testToValue() 45 assertThat(ConstantDebugUtils.toValue(VehicleGear.class, "saljflsadj")).isNull(); in testToValue() 47 ConstantDebugUtils.toValue(VehicleSeatOccupancyState.class, "OCCUPIED")).isEqualTo( in testToValue()
|
/packages/services/Car/car-lib/src/com/android/car/internal/util/ |
D | ConstantDebugUtils.java | 75 public static Integer toValue(Class<?> clazz, String name) { in toValue() method in ConstantDebugUtils 76 return cacheClazzToConstantDebugUtilsMapping(clazz).toValue(name); in toValue() 124 private Integer toValue(String name) { in toValue() method in ConstantDebugUtils
|
/packages/services/Car/car-lib/src/com/android/car/internal/property/ |
D | VehiclePropertyIdDebugUtils.java | 55 return ConstantDebugUtils.toValue(VehiclePropertyIds.class, propertyName); in toId()
|
/packages/services/Car/service/src/com/android/car/hal/property/ |
D | HalPropertyDebugUtils.java | 93 return ConstantDebugUtils.toValue(VehicleProperty.class, propertyName); in toPropertyId()
|
/packages/services/Car/service/src/com/android/car/audio/ |
D | CarAudioZonesHelper.java | 825 return ConstantDebugUtils.toValue(AudioDeviceInfo.class, typeString); in parseAudioDeviceType()
|