Searched refs:prevLine (Results 1 – 2 of 2) sorted by relevance
631 String prevLine = ""; in waitForIorapCompiled() local636 if (prevLine.contains(" " + appPkgName) && prevLine.contains("@")) { in waitForIorapCompiled()650 prevLine = line; in waitForIorapCompiled()
6494 public int getCurrentLineAdjustedForSlop(Layout layout, int prevLine, float y) {6496 if (layout == null || prevLine >= layout.getLineCount()6497 || layout.getLineCount() <= 0 || prevLine < 0) {6502 if (Math.abs(trueLine - prevLine) >= 2) {6514 if (trueLine > prevLine && y >= layout.getLineBottom(prevLine) + slop + verticalOffset) {6517 if (trueLine < prevLine && y <= layout.getLineTop(prevLine) - slop + verticalOffset) {6520 return prevLine;