Searched defs:me (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jdk/test/javax/swing/SwingUtilities/7170657/
H A Dbug7170657.java52 MouseEvent me = new MouseEvent(f, 1, 1, mask, 1, 1, 1, 1, 1, true,
57 test(f, me);
65 private static void test(final Frame frame, final MouseEvent me) { argument
66 MouseEvent newme = SwingUtilities.convertMouseEvent(frame, me, frame);
67 if (me.getModifiersEx() != newme.getModifiersEx()
68 || me.getModifiers() != newme.getModifiers()) {
69 fail(me, newme);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DDragRecognitionSupport.java53 public void dragStarting(MouseEvent me); argument
75 public static boolean mousePressed(MouseEvent me) { argument
76 return getDragRecognitionSupport().mousePressedImpl(me);
83 public static MouseEvent mouseReleased(MouseEvent me) { argument
84 return getDragRecognitionSupport().mouseReleasedImpl(me);
90 public static boolean mouseDragged(MouseEvent me, BeforeDrag bd) { argument
91 return getDragRecognitionSupport().mouseDraggedImpl(me, bd);
99 private int mapDragOperationFromModifiers(MouseEvent me, argument
102 if (th == null || !SwingUtilities.isLeftMouseButton(me)) {
107 convertModifiersToDropAction(me
114 mousePressedImpl(MouseEvent me) argument
133 mouseReleasedImpl(MouseEvent me) argument
152 mouseDraggedImpl(MouseEvent me, BeforeDrag bd) argument
[all...]
H A DBasicListUI.java372 Rectangle me = getCellBounds(list, index);
379 < Point2D.distance(me.x,
380 me.y + (int)(me.height / 2.0),
386 < Point2D.distance(me.x + me.width,
387 me.y + (int)(prev.height / 2.0),
423 Rectangle me = getCellBounds(list, index);
428 < Point2D.distance(me.x + (int)(me
2744 dragStarting(MouseEvent me) argument
[all...]
H A DBasicTableUI.java1170 MouseEvent me = DragRecognitionSupport.mouseReleased(e);
1171 if (me != null) {
1174 adjustSelection(me);
1211 public void dragStarting(MouseEvent me) { argument
1214 if (BasicGraphicsUtils.isMenuShortcutKeyDown(me) && isFileList) {
H A DBasicTextUI.java2125 public void dragStarting(MouseEvent me) { argument
H A DBasicTreeUI.java3618 public void dragStarting(MouseEvent me) { argument
3621 if (BasicGraphicsUtils.isMenuShortcutKeyDown(me)) {
3662 MouseEvent me = DragRecognitionSupport.mouseReleased(e);
3663 if (me != null) {
3666 handleSelection(me);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifMenuUI.java69 private boolean popupIsOpen(JMenu m,MenuElement me[]) { argument
73 for(i=me.length-1;i>=0;i--) {
74 if(me[i].getComponent() == pm)
115 MenuElement me[] = new MenuElement[2];
116 me[0]=(MenuElement)cnt;
117 me[1]=menu;
118 manager.setSelectedPath(me);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageFetcher.java174 Thread me = Thread.currentThread();
176 if (info.fetchers[i] == me) {
191 Thread me = Thread.currentThread();
192 while (isFetcher(me)) {
198 me.interrupted();
199 me.setPriority(HIGH_PRIORITY);
210 stoppingAnimation(me);
222 Thread me = Thread.currentThread();
225 if (info.fetchers[i] == me) {
228 me
248 stoppingAnimation(Thread me) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DMediaTracker.java121 * Thread me = Thread.currentThread();
122 * while (animator == me) {
827 static MediaEntry insert(MediaEntry head, MediaEntry me) { argument
831 if (cur.ID > me.ID) {
837 me.next = cur;
839 head = me;
841 prev.next = me;
/openjdk7/hotspot/src/share/vm/utilities/
H A Dworkgroup.cpp164 Thread* me = Thread::current(); local
165 tty->print_cr(" T: 0x%x VM_thread: %d", me, me->is_VM_thread());
/openjdk7/langtools/test/tools/apt/mirror/type/
H A DClassTyp.java83 private ClassTyp<T1,T2> me = this; field in class:ClassTyp
174 ClassType thisType = (ClassType) getField("me").getType();
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DTTY.java132 public void methodEntryEvent(MethodEntryEvent me) { argument
139 if (me.request().suspendPolicy() != EventRequest.SUSPEND_NONE) {
145 printLocationOfEvent(me);
150 public boolean methodExitEvent(MethodExitEvent me) { argument
156 Method meMethod = me.method();
162 if (me.request().suspendPolicy() != EventRequest.SUSPEND_NONE) {
167 MessageOutput.print("Method exitedValue:", me.returnValue() + "");
172 if (me.request().suspendPolicy() == EventRequest.SUSPEND_NONE) {
174 printLocationOfEvent(me);
186 if (eReq.equals(me
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DvframeArray.cpp521 frame me = unpack_frame.sender(&map); local
524 *element(index)->iframe() = me;
526 me = me.sender(&map);
531 frame* caller_frame = &me;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXChoicePeer.java1049 MouseEvent me = (MouseEvent)e;
1053 if ((unfurledChoice.isMouseEventInside(me) ||
1056 return handleMouseEventByChoice(me);
1061 return handleMouseEventByChoice(me);
1064 if ( !firstPress && !( isMouseEventInChoice(me) ||
1065 unfurledChoice.isMouseEventInside(me)) &&
1071 return handleMouseEventByChoice(me);
1081 public boolean handleMouseEventByChoice(final MouseEvent me){ argument
1084 handleJavaMouseEvent(me);
H A DXListPeer.java974 // It looks to me like there are bugs as well as inconsistencies
1612 boolean prePostMouseEvent(final MouseEvent me){ argument
1617 int eventId = me.getID();
1629 handleJavaMouseEventOnEDT(me);
1633 (inVerticalScrollbar(me.getX(), me.getY()) ||
1634 inHorizontalScrollbar(me.getX(), me.getY())))
1639 handleJavaMouseEventOnEDT(me);
1648 void handleJavaMouseEventOnEDT(final MouseEvent me){ argument
[all...]
H A DXToolkit.java1891 static boolean isLeftMouseButton(MouseEvent me) { argument
1892 switch (me.getID()) {
1895 return (me.getButton() == MouseEvent.BUTTON1);
1900 return ((me.getModifiersEx() & InputEvent.BUTTON1_DOWN_MASK) != 0);
1905 static boolean isRightMouseButton(MouseEvent me) { argument
1907 switch (me.getID()) {
1910 return ((numButtons == 2 && me.getButton() == MouseEvent.BUTTON2) ||
1911 (numButtons > 2 && me.getButton() == MouseEvent.BUTTON3));
1916 return ((numButtons == 2 && (me.getModifiersEx() & InputEvent.BUTTON2_DOWN_MASK) != 0) ||
1917 (numButtons > 2 && (me
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp183 methodOop me = get_methodOop(); local
188 memcpy(_code, me->code_base(), code_size());
191 if (me->number_of_breakpoints() > 0) {
192 BreakpointInfo* bp = instanceKlass::cast(me->method_holder())->breakpoints();
194 if (bp->match(me)) {
201 ExceptionTable exc_table(me);
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java739 public static boolean shouldIgnore(MouseEvent me, JComponent c) { argument
741 || !SwingUtilities.isLeftMouseButton(me)
742 || me.isConsumed();
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DJTextComponent.java5032 protected void positionCaret(MouseEvent me) { argument
5034 Point pt = new Point(me.getX(), me.getY());
5052 super.positionCaret(me);

Completed in 668 milliseconds