HomeSort by relevance Sort by last modified time
    Searched refs:display (Results 1 - 25 of 373) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11events_c.h 29 extern void X11_SetKeyboardState(Display *display, const char *key_vec);
31 extern void X11_SaveScreenSaver(Display *display, int *saved_timeout, BOOL *dpms);
32 extern void X11_DisableScreenSaver(_THIS, Display *display);
33 extern void X11_RestoreScreenSaver(_THIS, Display *display, int saved_timeout, BOOL dpms);
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_PhonesTest.java 37 String display = Phones.getDisplayLabel(getContext(), local
39 assertEquals(label, display);
43 display = Phones.getDisplayLabel(getContext(),
45 assertEquals(labels[Phones.TYPE_HOME - 1], display);
47 display = Phones.getDisplayLabel(getContext(),
49 assertEquals(labels[Phones.TYPE_MOBILE - 1], display);
51 display = Phones.getDisplayLabel(getContext(),
53 assertEquals(labels[Phones.TYPE_WORK - 1], display);
55 display = Phones.getDisplayLabel(getContext(),
57 assertEquals(labels[Phones.TYPE_FAX_WORK - 1], display);
90 String display = Phones.getDisplayLabel(getContext(), local
    [all...]
Contacts_OrganizationsTest.java 37 String display = Organizations.getDisplayLabel(getContext(), local
39 assertEquals(label, display);
43 display = Organizations.getDisplayLabel(getContext(),
45 assertEquals(labels[Organizations.TYPE_OTHER - 1], display);
47 display = Organizations.getDisplayLabel(getContext(),
49 assertEquals(labels[Organizations.TYPE_WORK - 1], display);
Contacts_ContactMethodsTest.java 96 String display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_EMAIL, local
98 assertEquals(label, display);
102 display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_EMAIL,
104 assertEquals(labels[ContactMethods.TYPE_HOME - 1], display);
106 display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_EMAIL,
108 assertEquals(labels[ContactMethods.TYPE_OTHER - 1], display);
110 display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_EMAIL,
112 assertEquals(labels[ContactMethods.TYPE_WORK - 1], display);
115 display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_IM,
117 assertEquals(untitled, display);
    [all...]
  /external/webkit/WebKit/chromium/src/x11/
WebScreenInfoFactory.cpp 40 WebScreenInfo WebScreenInfoFactory::screenInfo(Display* display, int screenNumber)
46 int displayWidth = XDisplayWidth(display, screenNumber);
47 int displayHeight = XDisplayHeight(display, screenNumber);
48 results.depth = XDisplayPlanes(display, screenNumber);
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLImpl.java 32 public native boolean eglInitialize(EGLDisplay display, int[] major_minor);
33 public native boolean eglQueryContext(EGLDisplay display, EGLContext context, int attribute, int[] value);
34 public native boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value);
35 public native boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] configs, int config_size, int[] num_config);
36 public native boolean eglGetConfigAttrib(EGLDisplay display, EGLConfig config, int attribute, int[] value);
37 public native boolean eglGetConfigs(EGLDisplay display, EGLConfig[] configs, int config_size, int[] num_config);
39 public native boolean eglDestroyContext(EGLDisplay display, EGLContext context);
40 public native boolean eglDestroySurface(EGLDisplay display, EGLSurface surface);
41 public native boolean eglMakeCurrent(EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext context);
42 public native String eglQueryString(EGLDisplay display, int name)
    [all...]
  /frameworks/base/docs/html/sdk/
sdk_toc.cs 7 <span style="display:none" class="de">Aktuelle SDK-Version</span>
8 <span style="display:none" class="es">Versión actual del SDK</span>
9 <span style="display:none" class="fr">Version actuelle du SDK</span>
10 <span style="display:none" class="it">Release SDK attuale</span>
11 <span style="display:none" class="ja">??????????? SDK</span>
12 <span style="display:none" class="zh-CN">??? SDK ??</span>
13 <span style="display:none" class="zh-TW">?? SDK ????</span>
18 <span style="display:none" class="de">Herunterladen</span>
19 <span style="display:none" class="es">Descargar</span>
20 <span style="display:none" class="fr">Téléchargement</span
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
DisplayTest.java 22 import android.view.Display;
30 @TestTargetClass(Display.class)
51 notes = "don't know what orientation the default display has",
72 * Test the properties of Display, they are:
73 * 1 index of this display
74 * 2 height of this display in pixels
75 * 3 width of this display in pixels
76 * 4 orientation of this display
77 * 5 pixel format of this display
78 * 6 refresh rate of this display in frames per secon
85 Display display = windowManager.getDefaultDisplay(); local
    [all...]
  /frameworks/base/opengl/java/android/opengl/
EGLLogWrapper.java 47 public boolean eglChooseConfig(EGLDisplay display, int[] attrib_list,
50 arg("display", display);
55 boolean result = mEgl10.eglChooseConfig(display, attrib_list, configs,
64 public boolean eglCopyBuffers(EGLDisplay display, EGLSurface surface,
67 arg("display", display);
72 boolean result = mEgl10.eglCopyBuffers(display, surface, native_pixmap);
78 public EGLContext eglCreateContext(EGLDisplay display, EGLConfig config,
81 arg("display", display)
    [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/egl/
EGL10.java 97 boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] configs, int config_size, int[] num_config);
98 boolean eglCopyBuffers(EGLDisplay display, EGLSurface surface, Object native_pixmap);
99 EGLContext eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list);
100 EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list);
101 EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list);
102 EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list);
103 boolean eglDestroyContext(EGLDisplay display, EGLContext context);
104 boolean eglDestroySurface(EGLDisplay display, EGLSurface surface);
105 boolean eglGetConfigAttrib(EGLDisplay display, EGLConfig config, int attribute, int[] value);
106 boolean eglGetConfigs(EGLDisplay display, EGLConfig[] configs, int config_size, int[] num_config)
    [all...]
  /frameworks/base/core/java/android/view/
Gravity.java 95 /** Special constant to enable clipping to an overall display along the
102 /** Special constant to enable clipping to an overall display along the
234 * Apply additional gravity behavior based on the overall "display" that an
237 * within a visible display. By default this moves or clips the object
238 * to be visible in the display; the gravity flags
243 * display.
244 * @param display The rectangle of the display in which the object is
247 * modified if needed to fit in the display.
249 public static void applyDisplay(int gravity, Rect display, Rect inoutObj)
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
AdbWrapper.java 56 private void display(String format, Object...args) { method in class:AdbWrapper
66 display("Error: missing path to ADB."); //$NON-NLS-1$
85 display("Unable to run 'adb': %1$s.", ioe.getMessage()); //$NON-NLS-1$
88 display("Unable to run 'adb': %1$s.", ie.getMessage()); //$NON-NLS-1$
93 display("'adb start-server' failed."); //$NON-NLS-1$
97 display("'adb start-server' succeeded."); //$NON-NLS-1$
108 display("Error: missing path to ADB."); //$NON-NLS-1$
130 display("'adb kill-server' failed -- run manually if necessary."); //$NON-NLS-1$
134 display("'adb kill-server' succeeded."); //$NON-NLS-1$
166 display("ADB Error: %1$s", line);
    [all...]
  /external/webkit/WebCore/css/
mediaControlsQt.css 36 display: -webkit-box;
50 display: none;
74 audio::-webkit-media-controls-current-time-display, video::-webkit-media-controls-current-time-display {
75 display: none;
78 audio::-webkit-media-controls-time-remaining-display, video::-webkit-media-controls-time-remaining-display {
79 display: none;
91 display: none;
95 display: none
    [all...]
html.css 27 display: block
30 /* children of the <head> element all have display:none */
32 display: none
36 display: none
40 display: none
44 display: none
48 display: none
52 display: none
58 display: block;
63 display: block
    [all...]
mediaControls.css 33 display: -webkit-box;
52 display: -webkit-box;
59 display: -webkit-box;
66 display: -webkit-box;
75 audio::-webkit-media-controls-current-time-display, video::-webkit-media-controls-current-time-display {
76 display: none;
79 audio::-webkit-media-controls-time-remaining-display, video::-webkit-media-controls-time-remaining-display {
80 display: none
    [all...]
mediaControlsAndroid.css 34 display: -webkit-box;
53 display: -webkit-box;
60 display: -webkit-box;
67 display: -webkit-box;
76 audio::-webkit-media-controls-current-time-display, video::-webkit-media-controls-current-time-display {
77 display: none;
80 audio::-webkit-media-controls-time-remaining-display, video::-webkit-media-controls-time-remaining-display {
81 display: none
    [all...]
  /development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
GL2JNIView.java 112 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) {
116 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
121 public void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context) {
122 egl.eglDestroyContext(display, context);
158 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) {
163 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config);
174 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
177 printConfigs(egl, display, configs);
181 return chooseConfig(egl, display, configs);
184 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display,
    [all...]
  /sdk/traceview/src/com/android/traceview/
ColorController.java 26 import org.eclipse.swt.widgets.Display;
58 public static Color requestColor(Display display, RGB rgb) {
59 return requestColor(display, rgb.red, rgb.green, rgb.blue);
62 public static Image requestColorSquare(Display display, RGB rgb) {
63 return requestColorSquare(display, rgb.red, rgb.green, rgb.blue);
66 public static Color requestColor(Display display, int red, int green, int blue) {
70 color = new Color(display, red, green, blue)
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
DisplayMetricsTest.java 21 import android.view.Display;
30 private Display initDisplay() {
34 Display display = windowManager.getDefaultDisplay(); local
35 assertNotNull(display);
36 return display;
70 Display display = initDisplay(); local
71 display.getMetrics(outMetrics);
74 assertEquals(display.getHeight(), metrics.heightPixels)
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
CameraEGLConfigChooser.java 47 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) {
49 if (!egl.eglChooseConfig(display, mConfigSpec, null, 0, numConfig)) {
58 if (!egl.eglChooseConfig(display,
63 return chooseConfig(egl, display, configs);
67 EGL10 egl, EGLDisplay display, EGLConfig configs[]) {
78 display, configs[i], EGL10.EGL_STENCIL_SIZE, value)) {
91 display, result, EGL10.EGL_STENCIL_SIZE, value);
  /frameworks/base/opengl/tests/gl2_jni/src/com/android/gl2jni/
GL2JNIView.java 80 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) {
84 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
89 public void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context) {
90 egl.eglDestroyContext(display, context);
121 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) {
124 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config);
132 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
133 // printConfigs(egl, display, configs);
134 return chooseConfig(egl, display, configs);
137 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display,
    [all...]
  /frameworks/base/opengl/tests/gldual/src/com/android/gldual/
GLDualGL2View.java 83 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) {
87 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
92 public void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context) {
93 egl.eglDestroyContext(display, context);
124 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) {
127 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config);
135 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
136 // printConfigs(egl, display, configs);
137 return chooseConfig(egl, display, configs);
140 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display,
    [all...]
  /development/ndk/platforms/android-9/samples/native-activity/jni/
main.c 52 EGLDisplay display; member in struct:engine
61 * Initialize an EGL context for the current display.
84 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY); local
86 eglInitialize(display, 0, 0);
91 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
97 eglGetConfigAttrib(display, config, EGL_NATIVE_VISUAL_ID, &format);
101 surface = eglCreateWindowSurface(display, config, engine->app->window, NULL);
102 context = eglCreateContext(display, config, NULL, NULL);
104 if (eglMakeCurrent(display, surface, surface, context) == EGL_FALSE) {
109 eglQuerySurface(display, surface, EGL_WIDTH, &w)
    [all...]
  /external/qemu/android/
android.h 37 const char* display; member in struct:__anon5662
47 const char* display; member in struct:__anon5663
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_sysyuv.h 57 SDL_Surface *display; member in struct:private_yuvhwdata
65 extern SDL_Overlay* BE_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface* display);

Completed in 373 milliseconds

1 2 3 4 5 6 7 8 91011>>