Home | History | Annotate | Download | only in view

Lines Matching defs:Display

31  * Describes the characteristics of a particular logical display.
36 * The surface flinger layer stack associated with this logical display.
41 * Display flags.
46 * Display type.
51 * Display address, or null if none.
52 * Interpretation varies by display type.
57 * The human-readable name of the display.
62 * Unique identifier for the display. Shouldn't be displayed to the user.
67 * The width of the portion of the display that is available to applications, in pixels.
68 * Represents the size of the display minus any system decorations.
73 * The height of the portion of the display that is available to applications, in pixels.
74 * Represents the size of the display minus any system decorations.
107 * The logical width of the display, in pixels.
108 * Represents the usable size of the display which may be smaller than the
109 * physical size when the system is emulating a smaller display.
114 * The logical height of the display, in pixels.
115 * Represents the usable size of the display which may be smaller than the
116 * physical size when the system is emulating a smaller display.
122 * Number of overscan pixels on the left side of the display.
128 * Number of overscan pixels on the top side of the display.
134 * Number of overscan pixels on the right side of the display.
140 * Number of overscan pixels on the bottom side of the display.
145 * The rotation of the display relative to its natural orientation.
150 * The value of this field is indeterminate if the logical display is presented on
151 * more than one physical display.
158 * The active display mode.
163 * The default display mode.
168 * The supported modes of this display.
170 public Display.Mode[] supportedModes = Display.Mode.EMPTY_ARRAY;
176 public int[] supportedColorModes = { Display.COLOR_MODE_DEFAULT };
178 /** The display's HDR capabilities */
179 public Display.HdrCapabilities hdrCapabilities;
182 * The logical display density which is the basis for density-independent
190 * The value of this field is indeterminate if the logical display is presented on
191 * more than one physical display.
199 * The value of this field is indeterminate if the logical display is presented on
200 * more than one physical display.
207 * Choreographer relative to the display refresh. For example, if Choreographer reports
220 * The state of the display, such as {@link android.view.Display#STATE_ON}.
225 * The UID of the application that owns this display, or zero if it is owned by the system.
227 * If the display is private, then only the owner can use it.
233 * The package name of the application that owns this display, or null if it is
236 * If the display is private, then only the owner can use it.
368 supportedModes = new Display.Mode[nModes];
370 supportedModes[i] = Display.Mode.CREATOR.createFromParcel(source);
438 public Display.Mode getMode() {
442 public Display.Mode getDefaultMode() {
446 private Display.Mode findMode(int id) {
460 Display.Mode[] modes = supportedModes;
461 Display.Mode defaultMode = getDefaultMode();
475 Display.Mode[] modes = supportedModes;
477 Display.Mode defaultMode = getDefaultMode();
479 Display.Mode mode = modes[i];
523 * Returns true if the specified UID has access to this display.
526 return Display.hasAccess(uid, flags, ownerUid);
615 sb.append(Display.typeToString(type));
620 sb.append(Display.stateToString(state));
632 if ((flags & Display.FLAG_SECURE) != 0) {
635 if ((flags & Display.FLAG_SUPPORTS_PROTECTED_BUFFERS) != 0) {
638 if ((flags & Display.FLAG_PRIVATE) != 0) {
641 if ((flags & Display.FLAG_PRESENTATION) != 0) {
644 if ((flags & Display.FLAG_SCALING_DISABLED) != 0) {
647 if ((flags & Display.FLAG_ROUND) != 0) {