Lines Matching defs:loy

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) {}
91 int loy;
156 protected Region(int lox, int loy, int hix, int hiy) {
158 this.loy = loy;
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);
335 this.loy = box[1];
342 * region bands. The rectangle is specified in lox, loy,
348 public void setOutputAreaXYXY(int lox, int loy, int hix, int hiy) {
350 this.loy = loy;
386 int tloy = clipScale(loy, sy);
425 ret.lox = ret.loy = ret.hix = ret.hiy = 0;
428 ret.loy = newbands[0];
456 int tloy = loy + dy;
460 (tloy > loy) != (dy > 0) ||
490 int tloy = clipAdd(loy, dy);
529 ret.lox = ret.loy = ret.hix = ret.hiy = 0;
532 ret.loy = newbands[0];
572 public Region getIntersectionXYXY(int lox, int loy, int hix, int hiy) {
573 if (isInsideXYXY(lox, loy, hix, hiy)) {
577 (loy < this.loy) ? this.loy : loy,
606 (r.loy < this.loy) ? this.loy : r.loy,
635 (r.loy > this.loy) ? this.loy : r.loy,
661 Region ret = new Region(this.lox, this.loy, this.hix, this.hiy);
686 (r.loy > this.loy) ? this.loy : r.loy,
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};
717 int y = loy;
868 * rectangular area in lox, loy, hix, hiy format.
873 public Region getBoundsIntersectionXYXY(int lox, int loy,
877 this.lox >= lox && this.loy >= loy &&
883 (loy < this.loy) ? this.loy : loy,
904 (r.loy < this.loy) ? this.loy : r.loy,
920 if ((spanloy = box[1]) < loy) spanloy = loy;
996 lox = loy = hix = hiy = 0;
998 loy = bands[0];
1026 this.loy = bands[0];
1042 return loy;
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) {
1139 return (this.lox >= lox && this.loy >= loy &&
1153 r.lox <= this.lox && r.loy <= this.loy &&
1159 * rectangular area specified in lox, loy, hix, hiy format.
1165 public boolean intersectsQuickCheckXYXY(int lox, int loy,
1169 hiy > this.loy && loy < this.hiy);
1182 r.hiy > this.loy && r.loy < this.hiy);
1194 this.lox <= r.lox && this.loy <= r.loy &&
1211 * rectangular area specified in lox, loy, hix, hiy format.
1216 public boolean encompassesXYXY(int lox, int loy, int hix, int hiy) {
1218 this.lox <= lox && this.loy <= loy &&
1227 pathbox[1] = loy;
1237 if (bbox[1] < loy) bbox[1] = loy;
1272 si.intersectClipBox(lox, loy, hix, hiy);
1284 sb.append(loy);
1315 return (isEmpty() ? 0 : (lox * 3 + loy * 5 + hix * 7 + hiy * 9));
1328 if (r.lox != this.lox || r.loy != this.loy ||