Searched refs:etag (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DEdge.java34 int etag; field in class:Edge
42 public Edge(Curve c, int ctag, int etag) { argument
45 this.etag = etag;
57 return etag;
60 public void setEdgeTag(int etag) { argument
61 this.etag = etag;
107 public void record(double yend, int etag) { argument
109 this.etag
112 isActiveFor(double y, int etag) argument
[all...]
H A DChainEnd.java32 int etag; field in class:ChainEnd
38 this.etag = first.getEdgeTag();
58 if (etag == AreaOp.ETAG_IGNORE ||
59 that.etag == AreaOp.ETAG_IGNORE)
63 if (etag == that.etag) {
67 // assert(partner.etag != that.partner.etag);
68 if (etag == AreaOp.ETAG_ENTER) {
76 etag
[all...]
H A DCurveLink.java32 int etag; field in class:CurveLink
36 public CurveLink(Curve curve, double ystart, double yend, int etag) { argument
40 this.etag = etag;
47 return absorb(link.curve, link.ytop, link.ybot, link.etag);
50 public boolean absorb(Curve curve, double ystart, double yend, int etag) { argument
51 if (this.curve != curve || this.etag != etag ||
74 return curve.getWithDirection(etag);
76 return curve.getSubCurve(ytop, ybot, etag);
[all...]
H A DAreaOp.java319 int etag;
328 etag = (origstate == AreaOp.RSTAG_INSIDE
339 e.isActiveFor(ystart, etag))
352 etag = AreaOp.ETAG_IGNORE;
357 etag = classify(e);
359 if (etag != AreaOp.ETAG_IGNORE) {
360 e.record(yend, etag);
361 links.add(new CurveLink(e.getCurve(), ystart, yend, etag));

Completed in 67 milliseconds