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

/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java211 public Shape usrClip; field in class:SunGraphics2D
517 * Intersect usrClip bounds and device bounds to determine the composite
1777 if (usrClip instanceof Rectangle) {
1778 r = new Rectangle((Rectangle) usrClip);
1780 r = usrClip.getBounds();
1792 if (usrClip instanceof Rectangle) {
1793 r.setBounds((Rectangle) usrClip);
1795 r.setBounds(usrClip.getBounds());
1868 if (usrClip == null) {
1871 } else if (usrClip instanceo
[all...]

Completed in 38 milliseconds