Searched refs:screen (Results 76 - 100 of 211) sorted by relevance

123456789

/external/webkit/Source/WebKit/mac/WebView/
H A DWebVideoFullscreenController.h66 - (void)enterFullscreen:(NSScreen *)screen;
H A DWebVideoFullscreenController.mm240 // Is the fullscreen screen the main screen? (Note: this covers the case where only a
241 // single screen is available.) Is the fullscreen screen on the current space? IFF so,
243 if ([fullscreenWindow screen] == [[NSScreen screens] objectAtIndex:0] && isOnActiveSpace)
290 - (void)enterFullscreen:(NSScreen *)screen
292 if (!screen)
293 screen = [NSScreen mainScreen];
296 NSRect endFrame = [screen frame];
301 _backgroundFullscreenWindow = createBackgroundFullscreenWindow([screen fram
[all...]
H A DWebFullScreenController.h73 - (void)enterFullscreen:(NSScreen *)screen;
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DWKFullScreenWindowController.h62 - (void)enterFullScreen:(NSScreen *)screen;
H A DWKFullScreenWindowController.mm152 // Is the fullScreen screen the main screen? (Note: this covers the case where only a
153 // single screen is available.) Is the fullScreen screen on the current space? IFF so,
155 if ([fullScreenWindow screen] == [[NSScreen screens] objectAtIndex:0] && isOnActiveSpace)
161 // The user may have changed the main screen by moving the menu bar, or they may have changed
162 // the Dock's size or location, or they may have changed the fullScreen screen's dimensions.
163 // Update our presentation parameters, and ensure that the full screen window occupies the
164 // entire screen:
167 [window setFrame:[[window screen] fram
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsyuv.c182 bpp = this->screen->format->BytesPerPixel;
213 /* Set up the tags to send the image to the screen */
330 SDL_Surface *screen; local
415 this->screen->format->BytesPerPixel;
419 fprintf(stderr, "Copying image to screen..\n");
424 /* Send the current image to the screen and scale it */
425 screen = this->screen;
428 if ( screen->offset ) {
429 x += (screen
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/dga/
H A DSDL_dgavideo.c56 static int DGA_InitHWSurfaces(_THIS, SDL_Surface *screen, Uint8 *base, int size);
86 int screen; local
88 screen = DefaultScreen(dpy);
90 SDL_NAME(XDGAOpenFramebuffer)(dpy, screen) ) {
92 SDL_NAME(XDGACloseFramebuffer)(dpy, screen);
221 extern unsigned char *SDL_NAME(XDGAGetMappedMemory)(int screen);
362 /* Determine the current screen size */
366 /* Determine the current screen depth */
375 SDL_SetError("Couldn't determine screen formats");
453 /* Various screen updat
625 DGA_InitHWSurfaces(_THIS, SDL_Surface *screen, Uint8 *base, int size) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A Dxf86vmstr.h77 CARD16 screen B16;
186 CARD32 screen B32; /* could be CARD16 but need the pad */
226 CARD32 screen B32; /* could be CARD16 but need the pad */
255 CARD32 screen B32; /* could be CARD16 but need the pad */
279 CARD32 screen B32; /* could be CARD16 but need the pad */
297 CARD32 screen B32; /* could be CARD16 but need the pad */
326 CARD32 screen B32; /* could be CARD16 but need the pad */
349 CARD16 screen B16;
358 CARD16 screen B16;
412 CARD16 screen B1
[all...]
H A Dxf86dga1.h65 int /* screen */,
76 int /* screen */,
87 int /* screen */,
95 int /* screen */,
103 int /* screen */,
112 int /* screen */,
121 int /* screen */,
129 int /* screen */,
137 int /* screen */,
144 int screen
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dwizard_controller.h49 // interacts with screen controllers to move the user between screens.
89 // Shows the first screen defined by |first_screen_name| or by default
91 // of the wizard screen.
97 // Skips OOBE update screen if it's currently shown.
110 // Show specific screen.
120 // Shows images login screen.
123 // Returns a pointer to the current screen or NULL if there's no such
124 // screen.
133 // If being at register screen proceeds to the next one.
169 // Shows update screen an
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/aalib/
H A DSDL_aaevents.c51 if( ! this->screen ) /* Wait till we got the screen initialized */
62 mouse_x = mouse_x * this->screen->w / aa_scrwidth (AA_context);
63 mouse_y = mouse_y * this->screen->h / aa_scrheight (AA_context);
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysvideo.cc280 /* Determine the screen depth */
334 _this->screen->format->BitsPerPixel ) {
341 /* Various screen update functions available */
405 static int BE_SetFullScreen(_THIS, SDL_Surface *screen, int fullscreen) argument
425 int width = screen->w;
426 int height = screen->h;
434 int bpp = screen->format->BitsPerPixel;
450 // Effectivelly set/reset full screen mode. If we are already in
451 // full screen mode, we reset back to windowed mode first so the
460 // dentering the bitmap (in full screen mod
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/dummy/
H A DSDL_nullvideo.c147 /* Determine the screen depth (use default 8-bit depth) */
178 /* Allocate the new pixel format for the screen */
234 if (this->screen->pixels != NULL)
236 SDL_free(this->screen->pixels);
237 this->screen->pixels = NULL;
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbvideo.h192 *x = (long)((char *)dst->pixels - mapped_mem)%this->screen->pitch;
193 *y = (long)((char *)dst->pixels - mapped_mem)/this->screen->pitch;
194 if ( dst == this->screen ) {
H A DSDL_fbvideo.c149 static int FB_InitHWSurfaces(_THIS, SDL_Surface *screen, char *base, int size);
592 /* Determine the current screen depth */
654 printf("Rotating screen clockwise\n");
660 printf("Rotating screen counter clockwise\n");
666 printf("Rotating screen upside down\n");
820 /* Various screen update functions available */
953 /* Set the video mode and get the final screen format */
955 SDL_SetError("Couldn't get console screen info");
1018 /* Set the video mode and get the final screen format */
1020 SDL_SetError("Couldn't get console screen inf
1218 FB_InitHWSurfaces(_THIS, SDL_Surface *screen, char *base, int size) argument
1621 SDL_Surface *screen; local
[all...]
H A DSDL_fbmatrox.c76 if ( dst == this->screen ) {
114 if ( dst == this->screen ) {
141 if ( dst == this->screen ) {
217 if ( dst == this->screen ) {
/external/chromium/chrome/browser/ui/
H A Dwindow_sizer_linux.cc36 GdkScreen* screen = gdk_screen_get_default(); local
38 gdk_screen_get_monitor_geometry(screen, 0, &rect);
61 // Get the available screen space as a gfx::Rect, or return false if
/external/qemu/
H A Dcurses.c43 static console_ch_t screen[160 * 100]; variable
52 line = ((chtype *) screen) + y * width;
178 vga_hw_text_update(screen);
368 ds->surface = qemu_create_displaysurface_from(640, 400, 0, 0, (uint8_t*) screen);
/external/qemu/distrib/sdl-1.2.15/src/video/caca/
H A DSDL_cacaevents.c47 if( ! this->screen ) /* Wait till we got the screen initialised */
/external/qemu/distrib/sdl-1.2.15/src/video/gem/
H A DSDL_gemwm.c71 /* Convert icon to the screen format */
111 if (this->screen == NULL) {
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_wimpvideo.c125 /* Allocate the new pixel format for the screen */
300 /* Show the window on the screen */
429 regs.r[0] = -1; /* Whole screen */
437 /* Toggle to window from full screen */
440 int width = this->screen->w;
441 int height = this->screen->h;
442 int bpp = this->screen->format->BitsPerPixel;
448 this->screen->flags &= ~(SDL_DOUBLEBUF|SDL_HWSURFACE);
452 /* Need to create a sprite for the screen and copy the data to it */
459 SDL_memcpy(data, this->hidden->bank[0], width * height * this->screen
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/svga/
H A DSDL_svgavideo.c260 /* Determine the current screen size */
264 /* Determine the screen depth (use default 8-bit depth) */
335 /* Various screen update functions available */
380 /* Allocate the new pixel format for the screen */
414 /* length of one screen page in bytes */
498 int bpp = this->screen->format->BytesPerPixel;
499 int pitch = this->screen->pitch;
510 src = (unsigned char *)this->screen->pixels + vp;
559 if ( this->screen && (this->screen
[all...]
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestoverlay.c17 SDL_Surface *screen, *pic; variable
463 screen = SDL_SetVideoMode(w, h, desired_bpp, video_flags);
464 if ( screen == NULL ) {
470 screen->flags & SDL_FULLSCREEN ? " fullscreen" : "",
471 screen->w, screen->h, screen->format->BitsPerPixel);
473 (screen->flags&SDL_HWSURFACE) ? "video" : "system");
474 if ( screen->flags & SDL_DOUBLEBUF ) {
532 overlay = SDL_CreateYUVOverlay(pic->w, pic->h, overlay_format, screen);
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/
H A DSDL_QuartzWM.m143 Cocoa sets the origin at the lower left corner of the window/screen
149 /* Convert Cocoa screen coordinate to Cocoa window coordinate */
157 /* Convert Cocoa window coordinate to Cocoa screen coordinate */
310 /* determine if the window is fully visible on the current screen configuration */
325 NSScreen* screen = [ screens objectAtIndex: n ];
326 NSRect vis = [ screen visibleFrame ];
328 //printf( "screen %d/%d frame (%d,%d) (%d,%d)\n", n+1, count,
369 /* we need to compute which screen has the most window pixels */
371 NSScreen* screen = [ screens objectAtIndex: n ];
372 NSRect vis = [ screen visibleFram
[all...]
/external/quake/quake/src/QW/client/
H A Dqwcl.mak124 -@erase "$(INTDIR)\screen.obj"
240 "$(INTDIR)\screen.obj" \
397 -@erase "$(INTDIR)\screen.obj"
398 -@erase "$(INTDIR)\screen.sbr"
505 "$(INTDIR)\screen.sbr" \
598 "$(INTDIR)\screen.obj" \
1112 ".\screen.h"\
1197 ".\screen.h"\
1251 ".\screen.h"\
1303 ".\screen
[all...]

Completed in 352 milliseconds

123456789