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

/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIUtils.java115 public static Hit getHitForPoint(final JRSUIControl control, final double x, final double y, final double w, final double h, final double hitX, final double hitY) { argument
116 return control.getHitForPoint(x, y, w, h, hitX, hitY);
H A DJRSUIControl.java51 private static native int getNativeHitPart( long cfDictionaryPtr, long oldProperties, long newProperties, double x, double y, double w, double h, double hitX, double hitY); argument
278 Hit getHitForPoint(final double x, final double y, final double w, final double h, final double hitX, final double hitY) { argument
280 // reflect hitY about the midline of the control before sending to native
281 final Hit hit = JRSUIConstants.getHit(getNativeHitPart(cfDictionaryPtr, priorEncodedProperties, currentEncodedProperties, x, y, w, h, hitX, 2 * y + h - hitY));

Completed in 2135 milliseconds