Searched refs:Display (Results 26 - 50 of 187) sorted by path

12345678

/frameworks/base/core/java/android/os/
H A DBatteryStats.java40 import android.view.Display;
888 case Display.STATE_OFF: out.append('f'); break;
889 case Display.STATE_ON: out.append('o'); break;
890 case Display.STATE_DOZE: out.append('d'); break;
891 case Display.STATE_DOZE_SUSPEND: out.append('z'); break;
900 case Display.STATE_OFF: out.append('F'); break;
901 case Display.STATE_ON: out.append('O'); break;
902 case Display.STATE_DOZE: out.append('D'); break;
903 case Display.STATE_DOZE_SUSPEND: out.append('Z'); break;
925 case 'f': out |= (((long)Display
[all...]
H A DPowerManagerInternal.java19 import android.view.Display;
116 * @param screenState The overridden screen state, or {@link Display#STATE_UNKNOWN}
H A DRecoverySystem.java32 import android.view.Display;
590 if (wm.getDefaultDisplay().getState() != Display.STATE_ON) {
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java37 import android.view.Display;
191 private int mDozeScreenState = Display.STATE_UNKNOWN;
681 * @return The screen state to use while dozing, such as {@link Display#STATE_ON},
682 * {@link Display#STATE_DOZE}, {@link Display#STATE_DOZE_SUSPEND},
683 * or {@link Display#STATE_OFF}, or {@link Display#STATE_UNKNOWN} for the default
698 * {@link Display#STATE_UNKNOWN} which lets the system decide.
703 * It is recommended that the state be set to {@link Display#STATE_DOZE_SUSPEND}
709 * to {@link Display#STATE_DOZ
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java45 import android.view.Display;
187 Display mDisplay;
234 if (mDisplayState == Display.STATE_DOZE
235 || mDisplayState == Display.STATE_DOZE_SUSPEND) {
670 Display.DEFAULT_DISPLAY, mContentInsets, mStableInsets, mOutsets,
886 mDisplay = mDisplayManager.getDisplay(Display.DEFAULT_DISPLAY);
927 mDisplayState = mDisplay == null ? Display.STATE_UNKNOWN : mDisplay.getState();
928 boolean visible = mVisible && mDisplayState != Display.STATE_OFF;
/frameworks/base/core/java/android/view/
H A DChoreographer.java239 Display.DEFAULT_DISPLAY);
H A DDisplay.aidl19 parcelable Display.Mode;
H A DDisplay.java63 public final class Display { class
64 private static final String TAG = "Display";
94 * The default Display id, which is the id of the built-in primary display
105 * Display flag: Indicates that the display supports compositing content
132 * Display flag: Indicates that the display has a secure video output and
167 * Display flag: Indicates that the display is private. Only the application that
175 * Display flag: Indicates that the display is a presentation display.
188 * Display flag: Indicates that the display has a round shape.
199 * Display flag: Indicates that the display can show its content when non-secure keyguard is
203 * without entering credentials. Display conten
367 public Display(DisplayManagerGlobal global, int displayId, /*@NotNull*/ DisplayInfo displayInfo, method in class:Display
379 public Display(DisplayManagerGlobal global, int displayId, /*@NotNull*/ DisplayInfo displayInfo, method in class:Display
384 private Display(DisplayManagerGlobal global, int displayId, method in class:Display
[all...]
H A DDisplayInfo.java41 * Display flags.
46 * Display type.
51 * Display address, or null if none.
170 public Display.Mode[] supportedModes = Display.Mode.EMPTY_ARRAY;
176 public int[] supportedColorModes = { Display.COLOR_MODE_DEFAULT };
179 public Display.HdrCapabilities hdrCapabilities;
220 * The state of the display, such as {@link android.view.Display#STATE_ON}.
246 * @see Display#getRemoveMode()
248 public int removeMode = Display
[all...]
H A DSurfaceControl.java113 private static native Display.HdrCapabilities nativeGetHdrCapabilities(IBinder displayToken);
248 /* Display power modes * /
251 * Display power mode off: used while blanking the screen.
257 * Display power mode doze: used while putting the screen into low power mode.
263 * Display power mode normal: used while unblanking the screen.
269 * Display power mode doze: used while putting the screen into a suspended
762 public static Display.HdrCapabilities getHdrCapabilities(IBinder displayToken) {
H A DView.java12212 Display d = DisplayManagerGlobal.getInstance().getRealDisplay(Display.DEFAULT_DISPLAY);
12233 Display d = DisplayManagerGlobal.getInstance().getRealDisplay(Display.DEFAULT_DISPLAY);
16946 void dispatchMovedToDisplay(Display display, Configuration config) {
17327 public Display getDisplay() {
22349 if (mAttachInfo != null && mAttachInfo.mDisplayState == Display.STATE_OFF
25137 Display mDisplay;
25158 * by {@link Display#getState()}. Note that the display state constants
25159 * declared by {@link Display} d
[all...]
H A DViewConfiguration.java363 final Display display = win.getDefaultDisplay();
H A DViewGroup.java3349 void dispatchMovedToDisplay(Display display, Configuration config) {
H A DViewRootImpl.java19 import static android.view.Display.INVALID_DISPLAY;
188 * @param newDisplayId New display id, {@link Display#INVALID_DISPLAY} if not changed.
230 @NonNull Display mDisplay;
478 public ViewRootImpl(Context context, Display display) {
1081 if (oldDisplayState != Display.STATE_UNKNOWN) {
1087 if (oldDisplayState == Display.STATE_OFF) {
1106 return displayState == Display.STATE_OFF ?
1135 && (displayState == Display.STATE_DOZE
1136 || displayState == Display.STATE_DOZE_SUSPEND)) {
2782 if (mAttachInfo.mDisplayState == Display
[all...]
H A DWindowManager.java44 * Each window manager instance is bound to a particular {@link Display}.
104 * Returns the {@link Display} upon which this {@link WindowManager} instance
108 * necessarily the primary display of the system (see {@link Display#DEFAULT_DISPLAY}).
114 * {@link WindowManager} for that {@link Display}. (See the {@link WindowManager}
120 public Display getDefaultDisplay();
647 * Window type: Display overlay window. Used to simulate secondary display devices.
887 * <p>See {@link android.view.Display#FLAG_SECURE} for more details about
1794 * @see Display#getSupportedRefreshRates()
1806 * @see Display#getSupportedModes()
1807 * @see Display
[all...]
H A DWindowManagerGlobal.java279 Display display, Window parentWindow) {
H A DWindowManagerImpl.java145 public Display getDefaultDisplay() {
H A DWindowManagerPolicy.java452 * Check if window is on {@link Display#DEFAULT_DISPLAY}.
669 public void setInitialDisplaySize(Display display, int width, int height, int density);
675 public void setDisplayOverscan(Display display, int left, int top, int right, int bottom);
1122 * @param isDefaultDisplay true if window is on {@link Display#DEFAULT_DISPLAY}.
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java68 import android.view.Display;
382 int mScreenState = Display.STATE_UNKNOWN;
3737 noteScreenStateLocked(pretendScreenOff ? Display.STATE_OFF : Display.STATE_ON);
4043 state = mPretendScreenOff ? Display.STATE_OFF : state;
4049 case Display.STATE_VR:
4050 state = Display.STATE_ON;
4062 if (DEBUG) Slog.v(TAG, "Screen state: oldState=" + Display.stateToString(oldState)
4063 + ", newState=" + Display.stateToString(state));
4065 if (state != Display
[all...]
/frameworks/base/core/java/com/android/internal/policy/
H A DDividerSnapAlgorithm.java25 import android.view.Display;
87 Display.DEFAULT_DISPLAY).getDisplayInfo(displayInfo);
/frameworks/base/core/java/com/android/internal/view/
H A DRotationPolicy.java31 import android.view.Display;
79 wm.getInitialDisplaySize(Display.DEFAULT_DISPLAY, size);
H A DSurfaceFlingerVsyncChoreographer.java22 import android.view.Display;
42 public SurfaceFlingerVsyncChoreographer(Handler handler, Display display,
62 private long calculateAppSurfaceFlingerVsyncOffsetMs(Display display) {
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuPopupHelper.java29 import android.view.Display;
217 final Display display = windowManager.getDefaultDisplay();
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java42 import android.view.Display;
2453 Display display = getDisplay();
/frameworks/base/core/tests/coretests/src/android/content/res/
H A DResourcesLocaleTest.java23 import android.view.Display;

Completed in 432 milliseconds

12345678