Home
last modified time | relevance | path

Searched refs:toValue (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
DInterruptibleInOutAnimator.java68 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/
DConstantDebugUtilsUnitTest.java43 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/
DConstantDebugUtils.java75 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/
DVehiclePropertyIdDebugUtils.java55 return ConstantDebugUtils.toValue(VehiclePropertyIds.class, propertyName); in toId()
/packages/services/Car/service/src/com/android/car/hal/property/
DHalPropertyDebugUtils.java93 return ConstantDebugUtils.toValue(VehicleProperty.class, propertyName); in toPropertyId()
/packages/services/Car/service/src/com/android/car/audio/
DCarAudioZonesHelper.java825 return ConstantDebugUtils.toValue(AudioDeviceInfo.class, typeString); in parseAudioDeviceType()