Searched refs:DisplayPowerState (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayPowerState.java49 final class DisplayPowerState { class
50 private static final String TAG = "DisplayPowerState";
73 public DisplayPowerState(DisplayBlanker blanker, ColorFade colorFade) { method in class:DisplayPowerState
96 public static final FloatProperty<DisplayPowerState> COLOR_FADE_LEVEL =
97 new FloatProperty<DisplayPowerState>("electronBeamLevel") {
99 public void setValue(DisplayPowerState object, float value) {
104 public Float get(DisplayPowerState object) {
109 public static final IntProperty<DisplayPowerState> SCREEN_BRIGHTNESS =
110 new IntProperty<DisplayPowerState>("screenBrightness") {
112 public void setValue(DisplayPowerState objec
[all...]
H A DDisplayPowerController.java244 private DisplayPowerState mPowerState;
363 private RampAnimator<DisplayPowerState> mScreenBrightnessRampAnimator;
601 mPowerState = new DisplayPowerState(mBlanker,
606 mPowerState, DisplayPowerState.COLOR_FADE_LEVEL, 0.0f, 1.0f);
611 mPowerState, DisplayPowerState.COLOR_FADE_LEVEL, 1.0f, 0.0f);
616 mScreenBrightnessRampAnimator = new RampAnimator<DisplayPowerState>(
617 mPowerState, DisplayPowerState.SCREEN_BRIGHTNESS);

Completed in 78 milliseconds