HomeSort by relevance Sort by last modified time
    Searched defs:display (Results 151 - 175 of 602) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/services/core/java/com/android/server/display/
DisplayManagerService.java 17 package com.android.server.display;
25 import android.hardware.display.DisplayManager;
26 import android.hardware.display.DisplayManagerGlobal;
27 import android.hardware.display.DisplayManagerInternal;
28 import android.hardware.display.DisplayViewport;
29 import android.hardware.display.DisplayManagerInternal.DisplayTransactionListener;
30 import android.hardware.display.IDisplayManager;
31 import android.hardware.display.IDisplayManagerCallback;
32 import android.hardware.display.IVirtualDisplayCallback;
33 import android.hardware.display.WifiDisplayStatus
308 LogicalDisplay display = mLogicalDisplays.get(displayId); local
381 LogicalDisplay display = mLogicalDisplays.get(displayId); local
398 LogicalDisplay display = mLogicalDisplays.valueAt(i); local
561 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device); local
775 LogicalDisplay display = new LogicalDisplay(displayId, layerStack, device); local
811 LogicalDisplay display = mLogicalDisplays.valueAt(i); local
849 LogicalDisplay display = mLogicalDisplays.get(displayId); local
880 LogicalDisplay display = mLogicalDisplays.get(displayId); local
907 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device); local
949 LogicalDisplay display = mLogicalDisplays.valueAt(i); local
1042 LogicalDisplay display = mLogicalDisplays.valueAt(i); local
    [all...]
WifiDisplayAdapter.java 17 package com.android.server.display;
26 import android.hardware.display.DisplayManager;
27 import android.hardware.display.WifiDisplay;
28 import android.hardware.display.WifiDisplaySessionInfo;
29 import android.hardware.display.WifiDisplayStatus;
37 import android.view.Display;
51 * The Wifi display protocol relies on Wifi direct for discovering and pairing
52 * with the display. Once connected, the Media Server opens an RTSP socket and accepts
53 * a connection from the display. After session negotiation, the Media Server
54 * streams encoded buffers to the display
250 WifiDisplay display = mPersistentDataStore.getRememberedWifiDisplay(address); local
    [all...]
  /cts/tests/tests/display/src/android/display/cts/
VirtualDisplayTest.java 17 package android.display.cts;
25 import android.hardware.display.DisplayManager;
26 import android.hardware.display.VirtualDisplay;
37 import android.view.Display;
116 * Ensures that an application can create a private virtual display and show
122 assertNotNull("virtual display must not be null", virtualDisplay);
124 Display display = virtualDisplay.getDisplay(); local
126 assertDisplayRegistered(display, Display.FLAG_PRIVATE)
149 Display display = virtualDisplay.getDisplay(); local
173 Display display = virtualDisplay.getDisplay(); local
    [all...]
  /frameworks/base/core/java/android/hardware/display/
DisplayManagerGlobal.java 17 package android.hardware.display;
21 import android.hardware.display.DisplayManager.DisplayListener;
34 import android.view.Display;
41 * Manager communication with the display manager service on behalf of
50 // True if display info and display ids should be cached.
56 // an application could start processing a configuration change due to a display
57 // orientation change before the display info cache has actually been invalidated.
84 * Gets an instance of the display manager global singleton.
86 * @return The display manager instance, may be null early in system startu
387 Display display = getRealDisplay(displayId); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/hardware/display/
VirtualDisplayTest.java 17 package android.hardware.display;
25 import android.hardware.display.DisplayManager;
26 import android.hardware.display.VirtualDisplay;
36 import android.view.Display;
109 * Ensures that an application can create a private virtual display and show
115 assertNotNull("virtual display must not be null", virtualDisplay);
117 Display display = virtualDisplay.getDisplay(); local
119 assertDisplayRegistered(display, Display.FLAG_PRIVATE)
141 Display display = virtualDisplay.getDisplay(); local
170 Display display = virtualDisplay.getDisplay(); local
224 Display display = virtualDisplay.getDisplay(); local
    [all...]
  /prebuilts/devtools/tools/lib/
