/packages/services/Car/car-lib/src/android/car/diagnostic/ |
D | CarDiagnosticEvent.java | 669 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/ |
D | ContactDisplayPreferences.java | 41 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()
|
D | ContactDisplayPreferencesImpl.java | 53 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/ |
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() 71 mOriginalFromValue = fromValue; in InterruptibleInOutAnimator()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
D | FilterRotateRepresentation.java | 48 public static Rotation fromValue(int value) { in fromValue() method in FilterRotateRepresentation.Rotation 179 Rotation r = Rotation.fromValue(reader.nextInt()); in deSerializeRepresentation()
|
D | FilterMirrorRepresentation.java | 52 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/ |
D | TimerDAO.kt | 69 val state: Timer.State? = Timer.State.fromValue(stateValue) in getTimers()
|
D | Timer.kt | 63 fun fromValue(value: Int): State? { in <lambda>() method
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
D | GeometryMathUtils.java | 379 holder.rotation = Rotation.fromValue(rotation); in getOriginalToScreen()
|