Searched defs:display (Results 1 - 25 of 425) sorted by last modified time

1234567891011>>

/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c52 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, surfac
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dwpa_debug.c278 const char *display; local
282 display = " [NULL]";
284 display = "";
300 display = strbuf;
302 display = " [REMOVED]";
308 title, (long unsigned int) len, display, local
316 const char *display;
320 display = " [NULL]";
322 display = "";
335 display
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dwpa_debug.c278 const char *display; local
282 display = " [NULL]";
284 display = "";
300 display = strbuf;
302 display = " [REMOVED]";
308 title, (long unsigned int) len, display, local
316 const char *display;
320 display = " [NULL]";
322 display = "";
335 display
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dwpa_debug.c278 const char *display; local
282 display = " [NULL]";
284 display = "";
300 display = strbuf;
302 display = " [REMOVED]";
308 title, (long unsigned int) len, display, local
316 const char *display;
320 display = " [NULL]";
322 display = "";
335 display
[all...]
/external/skia/src/views/win/
H A DSkOSWindow_win.cpp409 EGLDisplay display = eglGetDisplay(GetDC(hWnd)); local
410 if (display == EGL_NO_DISPLAY ) {
416 if (!eglInitialize(display, &majorVersion, &minorVersion)) {
421 if (!eglGetConfigs(display, NULL, 0, &numConfigs)) {
440 if (eglChooseConfig(display, configAttribList, eglConfig, 1, &numConfigs)) {
446 if (!eglChooseConfig(display, configAttribList, eglConfig, 1, &numConfigs)) {
452 EGLSurface surface = eglCreateWindowSurface(display, *eglConfig,
460 EGLContext context = eglCreateContext(display, *eglConfig,
468 if (!eglMakeCurrent(display, surface, surface, context)) {
472 *eglDisplay = display;
[all...]
/external/smack/src/org/jivesoftware/smackx/packet/
H A DTime.java70 private String display = null; field in class:Time
88 display = displayFormat.format(cal.getTime());
171 return display;
177 * @param display the local time in human-friendly format.
179 public void setDisplay(String display) { argument
180 this.display = display;
192 if (display != null) {
193 buf.append("<display>").append(display)
[all...]
/external/smali/util/src/main/java/ds/tree/
H A DRadixTreeImpl.java379 public void display() { method in class:RadixTreeImpl
384 private void display(int level, RadixTreeNode<T> node) { method in class:RadixTreeImpl
/external/skia/platform_tools/android/app/src/com/skia/
H A DSkiaSampleView.java193 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) { argument
237 if (!egl.eglChooseConfig(display, configSpec, null, 0, value)) {
265 if (!egl.eglChooseConfig(display, configSpec, null, 0, value)) {
278 if (!egl.eglChooseConfig(display, configSpec, configs, numConfigs, value)) {
284 if (findConfigAttrib(egl, display, config , EGL10.EGL_RED_SIZE, 0) == 8 &&
285 findConfigAttrib(egl, display, config, EGL10.EGL_BLUE_SIZE, 0) == 8 &&
286 findConfigAttrib(egl, display, config, EGL10.EGL_GREEN_SIZE, 0) == 8 &&
287 findConfigAttrib(egl, display, config, EGL10.EGL_ALPHA_SIZE, 0) == 8 &&
288 findConfigAttrib(egl, display, config, EGL10.EGL_STENCIL_SIZE, 0) == 8) {
296 private int findConfigAttrib(EGL10 egl, EGLDisplay display, argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGLSurfaceView.java47 * <li>Manages an EGL display, which enables OpenGL to render into a surface.
109 * the OpenGL display.
489 * recreate the OpenGL display and resume the rendering
701 EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig); argument
702 void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context); argument
708 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig config) { argument
712 return egl.eglCreateContext(display, config, EGL10.EGL_NO_CONTEXT,
716 public void destroyContext(EGL10 egl, EGLDisplay display, argument
718 egl.eglDestroyContext(display, context);
729 EGLSurface createWindowSurface(EGL10 egl, EGLDisplay display, EGLConfi argument
731 destroySurface(EGL10 egl, EGLDisplay display, EGLSurface surface) argument
736 createWindowSurface(EGL10 egl, EGLDisplay display, EGLConfig config, Object nativeWindow) argument
741 destroySurface(EGL10 egl, EGLDisplay display, EGLSurface surface) argument
764 chooseConfig(EGL10 egl, EGLDisplay display) argument
773 chooseConfig(EGL10 egl, EGLDisplay display) argument
799 chooseConfig(EGL10 egl, EGLDisplay display, EGLConfig[] configs) argument
842 chooseConfig(EGL10 egl, EGLDisplay display, EGLConfig[] configs) argument
873 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
[all...]
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/
H A DRobolectric.java1256 public static void setDefaultDisplay(Display display) { argument
1257 shadowOf(getShadowApplication().getResources()).setDisplay(display);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowResources.java40 private Display display; field in class:ShadowResources
133 public void setDisplay(Display display) { argument
134 this.display = display;
141 if (display == null) {
142 display = Robolectric.newInstanceOf(Display.class);
146 display.getMetrics(displayMetrics);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestWindowManager.java15 private Display display; field in class:TestWindowManager
34 return display == null ? display = newInstanceOf(Display.class) : display;
/external/qemu/android/
H A Dandroid.h37 const char* display; member in struct:__anon29020
48 const char* display; member in struct:__anon29021
H A Dconsole.c55 #include "android/display-core.h"
688 control_write( client, format, speed->name, speed->display );
1015 const char * display; member in struct:__anon29107
1031 _cdma_subscription_sources[i].display );
1095 const char* display; member in struct:__anon29108
1149 const char* display = _gsm_states[nn].display; local
1154 control_write( client, " %-15s %s\r\n", name, display );
1201 const char* display = _gsm_states[nn].display; local
[all...]
/external/qemu/android/skin/
H A Dfile.c81 skin_display_done( SkinDisplay* display )
83 qframebuffer_done( display->qfbuff );
87 skin_display_init_from( SkinDisplay* display, AConfig* node ) argument
89 display->rect.pos.x = aconfig_int(node, "x", 0);
90 display->rect.pos.y = aconfig_int(node, "y", 0);
91 display->rect.size.w = aconfig_int(node, "width", 0);
92 display->rect.size.h = aconfig_int(node, "height", 0);
93 display->rotation = aconfig_unsigned(node, "rotation", SKIN_ROTATION_0);
94 display->bpp = aconfig_int(node, "bpp", 16);
96 display
[all...]
H A Dfile.h29 SkinRect rect; /* display rectangle */
48 SkinDisplay display[1]; member in struct:SkinPart
H A Dwindow.c579 fprintf(stderr, "--- display redraw r.pos(%d,%d) r.size(%d,%d) "
708 ADisplay* display; member in struct:__anon29199
821 #define LAYOUT_LOOP_DISPLAYS(layout,display) \
826 ADisplay* display = __display;
879 if ( part->display->valid )
918 if ( part->display->valid ) {
920 display_init( disp, part->display, loc, &layout->rect );
990 /* find the display that contains this movement */
991 finger->display = NULL;
1000 finger->display
[all...]
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_syswm.h89 Display *display; /**< The X11 display */ member in struct:SDL_SysWMinfo::__anon29376::__anon29377
90 Window window; /**< The X11 display window */
92 * any X11 functions using the display variable,
110 Display *gfxdisplay; /**< The X11 display to which rendering is done */
128 GR_WINDOW_ID window ; /* The display window */
147 HWND window; /**< The Win32 display window */
165 int window; /**< The RISC OS display window */
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuv.c33 SDL_Surface *display)
40 if ( (display->flags & SDL_OPENGL) == SDL_OPENGL ) {
47 if ( (display == SDL_PublicSurface) &&
50 display = SDL_VideoSurface;
55 if ( ((display == SDL_VideoSurface) && video->CreateYUVOverlay) &&
57 overlay = video->CreateYUVOverlay(this, w, h, format, display);
61 overlay = SDL_CreateYUV_SW(this, w, h, format, display);
32 SDL_CreateYUVOverlay(int w, int h, Uint32 format, SDL_Surface *display) argument
H A DSDL_yuv_sw.c103 SDL_Surface *display; member in struct:private_yuvhwdata
926 SDL_Overlay *SDL_CreateYUV_SW(_THIS, int width, int height, Uint32 format, SDL_Surface *display) argument
942 if ( (display->format->BytesPerPixel != 2) &&
943 (display->format->BytesPerPixel != 3) &&
944 (display->format->BytesPerPixel != 4) ) {
987 swdata->display = display;
1004 /* Generate the tables for the display surface */
1019 Rmask = display->format->Rmask;
1020 Gmask = display
1172 SDL_Surface *display; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xxf86dga/
H A DXF86DGA.c397 Display * display; member in struct:__anon29449
456 FindScr(Display *display, int screen) argument
461 if (scrList[i]->display == display &&
605 SDL_NAME(XF86DGADirectVideoLL)(sp->display, sp->screen, 0);
606 XSync(sp->display, False);
665 SDL_NAME(XF86DGADirectVideo)(sp->display, sp->screen, 0);
666 XSync(sp->display, False);
690 sp->display = dis;
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A DXvlib.h100 Display *display; /* Display the event was read from */ member in struct:__anon29456
111 Display *display; /* Display the event was read from */ member in struct:__anon29457
169 Display* /* display */,
180 Display* /* display */,
189 Display* /* display */,
198 Display* /* display */,
215 Display* /* display */,
232 Display* /* display */,
249 Display* /* display */,
266 Display* /* display */,
[all...]
H A Dextutil.h44 * We need to keep a list of open displays since the Xlib display list isn't
45 * public. We also have to per-display info in a separate block since it isn't
50 Display *display; /* which display this is */ member in struct:_XExtDisplayInfo
64 Display* /* display */,
71 Display* /* display */,
78 Display* /* display */,
85 Display* /* display */,
92 Display* /* display */,
99 Display* /* display */,
[all...]
H A Dxf86dga.h105 Display *display; member in struct:__anon29510
115 Display *display; member in struct:__anon29511
125 Display *display; member in struct:__anon29512

Completed in 247 milliseconds

1234567891011>>