Searched refs:vtype (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DSingleElementNodeProperty.java120 Class vtype = v.getClass();
121 TagAndType tt=typeNames.get(vtype); // quick way that usually works
125 if(e.getKey().isAssignableFrom(vtype)) {
/openjdk7/jdk/make/tools/src/build/tools/hasher/
H A DHasher.java58 String vtype = "String"; // Value type field in class:Hasher
99 vtype = (String)i.next();
273 pw.println(ind + " extends sun.util.PreHashedMap<" + vtype +">");
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCode.java1259 Type vtype = lvar[i].sym.type;
1260 if (!(vtype instanceof UninitializedType))
1261 vtype = types.erasure(vtype);
1262 frame.locals[i] = vtype;
1288 Type vtype = lvar[i].sym.type;
1289 if (!(vtype instanceof UninitializedType))
1290 vtype = types.erasure(vtype);
1291 locals[i] = vtype;
[all...]
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java1118 Class<?> vtype = ftype;
1119 if (ftype != int.class) vtype = Object.class;
1122 .changeReturnType(vtype));
1127 .changeParameterType(last, vtype));
2007 MethodType vtype = type.changeReturnType(void.class);
2008 if (done.add(vtype))
2009 testInvokers(vtype);
/openjdk7/hotspot/src/share/vm/opto/
H A Dlibrary_call.cpp2310 BasicType vtype = sig->type_at(sig->count()-1)->basic_type(); local
2311 if (vtype == T_ADDRESS_HOLDER && callee()->name() == ciSymbol::putAddress_name())
2312 vtype = T_ADDRESS; // it is really a C void*
2313 assert(vtype == type, "putter must accept the expected value");

Completed in 65 milliseconds