Searched defs:hitX (Results 1 - 2 of 2) sorted by relevance
/openjdk7/jdk/src/macosx/classes/apple/laf/ |
H A D | JRSUIUtils.java | 115 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 D | JRSUIControl.java | 51 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 281 final Hit hit = JRSUIConstants.getHit(getNativeHitPart(cfDictionaryPtr, priorEncodedProperties, currentEncodedProperties, x, y, w, h, hitX, 2 * y + h - hitY));
|
Completed in 82 milliseconds