/packages/services/Car/car-lib/src/android/car/diagnostic/ |
D | CarDiagnosticEvent.java | 667 public IgnitionMonitor fromValue(int value) { in fromValue() method in CarDiagnosticEvent.IgnitionMonitor.Decoder 709 components = COMPONENTS_DECODER.fromValue(bitmask); in CommonIgnitionMonitors() 710 fuelSystem = FUEL_SYSTEM_DECODER.fromValue(bitmask); in CommonIgnitionMonitors() 711 misfire = MISFIRE_DECODER.fromValue(bitmask); in CommonIgnitionMonitors() 820 EGR = EGR_DECODER.fromValue(bitmask); in SparkIgnitionMonitors() 821 oxygenSensorHeater = OXYGEN_SENSOR_HEATER_DECODER.fromValue(bitmask); in SparkIgnitionMonitors() 822 oxygenSensor = OXYGEN_SENSOR_DECODER.fromValue(bitmask); in SparkIgnitionMonitors() 823 ACRefrigerant = AC_REFRIGERANT_DECODER.fromValue(bitmask); in SparkIgnitionMonitors() 824 secondaryAirSystem = SECONDARY_AIR_SYSTEM_DECODER.fromValue(bitmask); in SparkIgnitionMonitors() 825 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 199 Mirror r = Mirror.fromValue((char) reader.nextInt()); in deSerializeRepresentation()
|
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
D | TimerDAO.java | 81 final State state = State.fromValue(stateValue); in getTimers()
|
D | Timer.java | 61 public static State fromValue(int value) { in fromValue() method in Timer.State
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
D | GeometryMathUtils.java | 379 holder.rotation = Rotation.fromValue(rotation); in getOriginalToScreen()
|