Lines Matching defs:hiy

39  * (lox, loy, hix, hiy).
71 protected ImmutableRegion(int lox, int loy, int hix, int hiy) {
72 super(lox, loy, hix, hiy);
80 public void setOutputAreaXYXY(int lox, int loy, int hix, int hiy) {}
93 int hiy;
156 protected Region(int lox, int loy, int hix, int hiy) {
160 this.hiy = hiy;
293 * by the indicated rectangular area in lox, loy, hix, hiy format.
298 public static Region getInstanceXYXY(int lox, int loy, int hix, int hiy) {
299 return new Region(lox, loy, hix, hiy);
337 this.hiy = box[3];
343 * hix, hiy format.
348 public void setOutputAreaXYXY(int lox, int loy, int hix, int hiy) {
352 this.hiy = hiy;
388 int thiy = clipScale(hiy, sy);
425 ret.lox = ret.loy = ret.hix = ret.hiy = 0;
429 ret.hiy = newbands[1];
458 int thiy = hiy + dy;
462 (thiy > hiy) != (dy > 0))
492 int thiy = clipAdd(hiy, dy);
529 ret.lox = ret.loy = ret.hix = ret.hiy = 0;
533 ret.hiy = newbands[1];
572 public Region getIntersectionXYXY(int lox, int loy, int hix, int hiy) {
573 if (isInsideXYXY(lox, loy, hix, hiy)) {
579 (hiy > this.hiy) ? this.hiy : hiy);
608 (r.hiy > this.hiy) ? this.hiy : r.hiy);
637 (r.hiy < this.hiy) ? this.hiy : r.hiy);
661 Region ret = new Region(this.lox, this.loy, this.hix, this.hiy);
688 (r.hiy < this.hiy) ? this.hiy : r.hiy);
701 abands = new int[] {ra.loy, ra.hiy, 1, ra.lox, ra.hix};
704 bbands = new int[] {rb.loy, rb.hiy, 1, rb.lox, rb.hix};
718 while (y < hiy) {
728 ay1 = ay2 = hiy;
741 by1 = by2 = hiy;
868 * rectangular area in lox, loy, hix, hiy format.
874 int hix, int hiy)
878 this.hix <= hix && this.hiy <= hiy)
885 (hiy > this.hiy) ? this.hiy : hiy);
906 (r.hiy > this.hiy) ? this.hiy : r.hiy);
922 if ((spanhiy = box[3]) > hiy) spanhiy = hiy;
996 lox = loy = hix = hiy = 0;
999 hiy = bands[1];
1028 this.hiy = bands[hiyindex + 1];
1056 return hiy;
1075 if (hiy < loy) return 0;
1077 if ((h = hiy - loy) < 0) {
1087 return (hix <= lox || hiy <= loy);
1102 if (x < lox || x >= hix || y < loy || y >= hiy) return false;
1136 * rectangular area specified in lox, loy, hix, hiy format.
1138 public boolean isInsideXYXY(int lox, int loy, int hix, int hiy) {
1140 this.hix <= hix && this.hiy <= hiy);
1154 r.hix >= this.hix && r.hiy >= this.hiy);
1159 * rectangular area specified in lox, loy, hix, hiy format.
1166 int hix, int hiy)
1169 hiy > this.loy && loy < this.hiy);
1182 r.hiy > this.loy && r.loy < this.hiy);
1195 this.hix >= r.hix && this.hiy >= r.hiy);
1211 * rectangular area specified in lox, loy, hix, hiy format.
1216 public boolean encompassesXYXY(int lox, int loy, int hix, int hiy) {
1219 this.hix >= hix && this.hiy >= hiy);
1229 pathbox[3] = hiy;
1239 if (bbox[3] > hiy) bbox[3] = hiy;
1272 si.intersectClipBox(lox, loy, hix, hiy);
1288 sb.append(hiy);
1315 return (isEmpty() ? 0 : (lox * 3 + loy * 5 + hix * 7 + hiy * 9));
1329 r.hix != this.hix || r.hiy != this.hiy)