Home
last modified time | relevance | path

Searched refs:genericExceptionTypes (Results 1 – 4 of 4) sorted by relevance

/dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
DConstructor.java61 ListOfTypes genericExceptionTypes; field in Constructor
74 genericExceptionTypes = parser.exceptionTypes; in initGenericTypes()
166 Types.getClonedTypeArray(genericExceptionTypes); in toGenericString()
214 return Types.getClonedTypeArray(genericExceptionTypes); in getGenericExceptionTypes()
DMethod.java64 private ListOfTypes genericExceptionTypes; field in Method
78 genericExceptionTypes = parser.exceptionTypes; in initGenericTypes()
175 genericExceptionTypes); in toGenericString()
223 return Types.getClonedTypeArray(genericExceptionTypes); in getGenericExceptionTypes()
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
DGenericTypesTest.java271 Type[] genericExceptionTypes = method.getGenericExceptionTypes(); in testException() local
272 assertLenghtOne(genericExceptionTypes); in testException()
273 assertEquals(typeVariable, genericExceptionTypes[0]); in testException()
DMethodTest.java553 Type[] genericExceptionTypes = method.getGenericExceptionTypes(); in test_getGenericExceptionTypes() local
554 assertEquals(1, genericExceptionTypes.length); in test_getGenericExceptionTypes()
555 assertTrue(genericExceptionTypes[0] instanceof TypeVariable<?>); in test_getGenericExceptionTypes()
558 (TypeVariable<Class<ExceptionTest<?>>>) genericExceptionTypes[0]; in test_getGenericExceptionTypes()