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

12 3 4 5 6 7

  /packages/apps/Launcher2/src/com/android/launcher2/
ItemInfo.java 55 * Iindicates the screen in which the shortcut appears.
57 int screen = -1; field in class:ItemInfo
93 screen = info.screen;
107 values.put(LauncherSettings.Favorites.SCREEN, screen);
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_image_c.h 38 extern int ph_SetupImage(_THIS, SDL_Surface* screen);
39 extern void ph_DestroyImage(_THIS, SDL_Surface* screen);
40 extern int ph_SetupUpdateFunction(_THIS, SDL_Surface* screen, Uint32 flags);
SDL_ph_mouse.c 129 if ((this->screen->flags & SDL_FULLSCREEN) == SDL_FULLSCREEN)
132 if ((this->screen->flags & SDL_OPENGL) == SDL_OPENGL)
207 if (((phcursor.pos.x >= abs_x) && (phcursor.pos.x <= abs_x + this->screen->w)) &&
208 ((phcursor.pos.y >= abs_y) && (phcursor.pos.y <= abs_y + this->screen->h)))
  /external/webkit/WebCore/platform/qt/
PlatformScreenQt.cpp 56 return QApplication::desktop()->screen(screenNumber(w))->depth();
70 return QApplication::desktop()->screen(0)->depth();
75 return QApplication::desktop()->screen(screenNumber(w))->numColors() < 2;
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
xf86dgastr.h 46 CARD32 screen B32;
69 CARD32 screen B32;
124 CARD32 screen B32;
147 CARD32 screen B32;
156 CARD32 screen B32;
168 CARD32 screen B32;
177 CARD32 screen B32;
186 CARD32 screen B32;
200 CARD32 screen B32;
214 CARD32 screen B32
    [all...]
xf86dga1str.h 38 CARD16 screen B16;
47 CARD16 screen B16;
72 CARD16 screen B16;
82 CARD16 screen B16;
105 CARD16 screen B16;
116 CARD16 screen B16;
140 CARD16 screen B16;
150 CARD16 screen B16;
174 CARD16 screen B16;
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xxf86vm/
XF86VMode.c 167 SDL_NAME(XF86VidModeSetGamma)(Display *dpy, int screen, SDL_NAME(XF86VidModeGamma) *Gamma)
178 req->screen = screen;
188 SDL_NAME(XF86VidModeGetGamma)(Display *dpy, int screen, SDL_NAME(XF86VidModeGamma) *Gamma)
200 req->screen = screen;
215 SDL_NAME(XF86VidModeGetModeLine)(dpy, screen, dotclock, modeline)
217 int screen;
234 req->screen = screen;
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxvideo.c 87 xcmap[i].pixel = SDL_MapRGB(this->screen->format, c, c, c);
379 D(if(type==0)bug("DIFFERENT from screen.\nAllocated screen format: "));
457 D(bug("Library intialized, locking screen...\n"));
522 /* Determine the default screen depth:
537 D(bug("Init: Setting screen depth to: %ld\n",this->hidden->depth));
591 void CGX_DestroyWindow(_THIS, SDL_Surface *screen)
600 if ( screen ) {
601 screen->flags &= ~(SDL_OPENGL|SDL_OPENGLBLIT);
604 if ( screen && (screen->flags & SDL_FULLSCREEN) )
    [all...]
SDL_cgxmodes.c 264 saved_flags = this->screen->flags;
270 /* Map the fullscreen window to blank the screen */
273 CGX_DestroyWindow(this,this->screen);
277 this->screen->flags = saved_flags;
279 CGX_CreateWindow(this,this->screen,real_w,real_h,GetCyberMapAttr(SDL_Display->RastPort.BitMap,CYBRMATTR_DEPTH),this->screen->flags);
311 CGX_CreateWindow(this,this->screen,this->screen->w,this->screen->h,GetCyberMapAttr(SDL_Display->RastPort.BitMap,CYBRMATTR_DEPTH),this->screen->flags)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/nanox/
SDL_nxvideo.c 47 static void NX_DestroyWindow (_THIS, SDL_Surface * screen) ;
212 /* Determine the current screen size */
256 NX_DestroyImage (this, this -> screen) ;
257 NX_DestroyWindow (this, this -> screen) ;
275 static void NX_DestroyWindow (_THIS, SDL_Surface * screen)
280 if (screen && (screen -> flags & SDL_FULLSCREEN)) {
281 screen -> flags &= ~ SDL_FULLSCREEN ;
300 static int NX_CreateWindow (_THIS, SDL_Surface * screen,
307 NX_DestroyWindow (this, screen) ;
    [all...]
  /external/webkit/WebCore/platform/gtk/
PlatformScreenGtk.cpp 108 GdkScreen* screen = gtk_widget_has_screen(container) ? gtk_widget_get_screen(container) : gdk_screen_get_default();
109 if (!screen)
112 gint monitor = gdk_screen_get_monitor_at_window(screen, GTK_WIDGET(container)->window);
114 gdk_screen_get_monitor_geometry(screen, monitor, &geometry);
147 // rect contains the available space in the whole screen not just in the monitor
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11gl_c.h 42 int screen,
72 int screen );
SDL_x11wm.c 64 screen, so it might need a conversion */
343 /* don't do anything in full-screen mode, because the FSwindow is used
346 if (this->screen->flags & SDL_FULLSCREEN)
387 /* in full-screen mode, you can't move the window */
388 if (this->screen->flags & SDL_FULLSCREEN) {
447 xinerama[0].x_org + (xinerama[0].width - this->screen->w)/2,
448 xinerama[0].y_org + (xinerama[0].height - this->screen->h)/2 );
460 (screen_w - this->screen->w)/2,
461 (screen_h - this->screen->h)/2 );
474 if ( this->screen == NULL )
538 int screen = XDefaultScreen(display); local
567 int screen = XDefaultScreen(display); local
    [all...]
