HomeSort by relevance Sort by last modified time
    Searched refs:screen (Results 76 - 100 of 160) sorted by null

1 2 34 5 6 7

  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_wimppoll.c 168 message[3] = message[1] + (this->screen->w << this->hidden->xeig);
169 message[4] = message[2] + (this->screen->h << this->hidden->yeig);
  /external/webkit/WebCore/platform/graphics/filters/
FEBlend.cpp 86 static unsigned char screen(unsigned char colorA, unsigned char colorB, unsigned char, unsigned char) function in namespace:WebCore
124 static const BlendType callEffect[] = {unknown, normal, multiply, screen, darken, lighten};
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherModel.java 132 * <container, screen, cellX, cellY>
135 int screen, int cellX, int cellY) {
138 addItemToDatabase(context, item, container, screen, cellX, cellY, false);
141 moveItemInDatabase(context, item, container, screen, cellX, cellY);
146 * Move an item in the DB to a new <container, screen, cellX, cellY>
148 static void moveItemInDatabase(Context context, ItemInfo item, long container, int screen,
151 item.screen = screen;
162 values.put(LauncherSettings.Favorites.SCREEN, item.screen);
    [all...]
  /frameworks/base/core/java/android/preference/
PreferenceManager.java 694 void addPreferencesScreen(DialogInterface screen) {
701 mPreferencesScreens.add(screen);
705 void removePreferencesScreen(DialogInterface screen) {
712 mPreferencesScreens.remove(screen);
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xinerama/
Xinerama.c 207 req->screen = screen_num; /* need to define */
216 panoramiX_info->screen = rep.screen;
224 namely, the omission of the screen origin. The new interface is
  /external/webkit/WebCore/page/
DOMWindow.cpp 66 #include "Screen.h"
279 // 3) Constrain window rect to within the top and left boundaries of the screen rect
281 // screen rect.
283 // the screen rect.
284 void DOMWindow::adjustWindowRect(const FloatRect& screen, FloatRect& window, const FloatRect& pendingChanges)
287 ASSERT(isfinite(screen.x()));
288 ASSERT(isfinite(screen.y()));
289 ASSERT(isfinite(screen.width()));
290 ASSERT(isfinite(screen.height()));
306 // Resize the window to between 100 and the screen width and height
481 Screen* DOMWindow::screen() const function in class:WebCore::DOMWindow
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebVideoFullscreenController.mm 224 - (void)enterFullscreen:(NSScreen *)screen;
226 if (!screen)
227 screen = [NSScreen mainScreen];
230 NSRect endFrame = [screen frame];
235 _backgroundFullscreenWindow = createBackgroundFullscreenWindow([screen frame], [[self window] level]-1);
237 [_backgroundFullscreenWindow setFrame:[screen frame] display:NO];
  /external/quake/quake/src/WinQuake/
sys_dos.cpp 567 byte screen[80*25*2]; local
573 // load the sell screen before shuting everything down
579 memcpy (screen, d, sizeof(screen));
581 // write the version number directly to the end screen
584 screen[0*80*2 + 72*2 + i*2] = ver[i];
588 // do the text mode sell screen
591 memcpy ((void *)real2ptr(0xb8000), screen,80*25*2);
vid_sunxil.cpp 21 // to screen
356 // VID_FullScreen - open the window in full screen mode
439 Con_Printf( "Using screen %d: %dx%d\n", x_screen, x_screen_width, x_screen_height );
462 template.screen = x_screen;
475 int screen; local
476 screen = XDefaultScreen(x_disp);
478 XVisualIDFromVisual(XDefaultVisual(x_disp, screen));
499 printf(" screen %d\n", x_visinfo->screen);
550 x_visinfo->screen), x_vis, AllocNone)
    [all...]
  /sdk/sdkstats/src/com/android/sdkstats/
SdkStatsService.java 383 final Rectangle screen = currentDisplay.getClientArea();
384 shell.setBounds(screen.x + screen.width / 2 - size.x / 2, screen.y + screen.height
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_surface.c 43 SDL_Surface *screen; local
55 screen = SDL_PublicSurface;
57 screen = NULL;
59 if ( screen && ((screen->flags&SDL_HWSURFACE) == SDL_HWSURFACE) ) {
95 depth = screen->format->BitsPerPixel;
96 Rmask = screen->format->Rmask;
97 Gmask = screen->format->Gmask;
98 Bmask = screen->format->Bmask;
99 Amask = screen->format->Amask
    [all...]
SDL_sysvideo.h 96 changes are reflected in the logical palette of the screen
226 /* determine if the window is fully visible on screen */
278 SDL_Surface *screen; member in struct:SDL_VideoDevice
429 #define SDL_VideoSurface (current_video->screen)
  /external/qemu/distrib/sdl-1.2.12/src/video/aalib/
SDL_aavideo.c 179 /* Determine the screen depth (use default 8-bit depth) */
242 /* Various screen update functions available */
265 /* Allocate the new pixel format for the screen */
290 local_this->hidden->x_ratio = ((double)aa_imgwidth(context)) / ((double)local_this->screen->w);
291 local_this->hidden->y_ratio = ((double)aa_imgheight(context)) / ((double)local_this->screen->h);
387 this->screen->pixels = NULL;
  /external/qemu/distrib/sdl-1.2.12/src/video/picogui/
SDL_pgvideo.c 169 /* Determine the current screen size */
173 /* Determine the screen depth.
203 /* Allocate the new pixel format for the screen */
327 if (this->screen->pixels != NULL)
329 shmdt(this->screen->pixels);
330 this->screen->pixels = NULL;
  /external/qemu/distrib/sdl-1.2.12/src/video/qtopia/
SDL_sysvideo.cc 47 /* Name of the environment variable used to invert the screen rotation or not:
49 !=0 : Screen is 270? rotated
50 0: Screen is 90? rotated*/
217 /* Determine the screen depth */
229 /* Determine the current screen size */
253 _this->screen->format->BitsPerPixel ) {
260 /* Various screen update functions available */
264 static int QT_SetFullScreen(_THIS, SDL_Surface *screen, int fullscreen)
306 SDL_SetError("Couldn't create screen bitmap");
381 _this->screen->pixels = NULL
    [all...]
  /external/webkit/WebCore/plugins/gtk/
gtk2xtbin.h 141 Screen *screen; /* window's screen */ member in struct:_CorePart
  /external/qemu/distrib/sdl-1.2.12/src/video/directfb/
SDL_DirectFB_video.c 75 /* Various screen update functions available */
988 HIDDEN->c2frame->StretchBlit(HIDDEN->c2frame, this->screen->hwdata->surface, &HIDDEN->c2ssize, &HIDDEN->c2dsize);
990 HIDDEN->c2frame->Blit(HIDDEN->c2frame, this->screen->hwdata->surface, NULL, HIDDEN->c2dsize.x, HIDDEN->c2dsize.y);
1001 IDirectFBSurface *surface = this->screen->hwdata->surface;
1056 IDirectFBPalette *palette = this->screen->hwdata->palette;
1090 if (this->screen && this->screen->hwdata)
1092 IDirectFBSurface *surface = this->screen->hwdata->surface;
1093 IDirectFBPalette *palette = this->screen->hwdata->palette;
1101 this->screen->hwdata->surface = NULL
    [all...]
  /external/webkit/WebCore/platform/win/
PopupMenuWin.cpp 285 // r is in absolute document coordinates, but we want to be in screen coordinates
290 // Then, translate to screen coordinates
342 // The popup needs to stay within the bounds of the screen and not overlap any toolbars
343 FloatRect screen = screenAvailableRect(v); local
345 // Check that we don't go off the screen vertically
346 if (popupRect.bottom() > screen.height()) {
347 // The popup will go off the screen, so try placing it above the client
350 if ((rScreenCoords.y() + rScreenCoords.height() / 2) < (screen.height() / 2)) {
352 popupRect.setHeight(screen.height() - popupRect.y());
364 // Check that we don't go off the screen horizontall
    [all...]
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_video.h 125 #define SDL_FULLSCREEN 0x80000000 /* Surface is a full screen display */
238 * you won't be able to set full-screen display modes.
279 * Return a pointer to an array of available screen dimensions for the
328 * applications that redraw the entire screen on every update.
351 * Makes sure the given list of rectangles is updated on the given screen.
353 * screen.
354 * These functions should not be called while 'screen' is locked.
357 (SDL_Surface *screen, int numrects, SDL_Rect *rects);
359 (SDL_Surface *screen, Sint32 x, Sint32 y, Uint32 w, Uint32 h);
366 * to calling SDL_UpdateRect(screen, 0, 0, 0, 0)
    [all...]
  /external/webkit/WebKit/android/WebCoreSupport/
ChromeClientAndroid.cpp 43 #include "Screen.h"
169 WTF::PassRefPtr<WebCore::Screen> screen = WebCore::Screen::create(frame);
171 || (features.heightSet && features.height < screen.get()->height()
172 && features.widthSet && features.width < screen.get()->width())
254 * the screen with an input put box. First param is the text, the second is the default value for
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_video.h 125 #define SDL_FULLSCREEN 0x80000000 /* Surface is a full screen display */
238 * you won't be able to set full-screen display modes.
279 * Return a pointer to an array of available screen dimensions for the
328 * applications that redraw the entire screen on every update.
351 * Makes sure the given list of rectangles is updated on the given screen.
353 * screen.
354 * These functions should not be called while 'screen' is locked.
357 (SDL_Surface *screen, int numrects, SDL_Rect *rects);
359 (SDL_Surface *screen, Sint32 x, Sint32 y, Uint32 w, Uint32 h);
366 * to calling SDL_UpdateRect(screen, 0, 0, 0, 0)
    [all...]
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_video.h 125 #define SDL_FULLSCREEN 0x80000000 /* Surface is a full screen display */
238 * you won't be able to set full-screen display modes.
279 * Return a pointer to an array of available screen dimensions for the
328 * applications that redraw the entire screen on every update.
351 * Makes sure the given list of rectangles is updated on the given screen.
353 * screen.
354 * These functions should not be called while 'screen' is locked.
357 (SDL_Surface *screen, int numrects, SDL_Rect *rects);
359 (SDL_Surface *screen, Sint32 x, Sint32 y, Uint32 w, Uint32 h);
366 * to calling SDL_UpdateRect(screen, 0, 0, 0, 0)
    [all...]
  /prebuilt/windows/sdl/host/include/SDL/
SDL_video.h 137 #define SDL_FULLSCREEN 0x80000000 /* Surface is a full screen display */
242 * you won't be able to set full-screen display modes.
283 * Return a pointer to an array of available screen dimensions for the
332 * applications that redraw the entire screen on every update.
355 * Makes sure the given list of rectangles is updated on the given screen.
357 * screen.
358 * These functions should not be called while 'screen' is locked.
361 (SDL_Surface *screen, int numrects, SDL_Rect *rects);
363 (SDL_Surface *screen, Sint32 x, Sint32 y, Uint32 w, Uint32 h);
370 * to calling SDL_UpdateRect(screen, 0, 0, 0, 0)
    [all...]
  /prebuilt/windows/sdl/include/SDL/
SDL_video.h 125 #define SDL_FULLSCREEN 0x80000000 /* Surface is a full screen display */
238 * you won't be able to set full-screen display modes.
279 * Return a pointer to an array of available screen dimensions for the
328 * applications that redraw the entire screen on every update.
351 * Makes sure the given list of rectangles is updated on the given screen.
353 * screen.
354 * These functions should not be called while 'screen' is locked.
357 (SDL_Surface *screen, int numrects, SDL_Rect *rects);
359 (SDL_Surface *screen, Sint32 x, Sint32 y, Uint32 w, Uint32 h);
366 * to calling SDL_UpdateRect(screen, 0, 0, 0, 0)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/macrom/
SDL_romvideo.c 211 /* Determine the current screen size */
261 if ( this->screen->format->BitsPerPixel == format->BitsPerPixel ) {
324 RectRgn(tempRgn, &(*gd)->gdRect); /* Get the whole screen */
450 /* Various screen update functions available */
516 /* Create the fullscreen window and use screen bits */
677 if ( (this->screen->flags & SDL_FULLSCREEN) == SDL_FULLSCREEN ) {
688 /* Set the screen palette and update the display */
698 if ( (this->screen->flags & SDL_FULLSCREEN) == SDL_FULLSCREEN )
715 ROM_UnsetVideoMode(this, this->screen);

Completed in 505 milliseconds

1 2 34 5 6 7