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

/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayPowerState.java52 final class DisplayPowerState { class
53 private static final String TAG = "DisplayPowerState";
76 public DisplayPowerState(DisplayBlanker blanker, Light backlight, ColorFade electronBeam) { method in class:DisplayPowerState
100 public static final FloatProperty<DisplayPowerState> COLOR_FADE_LEVEL =
101 new FloatProperty<DisplayPowerState>("electronBeamLevel") {
103 public void setValue(DisplayPowerState object, float value) {
108 public Float get(DisplayPowerState object) {
113 public static final IntProperty<DisplayPowerState> SCREEN_BRIGHTNESS =
114 new IntProperty<DisplayPowerState>("screenBrightness") {
116 public void setValue(DisplayPowerState objec
[all...]
H A DDisplayPowerController.java198 private DisplayPowerState mPowerState;
251 private RampAnimator<DisplayPowerState> mScreenBrightnessRampAnimator;
434 mPowerState = new DisplayPowerState(mBlanker,
439 mPowerState, DisplayPowerState.COLOR_FADE_LEVEL, 0.0f, 1.0f);
444 mPowerState, DisplayPowerState.COLOR_FADE_LEVEL, 1.0f, 0.0f);
448 mScreenBrightnessRampAnimator = new RampAnimator<DisplayPowerState>(
449 mPowerState, DisplayPowerState.SCREEN_BRIGHTNESS);

Completed in 1196 milliseconds