Searched defs:infoflags (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DDebugGraphicsObserver.java47 public synchronized boolean imageUpdate(Image img, int infoflags, argument
50 lastInfo = infoflags;
H A DJLabel.java890 public boolean imageUpdate(Image img, int infoflags, argument
900 return super.imageUpdate(img, infoflags, x, y, w, h);
H A DJSlider.java764 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 DAbstractButton.java2185 * @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 DImageObserver.java52 * 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/src/share/classes/java/awt/
H A DMediaTracker.java927 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 DComponent.java3483 * 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 139 milliseconds