Searched refs:display (Results 101 - 125 of 144) sorted by relevance

123456

/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java144 * @param displayFrame The frame of the overall display in which this
147 * @param contentFrame The frame within the display in which we would
150 * @param visibleFrame The frame within the display that the window
177 * Retrieve the frame of the display that this window was last
181 * @return Rect The rectangle holding the display frame.
188 * should be placed. It will be smaller than the display frame to
345 * @return true if window is on default display.
488 * display dimensions.
490 public void setInitialDisplaySize(Display display, int width, int height, int density); argument
525 * on its knowledge of the display an
[all...]
H A DSurfaceView.java484 Display display = getDisplay();
489 mVisible ? VISIBLE : GONE, display.getDisplayId(), mContentInsets);
H A DChoreographer.java19 import android.hardware.display.DisplayManagerGlobal;
31 * from the display subsystem then schedules work to occur as part of rendering
32 * the next display frame.
40 * display frame rendering, use {@link android.animation.ValueAnimator#start}.</li>
41 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
43 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
46 * next display frame, use {@link View#postInvalidateOnAnimation()} or
49 * sync with display frame rendering, do nothing. This already happens automatically.
59 * and you want to ensure that it is appropriately synchronized with the display, then use
79 // and display loo
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_Surface.cpp108 status_t update(const sp<IBinder>& display, int width, int height, argument
112 ? mScreenshot.update(display, width, height)
113 : mScreenshot.update(display, width, height, minLayer, maxLayer))
114 : mScreenshot.update(display);
/frameworks/base/services/java/com/android/server/display/
H A DLogicalDisplay.java17 package com.android.server.display;
30 * Describes how a logical display is configured.
33 * primary display device from which the logical display derives its basic properties
36 * A logical display may be mirrored onto multiple display devices in addition to its
37 * primary display device. Note that the contents of a logical display may not
38 * always be visible, even on its primary display device, such as in the case where
39 * the primary display devic
[all...]
H A DOverlayDisplayAdapter.java17 package com.android.server.display;
40 * A display adapter that uses overlay windows to simulate secondary displays
45 * get confused. The main handler is used to posting messages to the display manager
126 Slog.i(TAG, "Dismissing all overlay display devices.");
138 Slog.w(TAG, "Too many overlay display devices specified: " + value);
155 Slog.i(TAG, "Showing overlay display device #" + number
168 Slog.w(TAG, "Malformed overlay display devices setting: " + value);
252 * Functions as a handle for overlay display devices which are created and
/frameworks/base/tests/RenderScriptTests/SampleTest/src/com/android/rs/sample/
H A DSampleRSActivity.java116 TextureView displayView = (TextureView) findViewById(R.id.display);
/frameworks/native/include/gui/
H A DBufferQueue.h233 status_t releaseBuffer(int buf, EGLDisplay display, EGLSyncKHR fence,
/frameworks/native/opengl/tests/angeles/include/GLES/
H A Degl.h196 GLAPI EGLDisplay APIENTRY eglGetDisplay (NativeDisplayType display);
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoDumper.java19 import android.hardware.display.DisplayManagerGlobal;
/frameworks/base/core/java/android/app/
H A DContextImpl.java53 import android.hardware.display.DisplayManager;
187 private Display mDisplay; // may be null if default display
523 Display display = ctx.mDisplay;
524 if (display == null) {
527 display = dm.getDisplay(Display.DEFAULT_DISPLAY);
529 return new WindowManagerImpl(display);
1772 public Context createDisplayContext(Display display) { argument
1773 if (display == null) {
1774 throw new IllegalArgumentException("display must not be null");
1777 int displayId = display
[all...]
/frameworks/base/core/java/android/content/
H A DContextWrapper.java608 public Context createDisplayContext(Display display) { argument
609 return mBase.createDisplayContext(display);
H A DContext.java2230 * {@link android.hardware.display.DisplayManager} for interacting with display devices.
2233 * @see android.hardware.display.DisplayManager
2235 public static final String DISPLAY_SERVICE = "display";
2374 * display).
2694 * The returned display Context provides a {@link WindowManager}
2696 * on the given display. The WindowManager's {@link WindowManager#getDefaultDisplay}
2699 * @param display A {@link Display} object specifying the display
2703 * @return A Context for the display
2705 createDisplayContext(Display display) argument
[all...]
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs290 <li><a href="<?cs var:toroot ?>training/displaying-bitmaps/display-bitmap.html">
610 "How to display messages called notifications outside of
636 <a href="<?cs var:toroot ?>training/notify-user/display-progress.html">
1036 display an &quot;Application Not Responding&quot; dialog."
/frameworks/base/services/java/com/android/server/power/
H A DElectronBeam.java19 import com.android.server.display.DisplayManagerService;
20 import com.android.server.display.DisplayTransactionListener;
79 private int mDisplayLayerStack; // layer stack associated with primary display
134 // Get the display size and layer stack.
423 // a different size from the display for some reason.
704 * Updates the position and transformation of the matrix whenever the display
705 * is rotated. This is a little tricky because the display transaction
/frameworks/base/media/java/android/mtp/
H A DMtpDatabase.java807 Display display = ((WindowManager)mContext.getSystemService(
809 int width = display.getMaximumSizeDimension();
810 int height = display.getMaximumSizeDimension();
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp111 EGLDisplay eglGetDisplay(EGLNativeDisplayType display) argument
115 uint32_t index = uint32_t(display);
124 EGLDisplay dpy = egl_display_t::getFromNativeDisplay(display);
513 // a valid but uninitialized display.
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java539 public Context createDisplayContext(Display display) { argument
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A DImageProcessingActivity.java305 mDisplayView = (ImageView) findViewById(R.id.display);
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A DImageProcessingActivity2.java298 mDisplayView = (ImageView) findViewById(R.id.display);
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java54 import com.android.server.display.DisplayManagerService;
82 import android.hardware.display.DisplayManager;
805 for (Display display : displays) {
806 createDisplayContentLocked(display);
910 * @param displayContent The display we are interested in.
988 // No window from token found on win's display.
998 // No windows from this token on this display
1014 // is not going to the bottom and has windows on this display, we can
1041 // token that has windows on this display.
1196 // same display
11030 createDisplayContentLocked(final Display display) argument
11155 getWindowListLocked(final Display display) argument
[all...]
H A DScreenRotationAnimation.java191 public ScreenRotationAnimation(Context context, Display display, SurfaceSession session, argument
195 mDisplay = display;
/frameworks/native/libs/gui/
H A DBufferQueue.cpp860 status_t BufferQueue::releaseBuffer(int buf, EGLDisplay display, argument
871 mSlots[buf].mEglDisplay = display;
/frameworks/base/core/java/android/text/
H A DLayout.java62 * Return how wide a layout must be in order to display the
71 * Return how wide a layout must be in order to display the
99 * Subclasses of Layout use this constructor to set the display text,
119 * Subclasses of Layout use this constructor to set the display text,
1823 public SpannedEllipsizer(CharSequence display) { argument
1824 super(display);
1825 mSpanned = (Spanned) display;
/frameworks/base/core/java/com/android/internal/app/
H A DMediaRouteChooserDialogFragment.java28 import android.hardware.display.DisplayManager;

Completed in 580 milliseconds

123456