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

/openjdk9/langtools/test/tools/javac/cast/intersection/
H A DIntersectionTypeCastTest.java216 .withDimension("CLAZZ1", (x, ty) -> x.types1[0] = ty, ClassKind.values())
217 .withDimension("INTF11", (x, ty) -> x.types1[1] = ty, InterfaceKind.values())
218 .withDimension("INTF21", (x, ty) -> x.types1[2] = ty, InterfaceKind.values())
228 Type[] types = i == 0 ? types1 : types2;
239 Type[] types = i == 0 ? types1 : types2;
252 Type[] types1 = new Type[3]; field in class:IntersectionTypeCastTest
278 CastInfo cast1 = new CastInfo(castKinds[0], types1);
/openjdk9/langtools/test/tools/javac/types/
H A DBoxingConversionTest.java49 Type[] types1; field in class:BoxingConversionTest
92 return harness.types1;
96 return harness.types1;
191 types1 = join(Type.class, primitiveTypes, boxedTypes);
H A DPrimitiveConversionTest.java50 Type[] types1; field in class:PrimitiveConversionTest
93 return harness.types1;
97 return harness.types1;
214 types1 = join(Type.class, primitiveTypes, referenceTypes, arrayTypes);
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DLocalVariableTypesCalculator.java215 private Map<Symbol, LvarType> getUnionTypes(final Map<Symbol, LvarType> types1, final Map<Symbol, LvarType> types2) { argument
216 if(types1 == types2 || types1.isEmpty()) {
219 return types1;
221 final Set<Symbol> commonSymbols = new HashSet<>(types1.keySet());
226 final int types1Size = types1.size();
232 final LvarType type1 = types1.get(symbol);
238 union = cloneMap(types1);
252 return matches1 ? types1 : matches2 ? types2 : union;
257 union = cloneMap(types1);
[all...]
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java1504 List<Type> types1 = types.erasure(mt1.getParameterTypes())
1507 while (!types1.isEmpty() && !types2.isEmpty()) {
1508 if (types1.head.tsym != types2.head.tsym)
1510 types1 = types1.tail;
1513 return types1.isEmpty() && types2.isEmpty();

Completed in 68 milliseconds