Searched refs:yEnd (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/swing/text/
H A DTextComponentPrintable.java132 * yStart and yEnd when row is handled by updatePagesMetrics it is removed
141 * yStart and yEnd.
745 * First step is to find yStart and yEnd for the every document position.
746 * Second step is to merge all intersected segments ( [yStart, yEnd] ).
780 int yEnd = Integer.MIN_VALUE;
782 if (yEnd < segment.start) {
783 if (yEnd != Integer.MIN_VALUE) {
784 rowsMetrics.add(new IntegerSegment(yStart, yEnd));
787 yEnd = segment.end;
789 yEnd
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPathGraphics.java1579 protected void deviceDrawLine(int xBegin, int yBegin, int xEnd, int yEnd, argument
1587 draw(new Line2D.Float(xBegin, yBegin, xEnd, yEnd));
1603 Point2D.Float end_pos = new Point2D.Float(xEnd, yEnd);
1642 (((xBegin == xEnd) || (yBegin == yEnd)) &&
1652 draw(new Line2D.Float(xBegin, yBegin, xEnd, yEnd));
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPathGraphics.java758 int xEnd, int yEnd, Color color) {
760 draw(new Line2D.Float(xBegin, yBegin, xEnd, yEnd));
757 deviceDrawLine(int xBegin, int yBegin, int xEnd, int yEnd, Color color) argument
H A DPathGraphics.java1120 int xEnd, int yEnd, Color color);
1119 deviceDrawLine(int xBegin, int yBegin, int xEnd, int yEnd, Color color) argument

Completed in 50 milliseconds