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

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DRectangle2D.java217 public int outcode(double x, double y) { method in class:Rectangle2D.Float
431 public int outcode(double x, double y) { method in class:Rectangle2D.Double
557 if ((out2 = outcode(x2, y2)) == 0) {
560 while ((out1 = outcode(x1, y1)) != 0) {
613 public abstract int outcode(double x, double y); method in class:Rectangle2D
630 public int outcode(Point2D p) { method in class:Rectangle2D
631 return outcode(p.getX(), p.getY());
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DDrawLine.c74 #define outcode(x, y, xmin, ymin, xmax, ymax) \ macro
115 outcode1 = outcode(X1, Y1, cxmin, cymin, cxmax, cymax); \
116 outcode2 = outcode(X2, Y2, cxmin, cymin, cxmax, cymax); \
162 outcode1 = outcode(X1, Y1, cxmin, cymin, cxmax, cymax); \
207 outcode2 = outcode(X2, Y2, cxmin, cymin, cxmax, cymax); \
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DGeneralRenderer.java423 static int outcode(int x, int y, int xmin, int ymin, int xmax, int ymax) { method in class:GeneralRenderer
503 outcode1 = outcode(x1, y1, cxmin, cymin, cxmax, cymax);
504 outcode2 = outcode(x2, y2, cxmin, cymin, cxmax, cymax);
551 outcode1 = outcode(x1, y1, cxmin, cymin, cxmax, cymax);
597 outcode2 = outcode(x2, y2, cxmin, cymin, cxmax, cymax);
/openjdk7/jdk/src/share/classes/java/awt/
H A DRectangle.java1130 public int outcode(double x, double y) { method in class:Rectangle

Completed in 40 milliseconds