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

/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestN1.java116 TypeVariable[] tvs = cls.getTypeParameters();
118 tvs.length == 2 :
127 TypeVariable[] tvs = in1.getTypeParameters();
129 tvs.length == 0 :
138 TypeVariable[] tvs = in1.getTypeParameters();
140 tvs.length == 1 :
202 TypeVariable[] tvs = in1.getTypeParameters();
204 tvs.length == 3 :
H A DTestC2.java222 TypeVariable[] tvs = I1.class.getTypeParameters();
224 tvs.length == 2 :
227 tvs[0].getName().equals("X1") :
230 tvs[1].getName().equals("X2") :
244 tvs = I2.class.getTypeParameters();
246 tvs.length == 3 :
249 tvs[0].getName().equals("E1") :
252 tvs[1].getName().equals("E2") :
255 tvs[2].getName().equals("E3") :
262 tvs
[all...]
H A DTestC1.java89 TypeVariable[] tvs = cls.getTypeParameters();
91 tvs.length == 1 :
93 TypeVariable tv = tvs[0];
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapName.java598 private final Vector tvs = new Vector(); field in class:LdapName.Rdn
603 // tvs.size() if there is none.
605 for (i = 0; i < tvs.size(); i++) {
606 int diff = tv.compareTo(tvs.elementAt(i));
614 tvs.insertElementAt(tv, i);
619 for (int i = 0; i < tvs.size(); i++) {
623 buf.append(tvs.elementAt(i));
636 int minSize = Math.min(tvs.size(), that.tvs.size());
639 TypeAndValue tv = (TypeAndValue)tvs
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java605 for (List<Type> tvs = tvars, args = arguments;
606 tvs.nonEmpty();
607 tvs = tvs.tail, args = args.tail) {
610 List<Type> bounds = types.subst(types.getBounds((TypeVar)tvs.head), tvars, arguments);

Completed in 201 milliseconds