Searched defs:lastLine (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/libs/utils/
H A DBufferedTextOutput.cpp188 const char* lastLine = txt+1; local
190 if (*txt++ == '\n') lastLine = txt;
194 vec.iov_len = lastLine-first;
197 txt = lastLine;
/frameworks/base/core/java/android/text/
H A DLayout.java200 int lastLine = TextUtils.unpackRangeEndFromLong(lineRange);
201 if (lastLine < 0) return;
204 firstLine, lastLine);
205 drawText(canvas, firstLine, lastLine);
211 public void drawText(Canvas canvas, int firstLine, int lastLine) { argument
227 for (int i = firstLine; i <= lastLine; i++) {
359 int cursorOffsetVertical, int firstLine, int lastLine) {
381 for (int i = firstLine; i <= lastLine; i++) {
358 drawBackground(Canvas canvas, Path highlight, Paint highlightPaint, int cursorOffsetVertical, int firstLine, int lastLine) argument

Completed in 56 milliseconds