Searched refs:lineWidth (Results 1 - 6 of 6) sorted by relevance
| /openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/ |
| H A D | OutputFormat.java | 799 * @param lineWidth The line width to use, zero for default 803 public void setLineWidth( int lineWidth ) 805 if ( lineWidth <= 0 ) 808 _lineWidth = lineWidth;
|
| /openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/ |
| H A D | WindowsIconFactory.java | 217 int lineWidth; 218 if (width > 47) lineWidth = 6; 219 else if (width > 37) lineWidth = 5; 220 else if (width > 26) lineWidth = 4; 221 else if (width > 16) lineWidth = 3; 222 else if (width > 12) lineWidth = 2; 223 else lineWidth = 1; 225 if (lineWidth == 1) { 229 } else if (lineWidth == 2) { 243 for (int i = 4; i <= lineWidth; [all...] |
| /openjdk7/jdk/src/windows/classes/sun/awt/windows/ |
| H A D | WPathGraphics.java | 164 float lineWidth; 171 lineWidth = lineStroke.getLineWidth(); 172 penSize = new Point2D.Float(lineWidth, lineWidth); 1486 float lineWidth = lineStroke.getLineWidth(); 1487 Point2D.Float penSize = new Point2D.Float(lineWidth, 1488 lineWidth); 1591 float lineWidth = lineStroke.getLineWidth(); 1592 Point2D.Float penSize = new Point2D.Float(lineWidth, lineWidth); [all...] |
| /openjdk7/jdk/src/solaris/classes/sun/java2d/jules/ |
| H A D | JulesPathBuf.java | 236 double lineWidth, int lineCap, int lineJoin, 233 tesselateStrokeNative(int[] pointArray, byte[] ops, int pointCnt, int opCnt, int[] xTrapArray, int xTrapArrayLength, double lineWidth, int lineCap, int lineJoin, double miterLimit, double[] dashArray, int dashCnt, double offset, double m00, double m01, double m02, double m10, double m11, double m12, int clipLowX, int clipLowY, int clipWidth, int clipHeight) argument
|
| /openjdk7/jdk/src/share/classes/sun/java2d/pisces/ |
| H A D | Stroker.java | 105 * @param lineWidth the desired line width in pixels 115 float lineWidth, 122 this.lineWidth2 = lineWidth / 2; 114 Stroker(PathConsumer2D pc2d, float lineWidth, int capStyle, int joinStyle, float miterLimit) argument
|
| /openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/ |
| H A D | Metacity.java | 887 int lineWidth = aee.evaluate(getStringAttr(attrs, "width"), 1); 889 if (lineWidth != 1) { 892 g2d.setStroke(new BasicStroke((float)lineWidth));
|
Completed in 57 milliseconds