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

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAtom.java361 * 'property_type' on window 'window'. Format of the property must be 32.
363 public long get32Property(long window, long property_type) { argument
370 false, property_type);
376 if (getter.getActualType() != property_type || getter.getActualFormat() != 32) {
582 public void setAtomData(long window, long property_type, byte[] data) { argument
585 setAtomData8(window, property_type, bdata, data.length);
593 * 'property_type' on window 'window'. Format of the property must be 8.
595 public byte[] getByteArrayProperty(long window, long property_type) { argument
602 false, property_type);
608 if (getter.getActualType() != property_type || gette
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c426 * 'property_type' on window 'w'. Format of the property must be 8.
431 awt_getProperty8(Window w, Atom property, Atom property_type) argument
452 property, 0, 0xFFFF, False, property_type,
460 if (actual_type != property_type || actual_format != 8) {
472 * 'property_type' on window 'w'. Format of the property must be 32.
475 awt_getProperty32(Window w, Atom property, Atom property_type) argument
499 property, 0, 1, False, property_type,
507 if (actual_type != property_type || actual_format != 32) {

Completed in 37 milliseconds