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

/openjdk7/jdk/src/share/classes/java/awt/
H A DBasicStroke.java45 * dash segments. Subpaths that start and end on the same point are
68 * <dt><i>dash attributes</i>
69 * <dd>The definition of how to make a dash pattern by alternating
133 * Ends unclosed subpaths and dash segments with no added
139 * Ends unclosed subpaths and dash segments with a round
146 * Ends unclosed subpaths and dash segments with a square
158 float dash[]; field in class:BasicStroke
173 * @param dash the array representing the dashing pattern
183 * is negative and <code>dash</code> is not <code>null</code>
185 * <code>dash</cod
189 BasicStroke(float width, int cap, int join, float miterlimit, float dash[], float dash_phase) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DDasher.java34 * dash pattern array and a starting dash phase.
36 * <p> Issues: in J2Se, a zero length dash segment as drawn as a very
37 * short dash, whereas Pisces does not draw anything. The PostScript
44 private final float[] dash; field in class:Dasher
66 * @param dash an array of <code>float</code>s containing the dash pattern
67 * @param phase a <code>float</code> containing the dash phase
69 public Dasher(PathConsumer2D out, float[] dash, float phase) { argument
76 // Normalize so 0 <= phase < dash[
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DAttribute.java944 int dash = findCaseDash(cstr1, 0);
945 if (dash >= 0) {
946 value0 = parseIntBefore(cstr1, dash);
947 value1 = parseIntAfter(cstr1, dash);
1118 if (fromIndex <= 0) fromIndex = 1; // minimum dash pos
1119 int lastDash = layout.length() - 2; // maximum dash pos
1121 int dash = layout.indexOf('-', fromIndex);
1122 if (dash < 0 || dash > lastDash) return -1;
1123 if (isDigit(layout.charAt(dash
1136 parseIntBefore(String layout, int dash) argument
1149 parseIntAfter(String layout, int dash) argument
[all...]

Completed in 375 milliseconds