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

1 2 3

  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_expose.c 33 int posted; local
41 posted = 0;
46 posted = 1;
50 return(posted);
SDL_active.c 54 int posted; local
73 posted = 0;
81 posted = 1;
94 return(posted);
SDL_resize.c 40 int posted; local
59 posted = 0;
66 posted = 1;
70 return(posted);
SDL_mouse.c 115 int posted; local
179 posted = 0;
190 posted = 1;
194 return(posted);
200 int posted; local
255 posted = 0;
262 posted = 1;
266 return(posted);
SDL_quit.c 112 int posted; local
114 posted = 0;
119 posted = 1;
123 return(posted);
  /external/chromium_org/chrome/browser/google_apis/
task_util.cc 16 const bool posted = relay_proxy->PostTask(FROM_HERE, task); local
17 DCHECK(posted);
  /external/qemu/distrib/sdl-1.2.15/src/video/dga/
SDL_dgaevents.c 46 int posted; local
51 posted = 0;
58 posted = SDL_PrivateMouseMotion(0, 1,
66 posted = SDL_PrivateMouseButton(SDL_PRESSED,
73 posted = SDL_PrivateMouseButton(SDL_RELEASED,
110 posted = SDL_PrivateKeyboard(SDL_PRESSED, &keysym);
130 posted = SDL_PrivateKeyboard(SDL_RELEASED, &keysym);
134 return(posted);
  /external/qemu/distrib/sdl-1.2.15/src/video/caca/
SDL_cacaevents.c 43 int posted = 0; local
51 posted = 0;
77 posted += SDL_PrivateKeyboard((event & CACA_EVENT_KEY_PRESS) ? SDL_PRESSED : SDL_RELEASED, &keysym);
85 posted += SDL_PrivateMouseButton((event & CACA_EVENT_MOUSE_PRESS) ? SDL_PRESSED : SDL_RELEASED, button, 0, 0);
91 posted += SDL_PrivateMouseMotion(0, 0, new_x, new_y);
93 } while ( posted );
  /external/qemu/distrib/sdl-1.2.15/src/video/aalib/
SDL_aaevents.c 44 int posted = 0; local
55 posted = 0;
69 posted += SDL_PrivateMouseButton(SDL_PRESSED, 1, 0, 0);
73 posted += SDL_PrivateMouseButton(SDL_RELEASED, 1, 0, 0);
78 posted += SDL_PrivateMouseButton(SDL_PRESSED, 2, 0, 0);
82 posted += SDL_PrivateMouseButton(SDL_RELEASED, 2, 0, 0);
87 posted += SDL_PrivateMouseButton(SDL_PRESSED, 3, 0, 0);
91 posted += SDL_PrivateMouseButton(SDL_RELEASED, 3, 0, 0);
96 posted += SDL_PrivateMouseMotion(0, 0, mouse_x, mouse_y);
109 posted += SDL_PrivateKeyboard(SDL_PRESSED, TranslateKey(evt, &keysym))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
SDL_epocevents.cpp 249 int posted = 0; local
280 posted += SDL_PrivateMouseMotion(0, 0, mousePos.iX, mousePos.iY); /* Absolute position on screen */
285 posted += SDL_PrivateMouseButton(SDL_PRESSED, SDL_BUTTON_LEFT, 0, 0);
288 posted += SDL_PrivateMouseButton(SDL_RELEASED, SDL_BUTTON_LEFT, 0, 0);
291 posted += SDL_PrivateMouseButton(SDL_PRESSED, SDL_BUTTON_RIGHT, 0, 0);
294 posted += SDL_PrivateMouseButton(SDL_RELEASED, SDL_BUTTON_RIGHT, 0, 0);
297 posted += SDL_PrivateMouseButton(SDL_PRESSED, SDL_BUTTON_MIDDLE, 0, 0);
300 posted += SDL_PrivateMouseButton(SDL_RELEASED, SDL_BUTTON_MIDDLE, 0, 0);
314 posted += SDL_PrivateMouseButton(SDL_PRESSED, SDL_BUTTON_LEFT, 0, 0);
335 posted += SDL_PrivateKeyboard(SDL_PRESSED, &keysym)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
SDL_epocevents.cpp 63 int posted = 0; local
94 posted += SDL_PrivateMouseMotion(0, 0, mousePos.iX, mousePos.iY); /* Absolute position on screen */
99 posted += SDL_PrivateMouseButton(SDL_PRESSED, SDL_BUTTON_LEFT, 0, 0);
102 posted += SDL_PrivateMouseButton(SDL_RELEASED, SDL_BUTTON_LEFT, 0, 0);
105 posted += SDL_PrivateMouseButton(SDL_PRESSED, SDL_BUTTON_RIGHT, 0, 0);
108 posted += SDL_PrivateMouseButton(SDL_RELEASED, SDL_BUTTON_RIGHT, 0, 0);
111 posted += SDL_PrivateMouseButton(SDL_PRESSED, SDL_BUTTON_MIDDLE, 0, 0);
114 posted += SDL_PrivateMouseButton(SDL_RELEASED, SDL_BUTTON_MIDDLE, 0, 0);
128 posted += SDL_PrivateMouseButton(SDL_PRESSED, SDL_BUTTON_LEFT, 0, 0);
149 posted += SDL_PrivateKeyboard(SDL_PRESSED, &keysym)
292 int posted = 0; \/\/ !! Do we need this? local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/joystick/
SDL_joystick.c 434 int posted; local
445 posted = 0;
454 posted = 1;
459 return(posted);
464 int posted; local
475 posted = 0;
484 posted = 1;
489 return(posted);
495 int posted; local
507 posted = 0
527 int posted; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_events.c 58 int posted; local
66 posted = SDL_PrivateMouseMotion( 0, 1, dx, dy );
72 return (posted);
112 int posted; local
120 posted = 0;
128 posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
132 posted = SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS);
147 posted = ph_WarpedMotion(this, phevent);
151 posted = SDL_PrivateMouseMotion(0, 0, rect->ul.x, rect->ul.y);
163 posted = SDL_PrivateMouseButton(SDL_PRESSED, buttons, 0, 0)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
network_configuration_updater.cc 52 bool posted = BrowserThread::DeleteSoon( local
54 if (!posted)
  /external/chromium_org/net/base/
file_stream_context.cc 71 const bool posted = base::PostTaskAndReplyWithResult( local
77 DCHECK(posted);
113 const bool posted = base::PostTaskAndReplyWithResult( local
122 DCHECK(posted);
136 const bool posted = base::PostTaskAndReplyWithResult( local
144 DCHECK(posted);
220 const bool posted = task_runner_->PostTaskAndReply( local
224 DCHECK(posted);
file_stream_context_posix.cc 89 const bool posted = base::PostTaskAndReplyWithResult( local
97 DCHECK(posted);
116 const bool posted = base::PostTaskAndReplyWithResult( local
124 DCHECK(posted);
  /external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_events.c 46 static int posted = 0; variable
61 posted += SDL_PrivateMouseButton(SDL_PRESSED,
65 posted += SDL_PrivateMouseButton(SDL_RELEASED,
69 posted += SDL_PrivateKeyboard(SDL_PRESSED, DirectFB_TranslateKey(&evt, &keysym));
72 posted += SDL_PrivateKeyboard(SDL_RELEASED, DirectFB_TranslateKey(&evt, &keysym));
78 posted += SDL_PrivateMouseMotion(0, 1, evt.axisrel, 0);
80 posted += SDL_PrivateMouseMotion(0, 1, 0, evt.axisrel);
89 posted += SDL_PrivateMouseMotion(0, 0, last_x, last_y);
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11events.c 337 int posted; local
348 posted = SDL_PrivateMouseMotion(0, 1, deltax, deltay);
363 posted += SDL_PrivateMouseMotion(0, 1, deltax, deltay);
391 return(posted);
396 int posted; local
420 posted = 0;
433 posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
435 posted = SDL_PrivateMouseMotion(0, 0,
454 posted = SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS);
456 posted = SDL_PrivateMouseMotion(0, 0
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/svga/
SDL_svgaevents.c 150 int posted = 0; variable
156 posted += SDL_PrivateMouseMotion(0, 1, dx, dy);
160 posted += SDL_PrivateMouseButton(SDL_PRESSED, 1, 0, 0);
164 posted += SDL_PrivateMouseButton(SDL_RELEASED, 1, 0, 0);
169 posted += SDL_PrivateMouseButton(SDL_PRESSED, 2, 0, 0);
173 posted += SDL_PrivateMouseButton(SDL_RELEASED, 2, 0, 0);
178 posted += SDL_PrivateMouseButton(SDL_PRESSED, 3, 0, 0);
182 posted += SDL_PrivateMouseButton(SDL_RELEASED, 3, 0, 0);
192 posted += SDL_PrivateKeyboard(SDL_PRESSED,
195 posted += SDL_PrivateKeyboard(SDL_RELEASED
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/wscons/
SDL_wsconsevents.c 39 static int posted = 0; variable
124 posted += SDL_PrivateKeyboard((buf[i] & 0x80) ? SDL_RELEASED : SDL_PRESSED,
133 posted = 0;
136 } while (posted);
  /external/qemu/distrib/sdl-1.2.15/src/video/ggi/
SDL_ggievents.c 47 static int posted = 0; variable
68 posted = 0;
83 posted += SDL_PrivateMouseMotion(0, 1, x, y);
94 posted += SDL_PrivateMouseMotion(0, 1, x, y);
98 posted += SDL_PrivateMouseButton(SDL_PRESSED, ev.pbutton.button, 0, 0);
101 posted += SDL_PrivateMouseButton(SDL_RELEASED, ev.pbutton.button, 0, 0);
105 posted += SDL_PrivateKeyboard(SDL_PRESSED, GGI_TranslateKey(&ev, &keysym));
108 posted += SDL_PrivateKeyboard(SDL_RELEASED, GGI_TranslateKey(&ev, &keysym));
  /external/chromium/chrome/browser/profiles/
profile_manager.cc 293 bool posted = BrowserThread::PostTask( local
296 DCHECK(posted);
302 posted = BrowserThread::PostTask(
305 DCHECK(posted);
307 posted = BrowserThread::PostTask(
310 DCHECK(posted);
321 bool posted = BrowserThread::PostTask( local
324 DCHECK(posted);
326 posted = BrowserThread::PostTask(
329 DCHECK(posted);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/vgl/
SDL_vglevents.c 46 static int posted = 0; variable
85 posted += SDL_PrivateKeyboard(pressed,
112 posted += SDL_PrivateMouseMotion(0, 0, x, y);
127 posted += SDL_PrivateMouseButton(state, i + 1, 0, 0);
136 posted = 0;
139 } while (posted != 0);
  /external/chromium_org/chrome/browser/chromeos/drive/
test_util.cc 27 // This class is used to monitor if any task is posted to a message loop.
40 // Returns true if any task was posted.
41 bool posted() const { return posted_; } function in class:drive::test_util::__anon6814::TaskObserver
58 if (!task_observer.posted())
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
ExcludedProxyTest.java 167 String posted = "just a test"; local
175 conn.setRequestProperty("Content-length", String.valueOf(posted
178 out.write(posted.getBytes());
189 .equals(posted));

Completed in 726 milliseconds

1 2 3