Searched defs:display (Results 1 - 25 of 136) sorted by relevance

123456

/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysyuv.h57 SDL_Surface *display; member in struct:private_yuvhwdata
65 extern SDL_Overlay* BE_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface* display);
/external/quake/quake/src/QW/client/
H A Dconsole.h31 int display; // bottom of console displays this line member in struct:__anon11912
/external/webkit/Source/WebKit/chromium/src/x11/
H A DWebScreenInfoFactory.cpp40 WebScreenInfo WebScreenInfoFactory::screenInfo(Display* display, int screenNumber) argument
46 int displayWidth = XDisplayWidth(display, screenNumber);
47 int displayHeight = XDisplayHeight(display, screenNumber);
48 results.depth = XDisplayPlanes(display, screenNumber);
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A Dmain.h26 egl::Display *display; member in struct:gl::Current
29 void makeCurrent(Context *context, egl::Display *display, egl::Surface *surface);
H A Dmain.cpp41 current->display = NULL;
76 void makeCurrent(Context *context, egl::Display *display, egl::Surface *surface) argument
81 current->display = display;
83 if (context && display && surface)
85 context->makeCurrent(display, surface);
100 return current->display;
105 egl::Display *display = getDisplay(); local
107 return display->getDevice();
/external/chromium/chrome/browser/ui/window_snapshot/
H A Dwindow_snapshot_x.cc30 Display* display = GDK_WINDOW_XDISPLAY(gdk_window); local
33 if (XGetWindowAttributes(display, win, &attr) == 0) {
38 display, win, 0, 0, attr.width, attr.height, AllPlanes, ZPixmap);
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
H A DRenderImageJme.java49 public RenderImageJme(String filename, boolean linear, NiftyJmeDisplay display){ argument
56 texture = (Texture2D) display.getAssetManager().loadTexture(key);
H A DRenderFontJme.java41 private NiftyJmeDisplay display; field in class:RenderFontJme
50 public RenderFontJme(String name, NiftyJmeDisplay display) { argument
51 this.display = display;
52 font = display.getAssetManager().loadFont(name);
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
H A Dmain.h21 EGLDisplay display; member in struct:egl::Current
/external/webkit/Source/WebCore/platform/brew/
H A DScreenBrew.cpp51 IDisplay* display = reinterpret_cast<AEEApplet*>(GETAPPINSTANCE())->m_pIDisplay; local
52 RefPtr<IBitmap> bitmap = adoptRef(IDisplay_GetDestination(display));
/external/webkit/Source/WebCore/platform/efl/
H A DPlatformScreenEfl.cpp72 Ecore_X_Display* display = ecore_x_display_get(); local
73 int def = DefaultScreen(display);
74 Screen* screen = ScreenOfDisplay(display, def);
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DEGLDisplayOpenVG.h45 EGLDisplay display() const { return m_display; } function in class:WebCore::EGLDisplayOpenVG
73 EGLDisplayOpenVG(const EGLDisplay& display);
H A DSurfaceOpenVG.cpp48 SurfaceOpenVG::SurfaceOpenVG(const IntSize& size, const EGLDisplay& display, EGLConfig* confPtr, EGLint* errorCode) argument
50 , m_eglDisplay(display)
67 SurfaceOpenVG::SurfaceOpenVG(EGLClientBuffer buffer, EGLenum bufferType, const EGLDisplay& display, EGLConfig* confPtr, EGLint* errorCode) argument
69 , m_eglDisplay(display)
86 SurfaceOpenVG::SurfaceOpenVG(EGLNativeWindowType window, const EGLDisplay& display, EGLConfig* confPtr) argument
88 , m_eglDisplay(display)
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DLayerTreeHost.h74 virtual void display(UpdateInfo&) { ASSERT_NOT_REACHED(); } function in class:WebKit::LayerTreeHost
/external/chromium/chrome/browser/chromeos/input_method/
H A Dxkeyboard_unittest.cc51 // Returns true if X display is available.
53 Display* display = XOpenDisplay(NULL); local
54 if (!display) {
57 XCloseDisplay(display);
/external/chromium/chrome/browser/notifications/
H A Dballoon_collection_linux.cc55 GdkDisplay* display = gdk_screen_get_display(screen); local
57 gdk_display_get_pointer(display, NULL, &x, &y, NULL);
/external/qemu/android/
H A Dandroid.h37 const char* display; member in struct:__anon10740
48 const char* display; member in struct:__anon10741
/external/webkit/Source/WebCore/platform/gtk/
H A DPlatformScreenGtk.cpp125 GdkDisplay* display = gdk_window_get_display(rootWindow); local
126 Atom xproperty = gdk_x11_get_xatom_by_name_for_display(display, "_NET_WORKAREA");
133 int xRes = XGetWindowProperty(GDK_DISPLAY_XDISPLAY(display), GDK_WINDOW_XWINDOW(rootWindow), xproperty,
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
H A Djstemplate_test.js90 display: true
95 assertFalse(/display:\s*none/.test(h));
97 d.display = false;
101 assertTrue(/display:\s*none/.test(h));
111 assertFalse(/display:\s*none/.test(h));
117 assertTrue(/display:\s*none/.test(h));
/external/dropbear/
H A Dsvr-x11fwd.c131 char display[20]; /* space for "localhost:12345.123" */ local
140 val = snprintf(display, sizeof(display), "localhost:%d.%d",
142 if (val < 0 || val >= (int)sizeof(display)) {
147 addnewvar("DISPLAY", display);
150 val = snprintf(display, sizeof(display), "unix:%d.%d",
152 if (val < 0 || val >= (int)sizeof(display)) {
161 display, chansess->x11authprot, chansess->x11authcookie);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DTimeLineGraphItem.java33 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial,boolean isBaseline) { argument
34 this(title, description, value, color,display, timestamp,isSpecial);
38 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial) { argument
39 this(title, description, value, color,display, timestamp);
43 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp) { argument
45 this.displayDescription=display;
/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
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_phyuv.c71 SDL_Overlay* ph_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface* display) argument
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/
H A DSDL_ps3yuv.c59 SDL_Surface *display; member in struct:private_yuvhwdata
82 SDL_Overlay *PS3_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display) { argument
84 if ((display->format->BytesPerPixel != 2) &&
85 (display->format->BytesPerPixel != 3) &&
86 (display->format->BytesPerPixel != 4))
133 hwdata->display = display;
225 SDL_Surface *display; local
228 display = hwdata->display;
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DGaneshContext.cpp86 EGLDisplay display; local
93 display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
98 EGLBoolean returnValue = eglInitialize(display, &majorVersion, &minorVersion);
112 eglChooseConfig(display, configAttribs, &m_surfaceConfig, 1, &numConfigs);
120 m_surfaceContext = eglCreateContext(display, m_surfaceConfig, NULL, contextAttribs);
123 display = eglGetCurrentDisplay();
140 tileQueue->m_eglSurface = eglCreateWindowSurface(display, m_surfaceConfig, anw, NULL);
146 EGLBoolean returnValue = eglMakeCurrent(display, tileQueue->m_eglSurface, tileQueue->m_eglSurface, m_surfaceContext);

Completed in 571 milliseconds

123456