Home
last modified time | relevance | path

Searched refs:toDocumentLineNumber (Results 1 – 16 of 16) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.jface.text/src/org/eclipse/jface/text/source/
H A DAnnotationRulerColumn.java291 lineNumber= fParentRuler.toDocumentLineNumber(event.y); in createControl()
304 lineNumber= fParentRuler.toDocumentLineNumber(event.y); in createControl()
317 lineNumber= fParentRuler.toDocumentLineNumber(event.y); in createControl()
410 int line= toDocumentLineNumber(event.y);
897 public int toDocumentLineNumber(int y_coordinate) {
898 return fParentRuler.toDocumentLineNumber(y_coordinate);
H A DIVerticalRulerInfo.java66 int toDocumentLineNumber(int y_coordinate); in toDocumentLineNumber() method
H A DVerticalRuler.java169 fLastMouseButtonActivityLine= toDocumentLineNumber(event.y); in createControl()
174 fLastMouseButtonActivityLine= toDocumentLineNumber(event.y); in createControl()
508 public int toDocumentLineNumber(int y_coordinate) { in toDocumentLineNumber() method in VerticalRuler
554 fLastMouseButtonActivityLine= toDocumentLineNumber(y); in setLocationOfLastMouseButtonActivity()
H A DLineNumberChangeRulerColumn.java88 public int toDocumentLineNumber(int y_coordinate) { in toDocumentLineNumber() method in LineNumberChangeRulerColumn
89 return getParentRuler().toDocumentLineNumber(y_coordinate); in toDocumentLineNumber()
H A DOverviewRulerHoverManager.java55 int line= getVerticalRulerInfo().toDocumentLineNumber(location.y); in computeInformation()
H A DAbstractRulerColumn.java558 public final int toDocumentLineNumber(int y_coordinate) { in toDocumentLineNumber() method in AbstractRulerColumn
559 return getParentRuler().toDocumentLineNumber(y_coordinate); in toDocumentLineNumber()
H A DChangeRulerColumn.java347 public int toDocumentLineNumber(int y_coordinate) { in toDocumentLineNumber() method in ChangeRulerColumn
348 return getParentRuler().toDocumentLineNumber(y_coordinate); in toDocumentLineNumber()
H A DCompositeRuler.java681 fLastMouseButtonActivityLine= toDocumentLineNumber(fLocation.y); in getLineOfLastMouseButtonActivity()
688 public int toDocumentLineNumber(int y_coordinate) { in toDocumentLineNumber() method in CompositeRuler
H A DOverviewRuler.java1116 fLastMouseButtonActivityLine= toDocumentLineNumber(event.y); in handleMouseDown()
1389 public int toDocumentLineNumber(int y_coordinate) { in toDocumentLineNumber() method in OverviewRuler
H A DAnnotationBarHoverManager.java568 return event == null ? -1 : fVerticalRulerInfo.toDocumentLineNumber(event.y); in getHoverLine()
H A DLineNumberRulerColumn.java133 int newLine= fParentRuler.toDocumentLineNumber(event.y); in mouseMove()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/
H A DVerticalRulerInfoStub.java58 public int toDocumentLineNumber(int y_coordinate) { in toDocumentLineNumber() method in VerticalRulerInfoStub
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.ui.editors/src/org/eclipse/ui/internal/texteditor/
H A DAnnotationColumn.java215 public int toDocumentLineNumber(int y_coordinate) { in toDocumentLineNumber() method in AnnotationColumn
217 return ((IVerticalRulerInfo)fDelegate).toDocumentLineNumber(y_coordinate); in toDocumentLineNumber()
H A DLineNumberColumn.java163 public int toDocumentLineNumber(int y_coordinate) { in toDocumentLineNumber() method in LineNumberColumn
165 return ((IVerticalRulerInfo)fDelegate).toDocumentLineNumber(y_coordinate); in toDocumentLineNumber()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.jface.text/src/org/eclipse/jface/internal/text/revisions/
H A DRevisionPainter.java331 updateFocusLine(toDocumentLineNumber(e.y)); in mouseEnter()
345 updateFocusLine(toDocumentLineNumber(e.y)); in mouseMove()
1369 …updateFocusLine(toDocumentLineNumber(fWidget.toControl(fWidget.getDisplay().getCursorLocation()).y…
1393 private int toDocumentLineNumber(int y) {
1394 return fParentRuler.toDocumentLineNumber(y);
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.jface.text/projection/org/eclipse/jface/text/source/projection/
H A DProjectionRulerColumn.java218 ProjectionAnnotation annotation= findAnnotation(toDocumentLineNumber(e.y), false); in createControl()