SDL_x11video.c 626 /* use default screen (from $DISPLAY) */
646 /* Determine the current screen size */
650 /* Determine the default screen depth:
707 static void X11_DestroyWindow(_THIS, SDL_Surface *screen)
710 if ( screen ) {
711 screen->flags &= ~(SDL_OPENGL|SDL_OPENGLBLIT);
720 if ( screen && (screen->flags & SDL_FULLSCREEN) ) {
721 screen->flags &= ~SDL_FULLSCREEN;
895 static int X11_CreateWindow(_THIS, SDL_Surface *screen,
    [all...]
  /packages/apps/Launcher2/
print_db.py 125 screen = [] variable
130 screen.append(m)
131 screens.append(screen)
134 screen = screens[row["screen"]] variable
144 screen[j][k] = occupied
145 screen[cellY][cellX] = row
147 for screen in screens:
148 out.write("<br/><b>Screen %d</b><br/>\n" % i)
150 for m in screen
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_video.c 203 video->screen = NULL;
319 * Return a pointer to an array of available screen dimensions for the
779 if ( (video->screen->flags & SDL_OPENGL) &&
934 * the screen, but including an alpha channel.
990 * Update a specific portion of the physical screen
992 void SDL_UpdateRect(SDL_Surface *screen, Sint32 x, Sint32 y, Uint32 w, Uint32 h)
994 if ( screen ) {
999 w = screen->w;
1001 h = screen->h;
1002 if ( (int)(x+w) > screen->w
    [all...]
SDL_gamma.c 149 SDL_Surface *screen = SDL_PublicSurface; local
151 /* Verify the screen parameter */
152 if ( !screen ) {
174 if ( (screen->flags & SDL_HWPALETTE) == SDL_HWPALETTE ) {
175 SDL_Palette *pal = screen->format->palette;
181 SDL_SetPalette(screen, SDL_PHYSPAL,
SDL_yuv.c 94 /* Clip the rectangle to the screen area */
109 if ( (dstx+dstw) > current_video->screen->w ) {
110 int extra = (dstx+dstw - current_video->screen->w);
120 if ( (dsty+dsth) > current_video->screen->h ) {
121 int extra = (dsty+dsth - current_video->screen->h);
  /external/qemu/distrib/sdl-1.2.12/src/video/riscos/
SDL_riscosFullScreenVideo.c 28 Implements RISC OS full screen display.
88 extern int riscos_backbuffer; /* Create a back buffer in system memory for full screen mode */
138 /* Allocate the new pixel format for the screen */
149 regs.r[0] = -1; /* -1 for current screen mode */
151 /* Get screen width in bytes */
152 regs.r[1] = 6; // Screen Width in bytes
159 regs.r[0] = 2; /* Screen area */
163 regs.r[0] = 2; /* Screen area */
167 /* Can't allocate enough screen memory for double buffer */
207 /* Store address of allocated screen bank to be freed later *
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fb3dfx.c 63 if ( dst == this->screen ) {
87 if ( dst == this->screen ) {
111 if ( dst == this->screen ) {
165 if ( dst == this->screen ) {
SDL_fbriva.c 83 if ( dst == this->screen ) {
105 if ( dst == this->screen ) {
129 if ( dst == this->screen ) {
153 if ( dst == this->screen ) {
  /external/webkit/WebKit/mac/WebView/
WebVideoFullscreenController.h 61 - (void)enterFullscreen:(NSScreen *)screen;
  /packages/apps/Settings/src/com/android/settings/
PrivacySettings.java 60 final PreferenceScreen screen = getPreferenceScreen(); local
62 mBackup = (CheckBoxPreference) screen.findPreference(BACKUP_DATA);
63 mAutoRestore = (CheckBoxPreference) screen.findPreference(AUTO_RESTORE);
67 screen.removePreference(findPreference(BACKUP_CATEGORY));
  /external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
SDL_gsyuv.c 182 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->offset % screen->pitch)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/dga/
SDL_dgavideo.c 61 static int DGA_InitHWSurfaces(_THIS, SDL_Surface *screen, Uint8 *base, int size);
91 int screen; local
93 screen = DefaultScreen(dpy);
95 SDL_NAME(XDGAOpenFramebuffer)(dpy, screen) ) {
97 SDL_NAME(XDGACloseFramebuffer)(dpy, screen);
226 extern unsigned char *SDL_NAME(XDGAGetMappedMemory)(int screen);
366 /* Determine the current screen size */
370 /* Determine the current screen depth */
379 SDL_SetError("Couldn't determine screen formats");
449 /* Various screen update functions available *
    [all...]

Completed in 481 milliseconds

12 3 4 5 6 7