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

/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DImageScalingHelper.java95 * @param dInsets Destination insets specifying the portion of the image will be stretched or tiled, if
104 Insets dInsets, PaintType paintType, int mask) {
111 if (dInsets == null) {
112 dInsets = EMPTY_INSETS;
142 int dt = dInsets.top;
143 int dl = dInsets.left;
144 int db = dInsets.bottom;
145 int dr = dInsets.right;
102 paint(Graphics g, int x, int y, int w, int h, Image image, Insets sInsets, Insets dInsets, PaintType paintType, int mask) argument
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DPaint9Painter.java118 * @param dInsets Destination insets specifying the portion of the image
129 Insets dInsets,
134 super.paint(c, g, x, y, w, h, source, sInsets, dInsets, type, mask);
143 Insets dInsets = (Insets)args[argIndex++];
146 paint9(g, 0, 0, w, h, image, sInsets, dInsets, type, mask);
152 Insets dInsets, PaintType type, int componentMask) {
159 if (dInsets == null) {
160 dInsets = EMPTY_INSETS;
192 int dt = dInsets.top;
193 int dl = dInsets
127 paint(Component c, Graphics g, int x, int y, int w, int h, Image source, Insets sInsets, Insets dInsets, PaintType type, int mask) argument
150 paint9(Graphics g, int x, int y, int w, int h, Image image, Insets sInsets, Insets dInsets, PaintType type, int componentMask) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DImagePainter.java49 private Insets dInsets; field in class:ImagePainter
83 dInsets = sInsets;
86 this.dInsets = (Insets)destinationInsets.clone();
109 return (Insets)this.dInsets.clone();
111 insets.left = this.dInsets.left;
112 insets.right = this.dInsets.right;
113 insets.top = this.dInsets.top;
114 insets.bottom = this.dInsets.bottom;
144 image, sInsets, dInsets, type,

Completed in 80 milliseconds