Searched defs:imgH (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIControl.java48 private static native int paintImage (int[] data, int imgW, int imgH, long cfDictionaryPtr, long oldProperties, long newProperties, double x, double y, double w, double h); argument
49 private static native int paintChangesImage (int[] data, int imgW, int imgH, long cfDictionaryPtr, long oldProperties, long newProperties, double x, double y, double w, double h, long byteBufferPtr); argument
207 public void paint(final int[] data, final int imgW, final int imgH, final double x, final double y, final double w, final double h) { argument
208 paintImage(data, imgW, imgH, x, y, w, h);
212 private synchronized int paintImage(final int[] data, final int imgW, final int imgH, final double x, final double y, final double w, final double h) { argument
215 return paintImage(data, imgW, imgH, cfDictionaryPtr, priorEncodedProperties, currentEncodedProperties, x, y, w, h);
224 return paintChangesImage(data, imgW, imgH, cfDictionaryPtr, priorEncodedProperties, currentEncodedProperties, x, y, w, h, localByteBuffer.ptr);
239 return paintChangesImage(data, imgW, imgH, cfDictionaryPtr, priorEncodedProperties, currentEncodedProperties, x, y, w, h, localByteBuffer.ptr);

Completed in 47 milliseconds