/external/mockito/src/org/mockito/internal/creation/ |
D | DelegatingMethod.java | 20 public Class<?>[] getExceptionTypes() { in getExceptionTypes() method in DelegatingMethod 21 return method.getExceptionTypes(); in getExceptionTypes()
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/ |
D | FastConstructor.java | 31 public Class[] getExceptionTypes() { in getExceptionTypes() method in FastConstructor 32 return ((Constructor)member).getExceptionTypes(); in getExceptionTypes()
|
D | FastMethod.java | 48 public Class[] getExceptionTypes() { in getExceptionTypes() method in FastMethod 49 return ((Method)member).getExceptionTypes(); in getExceptionTypes()
|
D | FastMember.java | 33 abstract public Class[] getExceptionTypes(); in getExceptionTypes() method in FastMember
|
D | ConstructorDelegate.java | 101 ReflectUtils.getExceptionTypes(newInstance)); in generateClass()
|
/external/mockito/src/org/mockito/internal/invocation/ |
D | SerializableMethod.java | 29 exceptionTypes = method.getExceptionTypes(); in SerializableMethod() 45 public Class<?>[] getExceptionTypes() { in getExceptionTypes() method in SerializableMethod
|
D | MockitoMethod.java | 17 public Class<?>[] getExceptionTypes(); in getExceptionTypes() method
|
/external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/ |
D | InvocationHandlerAdapter.java | 80 public Class<?>[] getExceptionTypes() { in getExceptionTypes() method in InvocationHandlerAdapter.ProxiedMethod 81 return method.getExceptionTypes(); in getExceptionTypes()
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/ |
D | ReflectUtils.java | 92 public static Type[] getExceptionTypes(Member member) { in getExceptionTypes() method in ReflectUtils 94 return TypeUtils.getTypes(((Method)member).getExceptionTypes()); in getExceptionTypes() 96 return TypeUtils.getTypes(((Constructor)member).getExceptionTypes()); in getExceptionTypes() 412 public Type[] getExceptionTypes() { in getMethodInfo() method 413 return ReflectUtils.getExceptionTypes(member); in getMethodInfo()
|
D | MethodInfo.java | 29 abstract public Type[] getExceptionTypes(); in getExceptionTypes() method in MethodInfo
|
/external/android-mock/src/com/google/android/testing/mocking/ |
D | AndroidMockGenerator.java | 201 if (method.getExceptionTypes().length > 0) { in getMethodSignature() 205 for (Class<?> exception : method.getExceptionTypes()) { in getMethodSignature() 207 if (i < method.getExceptionTypes().length - 1) { in getMethodSignature() 270 constructor.getExceptionTypes(), clazz); in addConstructors()
|
/external/javassist/sample/evolve/ |
D | Evolution.java | 136 .getParameterTypes(), c.getExceptionTypes(), in makeAbstractClass() 154 .getExceptionTypes(), absClass); in makeAbstractClass()
|
/external/mockito/src/org/mockito/internal/stubbing/answers/ |
D | MethodInfo.java | 24 Class<?>[] exceptions = method.getExceptionTypes(); in isValidException()
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
D | InvocationHandlerGenerator.java | 53 …EmitUtils.wrap_undeclared_throwable(e, handler, method.getExceptionTypes(), UNDECLARED_THROWABLE_E… in generate()
|
D | InterfaceMaker.java | 63 ReflectUtils.getExceptionTypes(method)); in add()
|
D | MethodInterceptorGenerator.java | 103 method.getExceptionTypes()); in generate()
|
/external/javassist/src/main/javassist/ |
D | CtNewClass.java | 97 c.getExceptionTypes(), this); in inheritAllConstructors()
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
D | AddDelegateTransformer.java | 108 Type[] exceptions = TypeUtils.getTypes(m.getExceptionTypes()); in addDelegate()
|
/external/guava/guava-tests/test/com/google/common/reflect/ |
D | InvokableTest.java | 70 Prepender.constructor(String.class, int.class).getExceptionTypes()); in testConstructor_exceptionTypes() 124 assertEquals(ImmutableList.of(), delegate.getExceptionTypes()); in testStaticMethod_exceptionTypes() 195 delegate.getExceptionTypes()); in testInstanceMethod_exceptionTypes()
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
D | SimpleTimeLimiter.java | 179 for (Class<?> exType : method.getExceptionTypes()) { in declaresInterruptedEx()
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | JavaSourceWriter.java | 182 for (Class exception : method.getExceptionTypes()) { in startMethod()
|
/external/guava/guava/src/com/google/common/reflect/ |
D | Invokable.java | 129 public final ImmutableList<TypeToken<? extends Throwable>> getExceptionTypes() { in getExceptionTypes() method in Invokable
|
/external/javassist/src/main/javassist/tools/reflect/ |
D | Reflection.java | 328 m.getParameterTypes(), m.getExceptionTypes(), in processMethods0()
|
/external/easymock/src/org/easymock/internal/ |
D | RecordState.java | 357 Class<?>[] exceptions = lastInvocation.getMethod().getExceptionTypes(); in isValidThrowable()
|
/external/javassist/src/main/javassist/util/proxy/ |
D | ProxyFactory.java | 1060 setThrows(minfo, cp, cons.getExceptionTypes()); in makeConstructor() 1174 Class[] exceptions = orig.getExceptionTypes(); in setThrows()
|