Lines Matching refs:top

357      * Clip bounds are the raw values of {@link #getLeft() left}, {@link #getTop() top},
382 // Index of the child's top position in the mLocation array
636 // root namespace means we should consider ourselves the top of the
2539 protected void internalSetPadding(int left, int top, int right, int bottom) {
2540 super.internalSetPadding(left, top, right, bottom);
2713 c.getTop() + insets.top,
4044 (int) (boundingRect.top - 0.5f),
4084 (int) (boundingRect.top - 0.5f),
4110 final int top = mTop;
4113 if (!dirty.intersect(0, 0, mRight - left, mBottom - top)) {
4120 location[CHILD_TOP_INDEX] = top;
4170 int top = child.mTop;
4183 parent = parentVG.invalidateChildInParentFast(left, top, dirty);
4185 top = parentVG.mTop;
4188 // Reached the top; this calls into the usual invalidate method in
4192 location[1] = top;
4203 private ViewParent invalidateChildInParentFast(int left, int top, final Rect dirty) {
4206 dirty.offset(left - mScrollX, top - mScrollY);
4356 r.set((int) (rect.left + 0.5f), (int) (rect.top + 0.5f),
5691 * The top margin in pixels of the child.
5830 * @param top the top margin size
5839 public void setMargins(int left, int top, int right, int bottom) {
5841 topMargin = top;
5855 * @param top the top margin size
5866 public void setMarginsRelative(int start, int top, int end, int bottom) {
5868 topMargin = top;
6277 if (mLocation.bottom - another.mLocation.top <= 0) {
6281 if (mLocation.top - another.mLocation.bottom >= 0) {
6298 // Break tie by top.
6299 final int topDiference = mLocation.top - another.mLocation.top;