Searched refs:wtype (Results 1 - 6 of 6) sorted by relevance

/openjdk9/jdk/src/java.base/share/classes/sun/invoke/util/
H A DWrapper.java55 private Wrapper(Class<?> wtype, Class<?> ptype, char tchar, Object emptyArray, int format) { argument
56 this.wrapperType = wtype;
61 this.wrapperSimpleName = wtype.getSimpleName();
494 Class<T> wtype = wrapperType(type);
495 if (wtype.isInstance(x)) {
496 return wtype.cast(x);
502 throw newClassCastException(wtype, sourceType);
511 assert (result == null ? Void.class : result.getClass()) == wtype;
/openjdk9/langtools/src/jdk.jshell/share/classes/jdk/jshell/
H A DWrap.java79 RangeWrap wtype = new RangeWrap(source, rtype);
80 Wrap wVarDecl = new VarDeclareWrap(wtype, brackets, wname);
91 wtype, brackets + " ", wname, "_ =\n ", winit, semi(winit),
484 VarDeclareWrap(Wrap wtype, String brackets, Wrap wname) { argument
485 super(" public static ", wtype, brackets + " ", wname, semi(wname));
/openjdk9/hotspot/src/share/vm/opto/
H A Dcastnode.cpp250 const TypeInt* wtype = TypeInt::make(MAX2(in_type->_lo, lo1), local
253 if (wtype != type()) {
254 set_type(wtype);
H A Dconvertnode.cpp285 const TypeLong* wtype = TypeLong::make(MAX2((jlong)in_type->_lo, lo1), local
288 if (wtype != type()) {
289 set_type(wtype);
/openjdk9/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXWindowPeer.java2000 XAtomList wtype = new XAtomList();
2001 wtype.add(typeAtom);
2003 setAtomListProperty(getWindow(), wtype);
H A DXWM.java1743 XAtomList wtype = XAtom.get("_NET_WM_WINDOW_TYPE").getAtomListPropertyList( w );
1744 return wtype.contains( XAtom.get("_NET_WM_WINDOW_TYPE_DESKTOP") );

Completed in 67 milliseconds