Lines Matching defs:top

400         // The baseline is the top of the following line minus the current line's descent.
639 dtop = sTempRect.top;
643 final int top = Math.max(dtop, 0);
646 if (top >= bottom) return TextUtils.packRangeInLong(0, -1);
647 return TextUtils.packRangeInLong(getLineForVertical(top), getLineForVertical(bottom));
805 * If bounds is not null, return the top, left, right, bottom extents
814 bounds.top = getLineTop(line);
822 * Return the vertical position of the top of the specified line
865 * top line of the Layout.
1589 int top = getLineTop(line);
1602 dist = (bottom - top) >> 2;
1605 top += dist;
1616 dest.moveTo(h1, top);
1619 dest.moveTo(h1, top);
1620 dest.lineTo(h1, (top + bottom) >> 1);
1622 dest.moveTo(h2, (top + bottom) >> 1);
1643 dest.moveTo(h1, top);
1644 dest.lineTo(h1 - dist, top - dist);
1645 dest.lineTo(h1, top);
1646 dest.lineTo(h1 + dist, top - dist);
1648 dest.moveTo(h1, top);
1649 dest.lineTo(h1 - dist, top - dist);
1651 dest.moveTo(h1 - dist, top - dist + 0.5f);
1652 dest.lineTo(h1 + dist, top - dist + 0.5f);
1654 dest.moveTo(h1 + dist, top - dist);
1655 dest.lineTo(h1, top);
1660 int top, int bottom, Path dest) {
1686 dest.addRect(left, top, right, bottom, Path.Direction.CW);
1713 int top = getLineTop(startline);
1717 addSelection(startline, start, end, top, bottom, dest);
1722 top, getLineBottom(startline), dest);
1725 dest.addRect(getLineLeft(startline), top,
1728 dest.addRect(getLineRight(startline), top,
1732 top = getLineTop(i);
1734 dest.addRect(0, top, width, bottom, Path.Direction.CW);
1737 top = getLineTop(endline);
1741 top, bottom, dest);
1744 dest.addRect(width, top, getLineRight(endline), bottom, Path.Direction.CW);
1746 dest.addRect(0, top, getLineLeft(endline), bottom, Path.Direction.CW);