Searched defs:oldHeight (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWComponentPeer.java86 int oldHeight = -1; field in class:WComponentPeer
128 oldHeight = s.height;
151 paintPending = (width != oldWidth) || (height != oldHeight);
158 if ((width != oldWidth) || (height != oldHeight)) {
167 oldHeight = height;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWindow.java68 int oldHeight = -1; field in class:XWindow
1345 if ((width != oldWidth) || (height != oldHeight)) {
1349 oldHeight = height;
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java2263 int oldHeight = this.height;
2280 resized = (oldWidth != this.width) || (oldHeight != this.height);
2300 repaintParentIfNeeded(oldX, oldY, oldWidth, oldHeight);
2308 int oldHeight)
2312 parent.repaint(oldX, oldY, oldWidth, oldHeight);
2307 repaintParentIfNeeded(int oldX, int oldY, int oldWidth, int oldHeight) argument

Completed in 86 milliseconds