Searched refs:curY (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/test/java/awt/Mouse/MouseModifiersUnitTest/
H A DExtraButtonDrag.java106 int curY = y0;
119 robot.mouseMove(curX, curY);
122 while (curY != y1 ){
123 curY += dy;
124 robot.mouseMove(curX, curY);
/openjdk7/jdk/src/share/classes/java/awt/
H A DGridBagLayout.java923 int curX, curY;
937 curY = constraints.gridy;
949 if (curY < 0){
950 curY = ++preMaximumArrayXIndex;
962 preMaximumArrayXIndex = Math.max(curY + curHeight, preMaximumArrayXIndex);
990 // ( respectively curY+curHeight for xMaxArray, weightX ) where
1001 int curY = 0; // constraints.gridy
1049 curY = constraints.gridy;
1058 if (curX < 0 && curY < 0) {
1060 curY
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DDiagramConnectionWidget.java131 int curY = newControlPoints.get(i).y;
133 this.yPoints[i] = curY;
136 minY = Math.min(minY, curY);
137 maxY = Math.max(maxY, curY);
/openjdk7/jdk/test/java/awt/MouseAdapter/MouseAdapterUnitTest/
H A DMouseAdapterUnitTest.java166 int curY = y0;
172 robot.mouseMove(curX, curY);
174 while (curY != y1 ){
175 curY += dy;
176 robot.mouseMove(curX, curY);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DAnnotatedMemoryPanel.java183 int curY = lineHeight;
187 g.drawString(s, addrX, curY);
194 g.drawString(s, dataX, curY);
195 curY += lineHeight;
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DRenderer.java120 private int curY() { method in class:Renderer.ScanlineIterator
452 y = it.curY();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DOldHierarchicalLayoutManager.java760 int curY = 0;
763 n.getData().setCoordinate(curY);
765 curY += n.getData().getWidth();
767 curY += OFFSET;
H A DHierarchicalLayoutManager.java1357 int curY = 0;
1373 n.y = curY;
1377 n.y = curY + baseLine + (maxHeight - (n.height - n.yOffset - n.bottomYOffset)) / 2 - n.yOffset;
1388 curY += maxHeight + baseLine + bottomBaseLine;
1389 curY += layerOffset + (int) Math.sqrt(maxXOffset);

Completed in 1506 milliseconds