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

  /external/webkit/Source/WebKit/mac/Misc/
WebNSViewExtras.m 74 NSEvent *nextEvent, *firstEvent, *dragEvent, *mouseUp;
81 nextEvent = nil;
87 while ((nextEvent = [[self window] nextEventMatchingMask:(NSLeftMouseUpMask | NSLeftMouseDraggedMask)
92 firstEvent = nextEvent;
95 if ([nextEvent type] == NSLeftMouseDragged) {
96 float deltax = ABS([nextEvent locationInWindow].x - [mouseDownEvent locationInWindow].x);
97 float deltay = ABS([nextEvent locationInWindow].y - [mouseDownEvent locationInWindow].y);
98 dragEvent = nextEvent;
109 } else if ([nextEvent type] == NSLeftMouseUp) {
110 mouseUp = nextEvent;
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceRandomScript.java 111 MonkeyEvent nextEvent = mCurrentSource.getNextEvent();
112 if (nextEvent == null) {
115 return nextEvent;
  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebViewWidget.cpp 251 GOwnPtr<GdkEvent> nextEvent(gdk_event_peek());
252 if (nextEvent && (nextEvent->any.type == GDK_2BUTTON_PRESS || nextEvent->any.type == GDK_3BUTTON_PRESS))
  /external/javassist/src/main/javassist/util/
HotSwapper.java 221 Event event = iter.nextEvent();
  /frameworks/base/media/jni/soundpool/
SoundPool.h 139 void nextEvent();
SoundPool.cpp 153 channel->nextEvent();
653 void SoundChannel::nextEvent()
  /external/nist-sip/java/gov/nist/javax/sip/
SipStackImpl.java     [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebview.cpp 788 GOwnPtr<GdkEvent> nextEvent(gdk_event_peek());
789 if (nextEvent && (nextEvent->any.type == GDK_2BUTTON_PRESS || nextEvent->any.type == GDK_3BUTTON_PRESS))
    [all...]

Completed in 346 milliseconds