Home | History | Annotate | Download | only in text

Lines Matching defs:startline

1247         int startline = getLineForOffset(start);
1250 int top = getLineTop(startline);
1253 if (startline == endline) {
1254 addSelection(startline, start, end, top, bottom, dest);
1258 addSelection(startline, start, getLineEnd(startline),
1259 top, getLineBottom(startline), dest);
1261 if (getParagraphDirection(startline) == DIR_RIGHT_TO_LEFT)
1262 dest.addRect(getLineLeft(startline), top,
1263 0, getLineBottom(startline), Path.Direction.CW);
1265 dest.addRect(getLineRight(startline), top,
1266 width, getLineBottom(startline), Path.Direction.CW);
1268 for (int i = startline + 1; i < endline; i++) {