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

/frameworks/native/libs/binder/
H A DBufferedTextOutput.cpp191 const char* lastLine = txt+1; local
193 if (*txt++ == '\n') lastLine = txt;
197 vec.iov_len = lastLine-first;
200 txt = lastLine;
/frameworks/base/core/java/android/text/
H A DLayout.java257 int lastLine = TextUtils.unpackRangeEndFromLong(lineRange);
258 if (lastLine < 0) return;
261 firstLine, lastLine);
262 drawText(canvas, firstLine, lastLine);
268 public void drawText(Canvas canvas, int firstLine, int lastLine) { argument
284 for (int lineNum = firstLine; lineNum <= lastLine; lineNum++) {
425 int cursorOffsetVertical, int firstLine, int lastLine) {
447 for (int i = firstLine; i <= lastLine; i++) {
424 drawBackground(Canvas canvas, Path highlight, Paint highlightPaint, int cursorOffsetVertical, int firstLine, int lastLine) argument

Completed in 78 milliseconds