Searched refs:__x (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
203 __x = 0;
218 __x = e.getX();
267 if(newX + i.left <= -__x)
268 newX = -__x - i.left;
271 if(newX + __x + i.right > pWidth)
272 newX = pWidth - __x - i.right;
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
686 __x = 0;
703 __x = e.getX();
716 Point ep = new Point(__x, __y);
858 if(newX + i.left <= -__x)
859 newX = -__x - i.left + 1;
862 if(newX + __x + i.right >= pWidth)
863 newX = pWidth - __x - i.right - 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
458 __x = 0;
468 __x = e.getX();
570 if (newX + i.left <= -__x) newX = -__x - i.left;
572 if (newX + __x + i.right > pWidth) newX = pWidth - __x - i.right;

Completed in 37 milliseconds