swtmenubar.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java 86 import org.eclipse.swt.widgets.Display;
307 Display display = getDisplay(); local
308 mRed = new Color(display, 0xFF, 0x00, 0x00);
313 display.asyncExec(new Runnable() {
331 * Returns the current display, if any
333 * @return the display
336 public static Display getDisplay() {
341 Display display = bench.getDisplay() local
349 Display display = Display.getCurrent(); local
364 Display display = AdtPlugin.getDisplay(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 36 import org.eclipse.swt.widgets.Display;
351 Display display = Display.getCurrent(); local
352 if (display == null) {
356 Image image = new Image(display, SX, SY);
375 Color backgroundColor = new Color(display, backgroundRgb);
379 gc.setBackground(display.getSystemColor(SWT.COLOR_WHITE));
386 gc.setForeground(display.getSystemColor(SWT.COLOR_BLACK));
395 Font font = display.getSystemFont()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintListDialog.java 40 import org.eclipse.swt.widgets.Display;
153 Display display = parent.getDisplay(); local
154 mDetailsText.setBackground(display.getSystemColor(SWT.COLOR_INFO_BACKGROUND));
155 mDetailsText.setForeground(display.getSystemColor(SWT.COLOR_INFO_FOREGROUND));
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ddms/
StaticPortConfigDialog.java 31 import org.eclipse.swt.widgets.Display;
86 * Open and display the dialog. This method returns only when the
115 Display display = mParent.getDisplay(); local
117 if (!display.readAndDispatch())
118 display.sleep();
StaticPortEditDialog.java 32 import org.eclipse.swt.widgets.Display;
85 * @param oldDeviceSN the device serial number to display
86 * @param oldAppName The application name to display
87 * @param oldPortNumber The port number to display
123 Display display = mParent.getDisplay(); local
125 if (!display.readAndDispatch())
126 display.sleep();
255 // display warnings.
284 // lets also display a warning if the package contains upper cas
    [all...]
  /cts/tests/tests/graphics/src/android/opengl/cts/
OpenGlEsVersionTest.java 153 EGLDisplay display = egl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); local
156 if (egl.eglInitialize(display, null)) {
158 boolean checkES3 = hasExtension(egl.eglQueryString(display, EGL10.EGL_EXTENSIONS),
160 if (egl.eglGetConfigs(display, null, 0, numConfigs)) {
162 if (egl.eglGetConfigs(display, configs, numConfigs[0], numConfigs)) {
166 if (egl.eglGetConfigAttrib(display, configs[i],
195 egl.eglTerminate(display);
  /cts/tests/tests/textureview/src/android/textureview/cts/
TextureViewTestActivity.java 23 import android.view.Display;
77 Display display = wm.getDefaultDisplay(); local
78 float rate = display.getRefreshRate();
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimatorInflaterTest.java 29 import android.view.Display;
130 Display display = mWindowManager.getDefaultDisplay(); local
136 switch (display.getRotation()) {
  /external/clang/utils/
clang-completion-mode.el 109 (defun clang-completion-display (buffer)
124 ;; Display the process buffer.
125 (display-buffer buffer)
182 ;; updated, do so (and update the display of results).
187 (clang-completion-display clang-completion-buffer)
  /external/deqp/framework/egl/
egluUtil.cpp 61 Version getVersion (const Library& egl, EGLDisplay display)
66 EGLU_CHECK_CALL(egl, initialize(display, &major, &minor));
71 vector<string> getExtensions (const Library& egl, EGLDisplay display)
73 const char* const extensionStr = egl.queryString(display, EGL_EXTENSIONS);
80 bool hasExtension (const Library& egl, EGLDisplay display, const string& str)
82 const vector<string> extensions = getExtensions(egl, display);
91 vector<string> getClientExtensions (const Library& egl, EGLDisplay display)
93 DE_ASSERT(display != EGL_NO_DISPLAY);
95 return getExtensions(egl, display);
98 vector<EGLConfig> getConfigs (const Library& egl, EGLDisplay display)
233 EGLDisplay display = EGL_NO_DISPLAY; local
268 EGLDisplay display = getDisplay(nativeDisplay); local
    [all...]
  /external/drm_hwcomposer/
drmresources.cpp 260 DrmConnector *DrmResources::GetConnectorForDisplay(int display) const {
263 if ((*iter)->display() == display)
269 DrmCrtc *DrmResources::GetCrtcForDisplay(int display) const {
272 if ((*iter)->display() == display)
299 int DrmResources::TryEncoderForDisplay(int display, DrmEncoder *enc) {
302 if (crtc && crtc->can_bind(display)) {
303 crtc->set_display(display);
314 if ((*iter)->can_bind(display)) {
326 int display = connector->display(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrint.java 28 import org.eclipse.swt.widgets.Display;
195 Display display = Display.getDefault(); local
197 Image image = new Image(display, GRAPH_WIDTH, height);
199 barGraph.paint(display, GRAPH_WIDTH, height, gc);
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
ViewTarget.java 5 import android.view.Display;
168 Display display = windowManager.getDefaultDisplay(); local
169 @SuppressWarnings("deprecation") final int width = display.getWidth(), height = display.getHeight();
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ICUServiceTestSample.java 43 display(); method
57 display(); method
60 private void display() { method in class:ICUServiceTestSample.HelloServiceClient
209 * sort the display names, and null for the matchID.
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestMultiRenderTarget.java 57 private Picture display; field in class:TestMultiRenderTarget
84 display = (Picture) display1.clone();
107 display.addLight(pl);
115 guiNode.attachChild(display);
135 display.setMaterial(mat);
136 display.setPosition(0, 0);
137 display.setWidth(w);
138 display.setHeight(h);
  /external/libdrm/tests/ttmtest/src/
ttmtest.c 64 Display *display; member in struct:__anon12272
139 uniDRIDestroyContext(ctx->display, ctx->screen, ctx->id);
148 uniDRICloseConnection(ctx->display, ctx->screen);
150 XCloseDisplay(ctx->display);
357 ctx.display = XOpenDisplay(displayName);
358 if (!ctx.display) {
359 fprintf(stderr, "Could not open display\n");
365 uniDRIQueryDirectRenderingCapable(ctx.display, ctx.screen,
368 fprintf(stderr, "No DRI on this display:sceen\n")
    [all...]
  /external/libvncserver/test/
encodingstest.c 115 char* display; member in struct:clientData
159 rfbClientLog("Starting client (encoding %s, display %s)\n",
161 cd->display);
173 free(((clientData*)client->clientData)->display);
196 cd->display=(char*)malloc(6);
197 sprintf(cd->display,":%d",server->port-5900);
  /external/mesa3d/src/gallium/state_trackers/egl/wayland/
native_wayland.c 52 wayland_roundtrip(struct wayland_display *display)
57 callback = wl_display_sync(display->dpy);
59 wl_proxy_set_queue((struct wl_proxy *) callback, display->queue);
61 ret = wl_display_dispatch_queue(display->dpy, display->queue);
82 struct wayland_display *display = wayland_display(ndpy); local
86 if (!display->configs) {
89 display->num_configs = 0;
90 display->configs = CALLOC(Elements(wayland_formats),
91 sizeof(*display->configs))
166 struct wayland_display *display = surface->display; local
255 struct wayland_display *display = surface->display; local
374 struct wayland_display *display = wayland_display(ndpy); local
417 struct wayland_display *display = NULL; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
xm_api.h 79 Display *display; member in struct:xmesa_display
89 * Input: display - X11 display
110 extern XMesaVisual XMesaCreateVisual( Display *display,
138 * share_list - another XMesaContext with which to share display
181 extern XMesaBuffer XMesaFindBuffer( Display *dpy,
261 XMesaBindTexImage(Display *dpy, XMesaBuffer drawable, int buffer,
265 XMesaReleaseTexImage(Display *dpy, XMesaBuffer drawable, int buffer)
288 Display *display; \/* The X11 display *\/ member in struct:xmesa_visual
    [all...]

Completed in 643 milliseconds

1 2 3 4 5 67 8 91011>>