/openjdk7/jdk/test/java/beans/XMLEncoder/6777487/ |
H A D | TestEnumMap.java | 39 new EnumMap<Point, String>(Point.class), 46 public enum Point { X, Y, Z } enum in class:TestEnumMap
|
H A D | TestEnumSet.java | 39 EnumSet.noneOf(Point.class), 46 public enum Point { X, Y, Z } enum in class:TestEnumSet
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | Point.java | 38 public class Point extends Point2D implements java.io.Serializable { class in inherits:Point2D,java.io.Serializable 40 * The X coordinate of this <code>Point</code>. 51 * The Y coordinate of this <code>Point</code>. 71 public Point() { method in class:Point 77 * the specified <code>Point</code> object. 81 public Point(Point p) { method in class:Point 88 * @param x the X coordinate of the newly constructed <code>Point</code> 89 * @param y the Y coordinate of the newly constructed <code>Point</code> 92 public Point(in method in class:Point [all...] |
/openjdk7/jdk/test/javax/management/mxbean/ |
H A D | PropertyNamesTest.java | 50 ObjectName pointName = new ObjectName("a:type=Point"); 53 Point point = new Point(1, 2); 56 Point point1 = pointproxy.identity(point); 58 throw new Exception("Point doesn't match"); 59 System.out.println("Point test passed"); 95 public static class Point { class in class:PropertyNamesTest 97 public Point(int x, int y) { method in class:PropertyNamesTest.Point 114 Point identity(Point [all...] |
H A D | TigerMXBean.java | 44 class Point { class in interface:TigerMXBean 46 public Point(double x, double y) { method in class:TigerMXBean.Point 52 if (!(o instanceof Point)) 54 Point p = (Point) o; 67 Point Point = new Point(1.5, 2.5); field in interface:TigerMXBean 69 Point.class.getName(), 70 Point [all...] |
/openjdk7/jdk/test/sun/util/logging/ |
H A D | PlatformLoggerTest.java | 228 static Point[] getPoints() { 229 Point[] res = new Point[3]; 230 res[0] = new Point(0,0); 231 res[1] = new Point(1,1); 232 res[2] = new Point(2,2); 236 static class Point { class in class:PlatformLoggerTest 239 public Point(int x, int y) { method in class:PlatformLoggerTest.Point
|
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/ |
H A D | Shape.java | 60 class Point { class 91 private List<Point> controlPoints = new ArrayList<Point>(); 92 public List<Point> getControlPoints() { return controlPoints; }
|
/openjdk7/hotspot/test/compiler/6689060/ |
H A D | Test.java | 33 class Point { class 36 Point next; 39 Point pax[]; 40 Point pay[]; 41 public Point getNext() { 58 Point p = new Point(); 69 Point p = new Point(); 81 Point p [all...] |
/openjdk7/hotspot/test/compiler/6726999/ |
H A D | Test.java | 34 class Point { class 48 Point p = new Point(); 57 Point p = null; 59 p = new Point(); 68 Point p = new Point(); 70 p = new Point(); 79 Point p[] = new Point[ [all...] |
/openjdk7/jdk/src/share/classes/sun/java2d/loops/ |
H A D | ProcessPath.java | 1700 private static class Point { class in class:ProcessPath 1704 public Point prev; 1705 public Point next; 1706 public Point nextByY; 1708 public Point(int x, int y, boolean lastPoint) { method in class:ProcessPath.Point 1718 Point p; 1723 public Edge(Point p, int x, int dx, int dir) { 1742 List<Point> plgPnts; 1747 plgPnts = new Vector<Point>(DF_MAX_POINT); 1758 plgPnts.add(new Point( [all...] |
/openjdk7/jdk/src/share/native/sun/java2d/loops/ |
H A D | ProcessPath.c | 1747 } Point; typedef in typeref:struct:_Point 1753 Point* p; 1770 Point *plgPnts; 1771 Point dfPlgPnts[DF_MAX_POINT]; 1787 Point* _pnts = (PTR)->plgPnts; \ 1792 (PTR)->plgPnts = (Point*)malloc(newMax*sizeof(Point)); \ 1793 memcpy((PTR)->plgPnts, _pnts, _size*sizeof(Point)); \ 1795 (PTR)->plgPnts = (Point*)realloc( \ 1796 _pnts, newMax*sizeof(Point)); \ [all...] |
/openjdk7/jdk/src/share/classes/sun/text/bidi/ |
H A D | BidiBase.java | 460 class Point { class in class:BidiBase 468 Point[] points = new Point[0]; 1946 Point point = new Point(); 1950 insertPoints.points = new Point[FIRSTALLOC]; 1954 Point[] savePoints = insertPoints.points; 1955 insertPoints.points = new Point[len * 2];
|
/openjdk7/jdk/test/java/lang/annotation/ |
H A D | UnitTest.java | 3593 a = @Point(x = 1, y = 2) 3643 a = { @Point(x = 1, y = 2) } 3659 a = { @Point(x = 1, y = 2), @Point(x = 3, y = 4) } 3679 a = { @Point(x = 1, y = 2) } 3803 a = @Point(x = 1, y = 2) 3853 a = { @Point(x = 1, y = 2) } 3869 a = { @Point(x = 1, y = 2), @Point(x = 3, y = 4) } 3888 a = { @Point( 4643 @Target({}) @interface Point { int x(); int y(); } interface 4674 Point a() default @Point(x = 11, y = 12); field in interface:ScalarTypesWithDefault [all...] |