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

/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRenderingEngine.java180 * @param dashes the dash length array as per {@code BasicStroke}
190 float dashes[],
403 float dashes[],
412 "dashes = "+dashes+", "+
416 dashes, dashphase);
185 createStrokedShape(Shape src, float width, int caps, int join, float miterlimit, float dashes[], float dashphase) argument
398 createStrokedShape(Shape src, float width, int caps, int join, float miterlimit, float dashes[], float dashphase) argument
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.cpp79 char dashes[max_width + 1]; local
80 memset(dashes, '-', w);
81 dashes[w] = '\0';
82 stream->print("%s", dashes);
84 stream->print(" %s", dashes);
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DPiscesRenderingEngine.java54 * @param dashes the dash length array as per {@code BasicStroke}
64 float dashes[],
76 dashes,
248 float dashes[],
303 if (dashes != null) {
304 dashes = java.util.Arrays.copyOf(dashes, dashes.length);
305 for (int i = 0; i < dashes.length; i++) {
306 dashes[
59 createStrokedShape(Shape src, float width, int caps, int join, float miterlimit, float dashes[], float dashphase) argument
241 strokeTo(Shape src, AffineTransform at, float width, NormMode normalize, int caps, int join, float miterlimit, float dashes[], float dashphase, PathConsumer2D pc2d) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/dc/
H A DDuctusRenderingEngine.java83 float dashes[],
97 if (dashes != null) {
99 dasher.setDash(dashes, dashphase);
144 float[] dashes = bs.getDashArray();
145 if (dashes != null) {
147 dasher.setDash(dashes, bs.getDashPhase());
416 float[] dashes = bs.getDashArray();
417 if (dashes != null) {
418 r.setDash(dashes, bs.getDashPhase());
78 createStrokedShape(Shape src, float width, int caps, int join, float miterlimit, float dashes[], float dashphase) argument

Completed in 178 milliseconds