Searched refs:proposedHeight (Results 1 - 1 of 1) sorted by relevance
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | RepaintManager.java | 973 * The buffer might be smaller than <code>(proposedWidth,proposedHeight)</code> 977 public Image getOffscreenBuffer(Component c,int proposedWidth,int proposedHeight) { argument 980 return delegate.getOffscreenBuffer(c, proposedWidth, proposedHeight); 982 return _getOffscreenBuffer(c, proposedWidth, proposedHeight); 990 * This buffer might be smaller than <code>(proposedWidth,proposedHeight)</code>. 998 int proposedWidth,int proposedHeight) { 1002 proposedHeight); 1022 int height = proposedHeight < 1 ? 1 : 1023 (proposedHeight > maxSize.height? maxSize.height : proposedHeight); 997 getVolatileOffscreenBuffer(Component c, int proposedWidth,int proposedHeight) argument 1037 _getOffscreenBuffer(Component c, int proposedWidth, int proposedHeight) argument [all...] |
Completed in 1200 milliseconds