Lines Matching refs:dirty

161      * True if we're in the process of painting the dirty regions.  This is
383 * If <i>c</i> already has a dirty region, the rectangle <i>(x,y,w,h)</i>
400 // Component was already marked as dirty, region has been
451 * If <i>c</i> already has a dirty region, the rectangle <i>(x,y,w,h)</i>
516 Rectangle dirty = hws.get(hw);
518 addDirtyRegion((Window)hw, dirty.x, dirty.y,
519 dirty.width, dirty.height);
522 addDirtyRegion((Applet)hw, dirty.x, dirty.y,
523 dirty.width, dirty.height);
526 addDirtyRegion0(hw, dirty.x, dirty.y,
527 dirty.width, dirty.height);
540 Rectangle dirty = hwDirtyComponents.get(c);
541 if (dirty == null) {
546 x, y, w, h, dirty));
582 * Extends the dirty region for the specified component to include
585 * @return false if <code>c</code> is not yet marked dirty.
591 // A non-null r implies c is already marked as dirty,
600 /** Return the current dirty region for a component.
602 * dirty.
620 * Mark a component completely dirty. <b>aComponent</b> will be
649 * painted during the next paintDirtyRegions(). If computing dirty regions is
650 * expensive for your component, use this method and avoid computing dirty region
703 * a subclass correctly paints any dirty top levels.
737 Component dirty = it.next();
738 Window window = dirty instanceof Window ?
739 (Window)dirty :
740 SwingUtilities.getWindowAncestor(dirty);
758 * Paint all of the components that have been marked dirty.
782 for (Component dirty : tmpDirtyComponents.keySet()) {
783 collectDirtyComponents(tmpDirtyComponents, dirty, roots);
881 // Find the highest parent which is dirty. When we get out of this
884 // original dirty component. The tmp Rect is also used to compute the
898 // System.out.println("Collect dirty component for bound " + tmp +
948 // list of root dirty Views.