Searched refs:__y (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicDesktopIconUI.java196 // __x & __y are the mousePressed location in source view's coordinate system
197 int __x, __y; field in class:BasicDesktopIconUI.MouseInputHandler
204 __y = 0;
219 __y = e.getY();
269 if(newY + i.top <= -__y)
270 newY = -__y - i.top;
273 if(newY + __y + i.bottom > pHeight)
274 newY = pHeight - __y - i.bottom;
H A DBasicInternalFrameUI.java629 // __x & __y are the mousePressed location in source view's coordinate system
630 int __x, __y; field in class:BasicInternalFrameUI.BorderListener
687 __y = 0;
704 __y = e.getY();
716 Point ep = new Point(__x, __y);
860 if(newY + i.top <= -__y)
861 newY = -__y - i.top + 1;
864 if(newY + __y + i.bottom >= pHeight)
865 newY = pHeight - __y - i.bottom - 1;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaInternalFrameUI.java368 // __x & __y are the mousePressed location in source view's coordinate system
369 int __x, __y; field in class:AquaInternalFrameUI.AquaBorderListener
459 __y = 0;
469 __y = e.getY();
571 if (newY + i.top <= -__y) newY = -__y - i.top;
573 if (newY + __y + i.bottom > pHeight) newY = pHeight - __y - i.bottom;

Completed in 37 milliseconds