HomeSort by relevance Sort by last modified time
    Searched refs:screen (Results 1 - 25 of 308) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/EWSTools/
boot.sh 30 screen -c ~/tools/screen-config
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/cinematic/events/
GuiTrack.java 50 protected String screen; field in class:GuiTrack
56 public GuiTrack(Nifty nifty, String screen) {
57 this.screen = screen;
61 public GuiTrack(Nifty nifty, String screen, float initialDuration) {
63 this.screen = screen;
67 public GuiTrack(Nifty nifty, String screen, LoopMode loopMode) {
69 this.screen = screen;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/nanox/
SDL_nximage_c.h 30 extern int NX_SetupImage (_THIS, SDL_Surface * screen) ;
31 extern void NX_DestroyImage (_THIS, SDL_Surface * screen) ;
32 extern int NX_ResizeImage (_THIS, SDL_Surface * screen, Uint32 flags) ;
  /external/webkit/Source/WebCore/platform/haiku/
ScreenHaiku.cpp 29 #include "Screen.h"
39 #include <interface/Screen.h>
46 BScreen screen; local
47 // FIXME: We assume this screen is valid
48 return FloatRect(screen.Frame());
60 BScreen screen; local
61 // FIXME: We assume this screen is valid
62 color_space cs = screen.ColorSpace();
80 BScreen screen; local
81 // FIXME: We assume this screen is vali
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
graywin.c 2 /* Simple program: Fill a colormap with gray and stripe it down the screen */
18 void DrawBox(SDL_Surface *screen, int X, int Y, int width, int height)
38 if (screen->format->BytesPerPixel==1)
44 color = SDL_MapRGB(screen->format, randc, randc, randc);
48 SDL_FillRect(screen, &area, color);
49 if ( screen->flags & SDL_DOUBLEBUF ) {
50 SDL_Flip(screen);
52 SDL_UpdateRects(screen, 1, &area);
56 void DrawBackground(SDL_Surface *screen)
68 if ( SDL_LockSurface(screen) < 0 )
107 SDL_Surface *screen; local
136 SDL_Surface *screen; local
    [all...]
testbitmap.c 18 SDL_Surface *LoadXBM(SDL_Surface *screen, int w, int h, Uint8 *bits)
55 SDL_Surface *screen; local
99 if ( (screen=SDL_SetVideoMode(640,480,video_bpp,videoflags)) == NULL ) {
112 SDL_SetColors(screen, palette, 0, 256);
116 if ( SDL_LockSurface(screen) < 0 ) {
121 buffer=(Uint8 *)screen->pixels;
122 if (screen->format->BytesPerPixel!=2) {
123 for ( i=0; i<screen->h; ++i ) {
124 memset(buffer,(i*255)/screen->h, screen->pitch)
    [all...]
testalpha.c 2 /* Simple program: Fill a colormap with gray and stripe it down the screen,
3 Then move an alpha valued sprite around the screen.
22 /* Fill the screen with a gradient */
23 static void FillBackground(SDL_Surface *screen)
32 if ( SDL_LockSurface(screen) < 0 ) {
37 buffer=(Uint8 *)screen->pixels;
38 if (screen->format->BytesPerPixel!=2) {
39 for ( i=0; i<screen->h; ++i ) {
40 memset(buffer,(i*255)/screen->h, screen->w*screen->format->BytesPerPixel)
325 SDL_Surface *screen; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_cursor_c.h 29 extern void SDL_DrawCursor(SDL_Surface *screen);
30 extern void SDL_DrawCursorNoLock(SDL_Surface *screen);
31 extern void SDL_EraseCursor(SDL_Surface *screen);
32 extern void SDL_EraseCursorNoLock(SDL_Surface *screen);
33 extern void SDL_UpdateCursor(SDL_Surface *screen);
SDL_cursor.c 304 if (this->screen->pitch == 0) {
305 x += this->screen->offset / this->screen->format->BytesPerPixel;
306 y += this->screen->offset;
308 x += (this->screen->offset % this->screen->pitch) /
309 this->screen->format->BytesPerPixel;
310 y += (this->screen->offset / this->screen->pitch);
371 static void SDL_DrawCursorFast(SDL_Surface *screen, SDL_Rect *area
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11image_c.h 26 extern int X11_SetupImage(_THIS, SDL_Surface *screen);
27 extern void X11_DestroyImage(_THIS, SDL_Surface *screen);
28 extern int X11_ResizeImage(_THIS, SDL_Surface *screen, Uint32 flags);
SDL_x11image.c 45 static void try_mitshm(_THIS, SDL_Surface *screen)
53 shminfo.shmid = shmget(IPC_PRIVATE, screen->h*screen->pitch,
76 screen->pixels = shminfo.shmaddr;
80 /* Various screen update functions available */
84 int X11_SetupImage(_THIS, SDL_Surface *screen)
87 try_mitshm(this, screen);
92 screen->w, screen->h);
97 screen->pixels = NULL
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
xme.h 32 extern int XiGMiscQueryViews(Display *dpy, int screen,
34 extern int XiGMiscQueryResolutions(Display *dpy, int screen, int view,
37 extern void XiGMiscChangeResolution(Display *dpy, int screen, int view,
xf86dga.h 106 int screen; member in struct:__anon13423
116 int screen; member in struct:__anon13424
126 int screen; member in struct:__anon13425
155 int screen,
161 int screen,
167 int screen
172 int screen
177 int screen,
185 int screen,
191 int screen,
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
fullscreen_window.h 15 // Initialize a FullscreenWindow for the given screen.
17 - (id)initForScreen:(NSScreen*)screen;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/preferences/
SearchableItemsFragment.java 33 protected void handlePreferenceGroup(PreferenceGroup screen) {
34 getController().handlePreference(screen);
  /external/chromium/chrome/browser/tab_contents/
web_drag_source_win.cc 20 gfx::Point* screen) {
23 screen->SetPoint(cursor_pos.x, cursor_pos.y);
61 gfx::Point screen; local
62 GetCursorPositions(source_wnd_, &client, &screen);
64 screen.x(), screen.y(),
84 gfx::Point screen; local
85 GetCursorPositions(source_wnd_, &client, &screen);
87 client.x(), client.y(), screen.x(), screen.y()
104 gfx::Point screen; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsmouse.c 53 SDL_Surface *screen; local
70 screen = this->screen;
71 saved_pixels = screen->pixels;
72 screen->pixels = mapped_mem + screen->offset;
75 SDL_EraseCursorNoLock(screen);
92 if ( (SDL_cursorstate & CURSOR_VISIBLE) && screen->pixels ) {
93 SDL_DrawCursorNoLock(screen);
98 screen->pixels = saved_pixels
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
PreferenceLoaderTest.java 45 PreferenceScreen screen = prefLoader.inflatePreferences(new Activity(), "xml/preferences"); local
46 assertThatScreenMatchesExpected(screen);
51 PreferenceScreen screen = prefLoader.inflatePreferences(new Activity(), R.xml.preferences); local
52 assertThatScreenMatchesExpected(screen);
68 protected void assertThatScreenMatchesExpected(PreferenceScreen screen) {
69 assertThat(screen.getPreferenceCount(), equalTo(6));
71 assertThat(screen.getPreference(0), instanceOf(PreferenceCategory.class));
72 assertThat(((PreferenceCategory)screen.getPreference(0)).getPreference(0), instanceOf(Preference.class));
74 assertThat(screen.getPreference(1), instanceOf(CheckBoxPreference.class));
75 assertThat(screen.getPreference(2), instanceOf(EditTextPreference.class))
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/animation/
SubtitleTrack.java 19 public SubtitleTrack(Nifty nifty, String screen,float initialDuration, String text) {
20 super(nifty, screen, initialDuration);
27 nifty.getScreen(screen).findElementByName("text").getRenderer(TextRenderer.class).setText(text);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Application/
main.c 18 SDL_Surface *screen; local
32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
33 if (screen == NULL) {
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/
main.c 18 SDL_Surface *screen; local
32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
33 if (screen == NULL) {
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/
main.c 18 SDL_Surface *screen; local
32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
33 if (screen == NULL) {
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/
main.c 18 SDL_Surface *screen; local
32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
33 if (screen == NULL) {
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Application/
main.c 18 SDL_Surface *screen; local
32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
33 if (screen == NULL) {
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/
main.c 18 SDL_Surface *screen; local
32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
33 if (screen == NULL) {

Completed in 1274 milliseconds

1 2 3 4 5 6 7 8 91011>>