HomeSort by relevance Sort by last modified time
    Searched refs:genericExceptionTypes (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/main/java/java/lang/reflect/
Constructor.java 57 ListOfTypes genericExceptionTypes;
70 genericExceptionTypes = parser.exceptionTypes;
153 Types.getClonedTypeArray(genericExceptionTypes);
198 return Types.getClonedTypeArray(genericExceptionTypes);
Method.java 92 private ListOfTypes genericExceptionTypes;
106 genericExceptionTypes = parser.exceptionTypes;
200 genericExceptionTypes);
244 return Types.getClonedTypeArray(genericExceptionTypes);
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldGenericTypesTest.java 217 Type[] genericExceptionTypes = method.getGenericExceptionTypes();
218 assertLenghtOne(genericExceptionTypes);
219 assertEquals(typeVariable, genericExceptionTypes[0]);
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
MethodTest.java 462 Type[] genericExceptionTypes = method.getGenericExceptionTypes();
463 assertEquals(1, genericExceptionTypes.length);
464 assertTrue(genericExceptionTypes[0] instanceof TypeVariable<?>);
467 (TypeVariable<Class<ExceptionTest<?>>>) genericExceptionTypes[0];
    [all...]

Completed in 78 milliseconds