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 93 private ListOfTypes genericExceptionTypes;
107 genericExceptionTypes = parser.exceptionTypes;
201 genericExceptionTypes);
245 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 1903 milliseconds