Lines Matching defs:rectangle

300  * The geometry of a view is that of a rectangle. A view has a location,
309 * coordinate of the rectangle representing the view. The latter returns the
310 * top, or Y, coordinate of the rectangle representing the view. These methods
320 * rectangle representing the view. For instance, calling {@link #getRight()}
4582 * @param previouslyFocusedRect The rectangle of the view that had focus
4609 * Request that a rectangle of this view be visible on the screen,
4616 * @param rectangle The rectangle.
4619 public boolean requestRectangleOnScreen(Rect rectangle) {
4620 return requestRectangleOnScreen(rectangle, false);
4624 * Request that a rectangle of this view be visible on the screen,
4634 * @param rectangle The rectangle.
4638 public boolean requestRectangleOnScreen(Rect rectangle, boolean immediate) {
4646 position.set(rectangle);
4651 rectangle.set((int) position.left, (int) position.top,
4655 rectangle, immediate);
4791 * @param previouslyFocusedRect The rectangle, in this view's coordinate
5391 // Check if the visible portion intersects the rectangle of interest.
6923 * <code>null</code> set for the previously focused rectangle.
6934 * and give it hints about the direction and a specific rectangle that the focus
6935 * is coming from. The rectangle can help give larger views a finer grained hint
6956 * @param previouslyFocusedRect The rectangle (in this View's coordinate system)
9161 * rectangle with the values from getScrollX(), getScrollY(),
10331 * Hit rectangle in parent's coordinates
10333 * @param outRect The hit rectangle of the view.
10372 * starting from the rectangle filled in by this method.
10374 * By default, the rectangle is the {@link #getDrawingRect(android.graphics.Rect)})
10377 * fill in a more specific rectangle.
10379 * @param r The rectangle to fill in, in this view's coordinates.
10791 * @param dirty the rectangle representing the bounds of the dirty region
11228 * @param left The left coordinate of the rectangle to invalidate.
11229 * @param top The top coordinate of the rectangle to invalidate.
11230 * @param right The right coordinate of the rectangle to invalidate.
11231 * @param bottom The bottom coordinate of the rectangle to invalidate.
11272 * @param left The left coordinate of the rectangle to invalidate.
11273 * @param top The top coordinate of the rectangle to invalidate.
11274 * @param right The right coordinate of the rectangle to invalidate.
11275 * @param bottom The bottom coordinate of the rectangle to invalidate.
11324 * @param left The left coordinate of the rectangle to invalidate.
11325 * @param top The top coordinate of the rectangle to invalidate.
11326 * @param right The right coordinate of the rectangle to invalidate.
11327 * @param bottom The bottom coordinate of the rectangle to invalidate.
18659 * the coordinates of the dirty rectangle.