Searched refs:topLeft (Results 1 – 6 of 6) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
D | IncludeOverlay.java | 79 ControlPoint topLeft = LayoutPoint.create(mCanvas, mask.x, mask.y).toControl(); in paint() local 82 int x1 = topLeft.x; in paint() 83 int y1 = topLeft.y; in paint()
|
D | MarqueeGesture.java | 80 LayoutPoint topLeft = ControlPoint.create(mCanvas, x, y).toLayout(); in update() local 82 mCanvas.getSelectionManager().selectWithin(topLeft, bottomRight, mInitialSelection); in update()
|
D | ViewHierarchy.java | 392 LayoutPoint topLeft, in findWithin() argument 394 Rectangle selectionRectangle = new Rectangle(topLeft.x, topLeft.y, bottomRight.x in findWithin() 395 - topLeft.x, bottomRight.y - topLeft.y); in findWithin()
|
D | GCWrapper.java | 418 public void drawString(@NonNull String string, @NonNull Point topLeft) { in drawString() argument 419 drawString(string, topLeft.x, topLeft.y); in drawString()
|
D | SelectionManager.java | 576 public void selectWithin(LayoutPoint topLeft, LayoutPoint bottomRight, in selectWithin() argument 582 Collection<CanvasViewInfo> viewInfos = viewHierarchy.findWithin(topLeft, bottomRight); in selectWithin()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
D | TestGraphics.java | 90 public void drawString(@NonNull String string, @NonNull Point topLeft) { in drawString() argument 91 mDrawn.add("drawString(" + string + "," + topLeft + ")"); in drawString()
|