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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DType.java376 public static boolean containsAny(List<Type> ts1, List<Type> ts2) { argument
377 for (Type t : ts1)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java1214 List<Type> ts1 = excl(t, ts.tail);
1215 if (types.isSubtype(ts.head, t)) return ts1;
1216 else if (ts1 == ts.tail) return ts;
1217 else return ts1.prepend(ts.head);
1223 List<Type> union(List<Type> ts1, List<Type> ts2) { argument
1224 List<Type> ts = ts1;
1232 List<Type> diff(List<Type> ts1, List<Type> ts2) { argument
1233 List<Type> ts = ts1;
1241 public List<Type> intersect(List<Type> ts1, List<Type> ts2) { argument
1243 for (List<Type> l = ts1;
[all...]

Completed in 985 milliseconds