HomeSort by relevance Sort by last modified time
    Searched refs:exceptionTypes (Results 1 - 25 of 56) sorted by null

1 2 3

  /libcore/luni/src/main/java/libcore/reflect/
GenericSignatureParser.java 72 public ListOfTypes exceptionTypes;
167 Class<?>[] exceptionTypes = m.getExceptionTypes();
168 if (exceptionTypes.length == 0) {
169 this.exceptionTypes = ListOfTypes.EMPTY;
171 this.exceptionTypes = new ListOfTypes(exceptionTypes);
198 Class<?>[] exceptionTypes = c.getExceptionTypes();
199 if (exceptionTypes.length == 0) {
200 this.exceptionTypes = ListOfTypes.EMPTY;
202 this.exceptionTypes = new ListOfTypes(exceptionTypes)
    [all...]
  /external/mockito/src/org/mockito/internal/invocation/
SerializableMethod.java 21 private Class<?>[] exceptionTypes;
29 exceptionTypes = method.getExceptionTypes();
46 return exceptionTypes;
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
CheckedProviderMethod.java 52 private final List<TypeLiteral<?>> exceptionTypes;
63 List<TypeLiteral<?>> exceptionTypes,
73 this.exceptionTypes = exceptionTypes;
103 binder, exceptionTypes, sbinder.getExceptionTypes(), checkedProvider);
ThrowingProviderBinder.java 143 private final List<Class<? extends Throwable>> exceptionTypes;
155 this.exceptionTypes = getExceptionType(interfaceType);
159 this.exceptionTypes = ImmutableList.of();
164 return exceptionTypes;
226 binder, cxtorLiteral.getExceptionTypes(cxtor), exceptionTypes, interfaceType);
352 for (Class<? extends Throwable> exceptionType : exceptionTypes) {
CheckedProviderMethodsModule.java 117 List<TypeLiteral<?>> exceptionTypes = typeLiteral.getExceptionTypes(method);
128 parameterProviders, scopeAnnotation, throwingProvider, exceptionTypes,
  /external/javassist/src/main/javassist/
CtNewWrappedConstructor.java 27 CtClass[] exceptionTypes,
36 cons.setExceptionTypes(exceptionTypes);
CtNewMethod.java 451 * @param exceptionTypes a list of the exception types.
462 CtClass[] exceptionTypes,
468 exceptionTypes, body, constParam, declaring);
CtNewWrappedMethod.java 29 CtClass[] exceptionTypes,
38 mt.setExceptionTypes(exceptionTypes);
  /libcore/libart/src/main/java/java/lang/reflect/
AbstractMethod.java 256 Class<?>[] exceptionTypes;
261 exceptionTypes = m.getExceptionTypes();
265 exceptionTypes = c.getExceptionTypes();
270 parser.parseForMethod((GenericDeclaration) this, signatureAttribute, exceptionTypes);
274 exceptionTypes);
276 return new GenericInfo(parser.exceptionTypes, parser.parameterTypes,
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldGenericTypesTest.java 228 Type[] exceptionTypes = declaredMethods.getGenericExceptionTypes();
229 assertLenghtOne(exceptionTypes);
230 assertEquals(typeVariable, exceptionTypes[0]);
231 assertInstanceOf(TypeVariable.class, exceptionTypes[0]);
232 TypeVariable<?> methodTypeVariable = (TypeVariable<?>) exceptionTypes[0];
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
CodeEmitter.java 73 Type[] exceptionTypes;
75 State(ClassInfo classInfo, int access, Signature sig, Type[] exceptionTypes) {
79 this.exceptionTypes = exceptionTypes;
97 return exceptionTypes;
106 CodeEmitter(ClassEmitter ce, MethodVisitor mv, int access, Signature sig, Type[] exceptionTypes) {
109 state = new State(ce.getClassInfo(), access, sig, exceptionTypes);
  /libcore/ojluni/src/main/java/java/lang/reflect/
Proxy.java 608 Class<?>[] exceptionTypes = method.getExceptionTypes();
611 exceptions.set(i - 1, intersectExceptions(exceptions.get(i - 1), exceptionTypes));
614 exceptions.add(exceptionTypes);
    [all...]
  /external/clang/lib/AST/
Type.cpp 848 SmallVector<QualType, 4> exceptionTypes;
858 exceptionTypes.push_back(newExceptionType);
863 llvm::makeArrayRef(exceptionTypes).copy(Ctx);
    [all...]
  /external/guice/extensions/persist/lib/
cglib-nodep-3.0.jar 
javassist.jar 
  /external/guice/lib/build/
cglib-3.1.jar 
  /prebuilts/devtools/tools/lib/
cglib-nodep-3.1.jar 
  /prebuilts/tools/common/cglib/
cglib-2.2.3.jar 
cglib-nodep-2.2.3.jar 
  /prebuilts/tools/common/m2/repository/cglib/cglib-nodep/2.1_3/
cglib-nodep-2.1_3.jar 
  /prebuilts/tools/common/m2/repository/cglib/cglib-nodep/2.2.2/
cglib-nodep-2.2.2.jar 
  /prebuilts/tools/common/m2/repository/cglib/cglib-nodep/3.1/
cglib-nodep-3.1.jar 
  /external/robolectric/v1/lib/test/
mockito-core-1.8.5.jar 
  /external/testng/lib-supplied/
guice-2.0.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/3.1.0/
sisu-guice-3.1.0.jar 

Completed in 1170 milliseconds

1 2 3