Searched defs:lastLine (Results 1 - 2 of 2) sorted by last modified time

/frameworks/native/libs/binder/
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.java201 int lastLine = TextUtils.unpackRangeEndFromLong(lineRange);
202 if (lastLine < 0) return;
205 firstLine, lastLine);
206 drawText(canvas, firstLine, lastLine);
212 public void drawText(Canvas canvas, int firstLine, int lastLine) { argument
228 for (int i = firstLine; i <= lastLine; i++) {
366 int cursorOffsetVertical, int firstLine, int lastLine) {
388 for (int i = firstLine; i <= lastLine; i++) {
365 drawBackground(Canvas canvas, Path highlight, Paint highlightPaint, int cursorOffsetVertical, int firstLine, int lastLine) argument

Completed in 57 milliseconds