Home
last modified time | relevance | path

Searched refs:getGenericExceptionTypes (Results 1 – 7 of 7) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/
DGenericExceptionsTest.java33 Arrays.asList(method.getGenericExceptionTypes())); in testGenericExceptionsOfMethodsWithTypeParameters()
39 Arrays.asList(method.getGenericExceptionTypes())); in testGenericExceptionsOfMethodsWithGenericParameters()
45 Arrays.asList(constructor.getGenericExceptionTypes())); in testGenericExceptionsOfConstructorsWithTypeParameters()
51 Arrays.asList(constructor.getGenericExceptionTypes())); in testGenericExceptionsOfConstructorsWithGenericParameters()
56 TypeVariable typeVariable = getOnlyValue(constructor.getGenericExceptionTypes(), in testConstructorThrowingTypeVariable()
64 TypeVariable typeVariable = getOnlyValue(method.getGenericExceptionTypes(), in testMethodThrowingTypeVariable()
72 TypeVariable typeVariable = getOnlyValue(method.getGenericExceptionTypes(), in testThrowingMethodTypeParameter()
80 Type[] exceptions = method.getGenericExceptionTypes(); in testThrowingMethodThrowsEverything()
DOldGenericTypesTest.java217 Type[] genericExceptionTypes = method.getGenericExceptionTypes(); in testException()
228 Type[] exceptionTypes = declaredMethods.getGenericExceptionTypes(); in testException()
/libcore/ojluni/src/main/java/java/lang/reflect/
DConstructor.java176 public Type[] getGenericExceptionTypes() { in getGenericExceptionTypes() method in Constructor
177 return super.getGenericExceptionTypes(); in getGenericExceptionTypes()
DMethod.java223 public Type[] getGenericExceptionTypes() { in getGenericExceptionTypes() method in Method
224 return super.getGenericExceptionTypes(); in getGenericExceptionTypes()
DExecutable.java157 Type[] exceptions = getGenericExceptionTypes(); in sharedToGenericString()
459 public Type[] getGenericExceptionTypes() { in getGenericExceptionTypes() method in Executable
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DConstructorTest.java349 types = ctor.getGenericExceptionTypes(); in test_getGenericExceptionTypes()
359 types = constructor.getGenericExceptionTypes(); in test_getGenericExceptionTypes()
DMethodTest.java462 Type[] genericExceptionTypes = method.getGenericExceptionTypes(); in test_getGenericExceptionTypes()