Searched refs:lastPoint (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ServerCompiler/src/com/sun/hotspot/igv/servercompiler/
H A DJavaGroupOrganizer.java121 int lastPoint = tmp.lastIndexOf(".");
122 if (lastPoint == -1) {
126 name = name.substring(0, current + 1) + name.substring(lastPoint + 1);
153 int lastPoint = fullClassName.lastIndexOf(".");
154 if (lastPoint == -1) {
157 lastPoint = fullClassName.lastIndexOf(".", lastPoint - 1);
158 if (lastPoint == -1) {
162 String packageName = fullClassName.substring(0, lastPoint);
190 int lastPoint
[all...]
/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/classes/javax/swing/
H A DJList.java1070 Point lastPoint;
1072 lastPoint = new Point((r.x + r.width) - 1, (r.y + r.height) - 1);
1074 lastPoint = new Point(r.x, (r.y + r.height) - 1);
1076 int location = locationToIndex(lastPoint);
1091 new Point(lastPoint.x, r.y) :
1092 new Point(r.x, lastPoint.y);
1109 if (visibleLocation.y >= lastPoint.y) {
1116 if (visibleLocation.x >= lastPoint.x) {
/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/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 56 milliseconds