Searched refs:xPos (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DGraphicsUtilities.java129 int xPos = Math.min(d.width - sz.width,
133 xPos = Math.max(xPos, minX);
135 component.setLocation(xPos, yPos);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_TextArea.h64 MsgRouting WmContextMenu(HWND hCtrl, UINT xPos, UINT yPos);
H A Dawt_Frame.h115 virtual MsgRouting WmSysCommand(UINT uCmdType, int xPos, int yPos);
H A Dawt_TextArea.cpp202 AwtTextArea::WmContextMenu(HWND hCtrl, UINT xPos, UINT yPos) { argument
280 p.x = xPos;
H A Dawt_Component.h584 virtual MsgRouting WmSysCommand(UINT uCmdType, int xPos, int yPos);
595 virtual MsgRouting WmContextMenu(HWND hCtrl, UINT xPos, UINT yPos) { argument
H A Dawt_Frame.cpp1120 MsgRouting AwtFrame::WmSysCommand(UINT uCmdType, int xPos, int yPos) argument
1138 return AwtWindow::WmSysCommand(uCmdType, xPos, yPos);
H A Dawt_Component.cpp2026 MsgRouting AwtComponent::WmSysCommand(UINT uCmdType, int xPos, int yPos) argument
/openjdk7/jdk/src/macosx/native/sun/font/
H A DAWTStrike.m208 jlong awtStrikePtr, jint glyphCode, jdouble xPos, jdouble yPos)
227 tx.tx += xPos;
240 path = AWTPathCreate(CGSizeMake(xPos, yPos));
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSliderUI.java1020 int xPos = xPositionForValue(value);
1021 paintMinorTickForHorizSlider( g, tickBounds, xPos );
1036 int xPos = xPositionForValue(value);
1037 paintMajorTickForHorizSlider( g, tickBounds, xPos );
1448 * Returns the value at the x position. If {@code xPos} is beyond the
1453 public int valueForXPosition( int xPos ) {
1461 if ( xPos <= trackLeft ) {
1464 else if ( xPos >= trackRight ) {
1468 int distanceFromTrackLeft = xPos - trackLeft;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthSliderUI.java657 public int valueForXPosition(int xPos) { argument
666 if (xPos <= trackLeft) {
668 } else if (xPos >= trackRight) {
671 int distanceFromTrackLeft = xPos - trackLeft;
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFontPanel.java961 float xPos, yPos = (float) canvasInset_Y;
968 xPos =
979 //oneLine.draw( g2, xPos, yPos );
980 tlDrawLine( g2, oneLine, xPos, yPos );

Completed in 138 milliseconds