Home
last modified time | relevance | path

Searched refs:getExceptionTypes (Results 1 – 25 of 37) sorted by relevance

12

/external/mockito/src/org/mockito/internal/creation/
DDelegatingMethod.java20 public Class<?>[] getExceptionTypes() { in getExceptionTypes() method in DelegatingMethod
21 return method.getExceptionTypes(); in getExceptionTypes()
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
DFastConstructor.java31 public Class[] getExceptionTypes() { in getExceptionTypes() method in FastConstructor
32 return ((Constructor)member).getExceptionTypes(); in getExceptionTypes()
DFastMethod.java48 public Class[] getExceptionTypes() { in getExceptionTypes() method in FastMethod
49 return ((Method)member).getExceptionTypes(); in getExceptionTypes()
DFastMember.java33 abstract public Class[] getExceptionTypes(); in getExceptionTypes() method in FastMember
DConstructorDelegate.java101 ReflectUtils.getExceptionTypes(newInstance)); in generateClass()
/external/mockito/src/org/mockito/internal/invocation/
DSerializableMethod.java29 exceptionTypes = method.getExceptionTypes(); in SerializableMethod()
45 public Class<?>[] getExceptionTypes() { in getExceptionTypes() method in SerializableMethod
DMockitoMethod.java17 public Class<?>[] getExceptionTypes(); in getExceptionTypes() method
/external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
DInvocationHandlerAdapter.java80 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/
DReflectUtils.java92 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()
DMethodInfo.java29 abstract public Type[] getExceptionTypes(); in getExceptionTypes() method in MethodInfo
/external/android-mock/src/com/google/android/testing/mocking/
DAndroidMockGenerator.java201 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/
DEvolution.java136 .getParameterTypes(), c.getExceptionTypes(), in makeAbstractClass()
154 .getExceptionTypes(), absClass); in makeAbstractClass()
/external/mockito/src/org/mockito/internal/stubbing/answers/
DMethodInfo.java24 Class<?>[] exceptions = method.getExceptionTypes(); in isValidException()
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
DInvocationHandlerGenerator.java53 …EmitUtils.wrap_undeclared_throwable(e, handler, method.getExceptionTypes(), UNDECLARED_THROWABLE_E… in generate()
DInterfaceMaker.java63 ReflectUtils.getExceptionTypes(method)); in add()
DMethodInterceptorGenerator.java103 method.getExceptionTypes()); in generate()
/external/javassist/src/main/javassist/
DCtNewClass.java97 c.getExceptionTypes(), this); in inheritAllConstructors()
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
DAddDelegateTransformer.java108 Type[] exceptions = TypeUtils.getTypes(m.getExceptionTypes()); in addDelegate()
/external/guava/guava-tests/test/com/google/common/reflect/
DInvokableTest.java70 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/
DSimpleTimeLimiter.java179 for (Class<?> exType : method.getExceptionTypes()) { in declaresInterruptedEx()
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DJavaSourceWriter.java182 for (Class exception : method.getExceptionTypes()) { in startMethod()
/external/guava/guava/src/com/google/common/reflect/
DInvokable.java129 public final ImmutableList<TypeToken<? extends Throwable>> getExceptionTypes() { in getExceptionTypes() method in Invokable
/external/javassist/src/main/javassist/tools/reflect/
DReflection.java328 m.getParameterTypes(), m.getExceptionTypes(), in processMethods0()
/external/easymock/src/org/easymock/internal/
DRecordState.java357 Class<?>[] exceptions = lastInvocation.getMethod().getExceptionTypes(); in isValidThrowable()
/external/javassist/src/main/javassist/util/proxy/
DProxyFactory.java1060 setThrows(minfo, cp, cons.getExceptionTypes()); in makeConstructor()
1174 Class[] exceptions = orig.getExceptionTypes(); in setThrows()

12