Searched refs:findLine (Results 1 - 2 of 2) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DDiagnosticSource.java53 protected boolean findLine(int pos) {
78 if (findLine(pos)) {
93 if (findLine(pos)) {
117 if (!findLine(pos))
144 protected boolean findLine(int pos) { method in class:DiagnosticSource
213 /** The start of a line found by findLine. */
216 /** The line number of a line found by findLine. */
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DWrappedPlainView.java635 line = findLine(testP - p0);
773 lineIndex = findLine(startPos - start);
828 private int findLine(int offset) { method in class:WrappedPlainView.WrappedLine
835 return findLine(lineEnds, offset, 0, lineCount - 1);
839 private int findLine(int[] array, int offset, int min, int max) { method in class:WrappedPlainView.WrappedLine
845 findLine(array, offset, min, mid) :
846 findLine(array, offset, mid, max);

Completed in 39 milliseconds