Searched refs:p1 (Results 1 – 4 of 4) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/api/ |
D | PointTest.java | 98 Point p1 = new Point(1, 2); in testEquals_Point() local 101 assertNotSame(p1, p); in testEquals_Point() 102 assertTrue(p.equals(p1)); in testEquals_Point() 109 Point p1 = new Point(1, 2); in testHashCode() local 112 assertNotSame(p1, p); in testHashCode() 113 assertEquals(p1.hashCode(), p.hashCode()); in testHashCode()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
D | TestGraphics.java | 65 public void drawLine(@NonNull Point p1, @NonNull Point p2) { in drawLine() argument 66 mDrawn.add("drawLine(" + p1 + "," + p2 + ")"); in drawLine() 75 public void drawRect(@NonNull Point p1, @NonNull Point p2) { in drawRect() argument 76 mDrawn.add("drawRect(" + p1 + "," + p2 + ")"); in drawRect() 100 public void fillRect(@NonNull Point p1, @NonNull Point p2) { in fillRect() argument 101 mDrawn.add("fillRect(" + p1 + "," + p2 + ")"); in fillRect()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
D | GCWrapper.java | 258 public void drawLine(@NonNull Point p1, @NonNull Point p2) { in drawLine() argument 259 drawLine(p1.x, p1.y, p2.x, p2.y); in drawLine() 276 public void drawRect(@NonNull Point p1, @NonNull Point p2) { in drawRect() argument 277 drawRect(p1.x, p1.y, p2.x, p2.y); in drawRect() 303 public void fillRect(@NonNull Point p1, @NonNull Point p2) { in fillRect() argument 304 fillRect(p1.x, p1.y, p2.x, p2.y); in fillRect() 330 public void drawOval(Point p1, Point p2) { in drawOval() argument 331 drawOval(p1.x, p1.y, p2.x, p2.y); in drawOval() 354 public void fillOval(Point p1, Point p2) { in fillOval() argument 355 fillOval(p1.x, p1.y, p2.x, p2.y); in fillOval()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
D | SourceRevealer.java | 289 String p1 = m1.getResource().getProject().getName(); in filterMatchByFileName() 292 if (!p1.equals(p2)) { in filterMatchByFileName() 293 return p1.compareTo(p2); in filterMatchByFileName()
|