Searched refs:aw (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DAnnotationWriter.java274 AnnotationWriter aw = this;
275 while (aw != null) {
276 size += aw.bv.length;
277 aw = aw.next;
291 AnnotationWriter aw = this;
293 while (aw != null) {
295 size += aw.bv.length;
296 aw.visitEnd(); // in case user forgot to call visitEnd
297 aw
[all...]
H A DFieldWriter.java177 AnnotationWriter aw = new AnnotationWriter(cw, true, bv, bv, 2);
179 aw.next = anns;
180 anns = aw;
182 aw.next = ianns;
183 ianns = aw;
185 return aw;
H A DClassWriter.java665 AnnotationWriter aw = new AnnotationWriter(this, true, bv, bv, 2);
667 aw.next = anns;
668 anns = aw;
670 aw.next = ianns;
671 ianns = aw;
673 return aw;
H A DMethodWriter.java512 AnnotationWriter aw = new AnnotationWriter(cw, true, bv, bv, 2);
514 aw.next = anns;
515 anns = aw;
517 aw.next = ianns;
518 ianns = aw;
520 return aw;
540 AnnotationWriter aw = new AnnotationWriter(cw, true, bv, bv, 2);
545 aw.next = panns[parameter];
546 panns[parameter] = aw;
551 aw
[all...]
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DRoundRectIterator.java37 double x, y, w, h, aw, ah; field in class:RoundRectIterator
46 this.aw = Math.min(w, Math.abs(rr.getArcWidth()));
49 if (aw < 0 || ah < 0) {
147 coords[nc++] = (float) (x + ctrls[i + 0] * w + ctrls[i + 1] * aw);
181 coords[nc++] = (x + ctrls[i + 0] * w + ctrls[i + 1] * aw);
H A DRoundRectangle2D.java529 double aw = Math.min(getWidth(), Math.abs(getArcWidth())) / 2.0;
533 if (x >= (rrx0 += aw) && x < (rrx0 = rrx1 - aw)) {
539 x = (x - rrx0) / aw;
576 double aw = Math.min(getWidth(), Math.abs(getArcWidth())) / 2.0;
578 int x0class = classify(x, rrx0, rrx1, aw);
579 int x1class = classify(x + w, rrx0, rrx1, aw);
596 x = (x1class == 1) ? (x = x + w - (rrx0 + aw)) : (x = x - (rrx1 - aw));
598 x = x / aw;
[all...]
H A DArc2D.java1248 double aw = getWidth();
1251 if ( w <= 0 || h <= 0 || aw <= 0 || ah <= 0 ) {
1261 double axw = ax + aw;
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzRenderer.m189 CGFloat aw = (w < arcWidth) ? w : arcWidth;
194 p1 = (x + ctrls[0] * w + ctrls[1] * aw);
199 p1 = (x + ctrls[0] * w + ctrls[1] * aw);
204 p1 = (x + ctrls[0] * w + ctrls[1] * aw);
206 p2 = (x + ctrls[4] * w + ctrls[5] * aw);
208 p3 = (x + ctrls[8] * w + ctrls[9] * aw);
213 p1 = (x + ctrls[0] * w + ctrls[1] * aw);
218 p1 = (x + ctrls[0] * w + ctrls[1] * aw);
220 p2 = (x + ctrls[4] * w + ctrls[5] * aw);
222 p3 = (x + ctrls[8] * w + ctrls[9] * aw);
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DExtendedTextSourceLabel.java247 float aw = 0f;
251 return new Rectangle2D.Float(al, at, aw, ah);
269 aw = info[rn+posx] + info[rn+advx] - al;
286 aw = info[rn+posx] + info[rn+advx] - al;
290 return new Rectangle2D.Float(al, at, aw, ah);
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DCRenderer.java323 float aw = (float) roundrect.getArcWidth();
327 fillRoundRect(sg2d, x, y, w, h, aw, ah);
329 drawRoundRect(sg2d, x, y, w, h, aw, ah);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DStyleSheet.java2250 * @param aw width of the container the bullet is placed in
2254 void drawIcon(Graphics g, int ax, int ay, int aw, int ah, argument
2258 (aw + bulletgap);
2272 * @param aw width of the container the bullet is placed in
2276 void drawShape(Graphics g, CSS.Value type, int ax, int ay, int aw, argument
2279 int gap = isLeftToRight ? - (bulletgap + 8) : (aw + bulletgap);
2299 * @param aw width of the container the bullet is placed in
2303 void drawLetter(Graphics g, char letter, int ax, int ay, int aw, argument
2310 (aw + bulletgap);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DMetacity.java2028 double x, y, w, h, aw, ah; field in class:Metacity.RoundRectClipShape.RoundishRectIterator
2081 this.aw = Math.min(w, Math.abs(rr.getArcWidth()));
2133 coords[nc++] = (float) (x + ctrls[i + 0] * w + ctrls[i + 1] * aw);
2149 coords[nc++] = x + ctrls[i + 0] * w + ctrls[i + 1] * aw;

Completed in 66 milliseconds