HomeSort by relevance Sort by last modified time
    Searched refs:EventQueue (Results 1 - 7 of 7) sorted by null

  /frameworks/base/awt/java/awt/
EventQueue.java 29 * The EventQueue class manages events. It is a platform-independent class that
35 public class EventQueue {
75 * Returns true if the calling thread is the current AWT EventQueue's
78 * @return true, if the calling thread is the current AWT EventQueue's
91 * on the EventQueue.
106 * on the EventQueue.
140 private static EventQueue getSystemEventQueue() {
150 * the EventQueue associated with the calling thread.
157 EventQueue eq = getSystemEventQueue();
171 * Returns the the currently dispatched event by the EventQueue associate
    [all...]
EventQueueCore.java 33 * The events storage for EventQueue
37 private final LinkedList<EventQueue> queueStack = new LinkedList<EventQueue>();
41 private EventQueue activeQueue;
47 EventQueueCore(EventQueue eq) {
54 EventQueueCore(EventQueue eq, Toolkit t) {
206 synchronized void push(EventQueue newEventQueue) {
219 EventQueue removed = queueStack.removeLast();
250 synchronized EventQueue getActiveEventQueue() {
EventDispatchThread.java 58 EventQueue eventQueue = toolkit.getSystemEventQueueImpl();
64 eventQueue.postEvent(marker);
65 for (AWTEvent ae = eventQueue.getNextEventNoWait();
67 ae = eventQueue.getNextEventNoWait()) {
68 eventQueue.dispatchEvent(ae);
72 AWTEvent ae = eventQueue.getNextEventNoWait();
74 eventQueue.dispatchEvent(ae);
95 EventQueue eventQueue = toolkit.getSystemEventQueueImpl()
    [all...]
Toolkit.java 260 EventQueue.invokeAndWait(runnable);
414 new EventQueue(this); // create the system EventQueue
619 * Gets the EventQueue instance without checking access.
621 * @return the system EventQueue.
623 protected abstract EventQueue getSystemEventQueueImpl();
887 * Gets the system EventQueue instance. If the default implementation of
892 * @return the system EventQueue instance.
894 public final EventQueue getSystemEventQueue() {
    [all...]
ToolkitImpl.java 252 protected EventQueue getSystemEventQueueImpl() {
Dispatcher.java 275 EventQueue eventQueue = toolkit.getSystemEventQueueImpl();
278 eventQueue.postEvent(new KeyEvent(src, id, time, modifiers,
285 eventQueue.postEvent(new KeyEvent(src,
  /external/quake/standalone/
main.cpp 39 class EventQueue {
81 EventQueue() {
123 return ((EventQueue*) arg)->eventThreadMain();
158 EventQueue* gpEventQueue;
171 gpEventQueue = new EventQueue();
234 EventQueue::Event* pEvent = gpEventQueue->getEvent();
277 action = EventQueue::MOTION_ACTION_DOWN;
280 action = EventQueue::MOTION_ACTION_UP;
287 action = EventQueue::MOTION_ACTION_MOVE;

Completed in 129 milliseconds