Searched defs:lastPoint (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DDiagramScene.java765 private void processOutputSlot(OutputSlot s, List<Connection> connections, int controlPointIndex, Point lastPoint, LineWidget predecessor, int offx, int offy, SceneAnimator animator) { argument
818 } else if (lastPoint == specialNullPoint) {
820 } else if (lastPoint != null) {
821 Point p1 = new Point(lastPoint.x + offx, lastPoint.y + offy);
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DProcessPath.java1703 public boolean lastPoint; field in class:ProcessPath.Point
1708 public Point(int x, int y, boolean lastPoint) { argument
1711 this.lastPoint = lastPoint;
1738 * end of the each subpath is marked as lastPoint flag set at the last
1750 public void addPoint(int x, int y, boolean lastPoint) { argument
1758 plgPnts.add(new Point(x, y, lastPoint));
1766 return plgPnts.get(plgPnts.size() - 1).lastPoint;
1770 return plgPnts.get(plgPnts.size() - 1).lastPoint = true;
1959 if (pt.prev != null && !pt.prev.lastPoint) {
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.c1741 jboolean lastPoint; member in struct:_Point
1766 * of the each subpath is marked as lastPoint flag set at the last point
1804 _pnts->lastPoint = LASTPT; \
1825 #define FD_IS_ENDED(PTR) ((PTR)->plgPnts[(PTR)->plgSize - 1].lastPoint)
1829 (PTR)->plgPnts[(PTR)->plgSize - 1].lastPoint = JNI_TRUE; \
2022 if (pt->prev && !pt->prev->lastPoint) {
2031 if (!pt->lastPoint && pt->next) {

Completed in 45 milliseconds