Searched refs:infoflags (Results 1 - 8 of 8) sorted by relevance
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | DebugGraphicsObserver.java | 47 public synchronized boolean imageUpdate(Image img, int infoflags, argument 50 lastInfo = infoflags;
|
H A D | JSlider.java | 764 public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h) { argument 780 return super.imageUpdate(img, infoflags, x, y, w, h);
|
H A D | JLabel.java | 890 public boolean imageUpdate(Image img, int infoflags, argument 900 return super.imageUpdate(img, infoflags, x, y, w, h);
|
H A D | AbstractButton.java | 2185 * @param infoflags flags used to repaint the button when the image 2194 public boolean imageUpdate(Image img, int infoflags, argument 2224 return super.imageUpdate(img, infoflags, x, y, w, h);
|
/openjdk7/jdk/src/share/classes/java/awt/image/ |
H A D | ImageObserver.java | 52 * are combined to form the infoflags argument which indicates what 55 * of the infoflags argument. 57 * The <code>infoflags</code> argument should be the bitwise inclusive 64 * @param infoflags the bitwise inclusive OR of the following 73 * @return <code>false</code> if the infoflags indicate that the 88 public boolean imageUpdate(Image img, int infoflags, argument 92 * This flag in the infoflags argument to imageUpdate indicates that 101 * This flag in the infoflags argument to imageUpdate indicates that 110 * This flag in the infoflags argument to imageUpdate indicates that 118 * This flag in the infoflags argumen [all...] |
/openjdk7/jdk/test/sun/awt/image/ImageWatched/ |
H A D | AddNoLeak.java | 44 public boolean imageUpdate(Image img, int infoflags, int x, int y, int width, int height) {return false;}
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | MediaTracker.java | 927 int parseflags(int infoflags) { argument 928 if ((infoflags & ERROR) != 0) { 930 } else if ((infoflags & ABORT) != 0) { 932 } else if ((infoflags & (ALLBITS | FRAMEBITS)) != 0) { 938 public boolean imageUpdate(Image img, int infoflags, argument 943 int s = parseflags(infoflags);
|
H A D | Component.java | 3483 * the value of the <code>infoflags</code> argument. 3486 * @param infoflags see <code>imageUpdate</code> for more information 3491 * @return <code>false</code> if the infoflags indicate that the 3502 public boolean imageUpdate(Image img, int infoflags, argument 3505 if ((infoflags & (FRAMEBITS|ALLBITS)) != 0) { 3507 } else if ((infoflags & SOMEBITS) != 0) { 3518 return (infoflags & (ALLBITS|ABORT)) == 0;
|
Completed in 6979 milliseconds