Searched refs:p2 (Results 1 – 8 of 8) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/api/ |
D | PointTest.java | 52 Point p2 = new Point(p); in testPointPoint() local 54 assertNotSame(p, p2); in testPointPoint() 55 assertEquals(p, p2); in testPointPoint() 71 Point p2 = p.copy(); in testCopy() local 73 assertNotSame(p, p2); in testCopy() 74 assertEquals(p, p2); in testCopy() 79 Point p2 = p.offsetBy(3, 4); in testOffsetBy() local 81 assertSame(p, p2); in testOffsetBy() 99 Point p2 = new Point(-3, -4); in testEquals_Point() local 104 assertFalse(p.equals(p2)); in testEquals_Point() [all …]
|
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/ |
D | DropDownEditor.java | 40 final int p2 = p * 2; in bindEditor() local 48 v.setPadding(p2, p2, p2, p2); in bindEditor()
|
/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()
|
D | MoveGesture.java | 749 com.android.ide.common.api.Point p2 = in processDropEvent() local 753 mTargetNode, mCurrentDragElements, mFeedback, p2); in processDropEvent()
|
/sdk/eclipse/features/com.android.ide.eclipse.adt.package/ |
D | p2.inf | 4 requires.1.namespace=org.eclipse.equinox.p2.iu 9 org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(location:https${#58}//dl.google.com/android…
|
D | build.properties | 2 p2.inf
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
D | SourceRevealer.java | 290 String p2 = m2.getResource().getProject().getName(); in filterMatchByFileName() 292 if (!p1.equals(p2)) { in filterMatchByFileName() 293 return p1.compareTo(p2); in filterMatchByFileName()
|