Home
last modified time | relevance | path

Searched refs:fromValue (Results 1 – 9 of 9) sorted by relevance

/packages/services/Car/car-lib/src/android/car/diagnostic/
DCarDiagnosticEvent.java669 public IgnitionMonitor fromValue(int value) { in fromValue() method in CarDiagnosticEvent.IgnitionMonitor.Decoder
711 components = COMPONENTS_DECODER.fromValue(bitmask); in CommonIgnitionMonitors()
712 fuelSystem = FUEL_SYSTEM_DECODER.fromValue(bitmask); in CommonIgnitionMonitors()
713 misfire = MISFIRE_DECODER.fromValue(bitmask); in CommonIgnitionMonitors()
823 EGR = EGR_DECODER.fromValue(bitmask); in SparkIgnitionMonitors()
824 oxygenSensorHeater = OXYGEN_SENSOR_HEATER_DECODER.fromValue(bitmask); in SparkIgnitionMonitors()
825 oxygenSensor = OXYGEN_SENSOR_DECODER.fromValue(bitmask); in SparkIgnitionMonitors()
826 ACRefrigerant = AC_REFRIGERANT_DECODER.fromValue(bitmask); in SparkIgnitionMonitors()
827 secondaryAirSystem = SECONDARY_AIR_SYSTEM_DECODER.fromValue(bitmask); in SparkIgnitionMonitors()
828 evaporativeSystem = EVAPORATIVE_SYSTEM_DECODER.fromValue(bitmask); in SparkIgnitionMonitors()
[all …]
/packages/apps/Dialer/java/com/android/dialer/contacts/displaypreference/
DContactDisplayPreferences.java41 static <T extends Enum<T> & StringResEnum> T fromValue( in fromValue() method
84 static DisplayOrder fromValue(Context context, String value) { in fromValue() method in DisplayOrder
85 return StringResEnum.fromValue(context, DisplayOrder.values(), value); in fromValue()
122 static SortOrder fromValue(Context context, String value) { in fromValue() method in SortOrder
123 return StringResEnum.fromValue(context, SortOrder.values(), value); in fromValue()
DContactDisplayPreferencesImpl.java53 return DisplayOrder.fromValue(appContext, sharedPreferences.getString(displayOrderKey, null)); in getDisplayOrder()
67 return SortOrder.fromValue(appContext, sharedPreferences.getString(sortOrderKey, null)); in getSortOrder()
/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()
71 mOriginalFromValue = fromValue; in InterruptibleInOutAnimator()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
DFilterRotateRepresentation.java48 public static Rotation fromValue(int value) { in fromValue() method in FilterRotateRepresentation.Rotation
179 Rotation r = Rotation.fromValue(reader.nextInt()); in deSerializeRepresentation()
DFilterMirrorRepresentation.java52 public static Mirror fromValue(char value) { in fromValue() method in FilterMirrorRepresentation.Mirror
201 Mirror r = Mirror.fromValue((char) reader.nextInt()); in deSerializeRepresentation()
/packages/apps/DeskClock/src/com/android/deskclock/data/
DTimerDAO.kt69 val state: Timer.State? = Timer.State.fromValue(stateValue) in getTimers()
DTimer.kt63 fun fromValue(value: Int): State? { in <lambda>() method
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
DGeometryMathUtils.java379 holder.rotation = Rotation.fromValue(rotation); in getOriginalToScreen()