HomeSort by relevance Sort by last modified time
    Searched defs:exceptionTypes (Results 1 - 6 of 6) sorted by null

  /libcore/luni/src/main/java/java/lang/reflect/
Constructor.java 55 Class<?>[] exceptionTypes;
67 parser.parseForConstructor(this, signatureAttribute, exceptionTypes);
70 genericExceptionTypes = parser.exceptionTypes;
100 this.exceptionTypes = extypes; // may be null
294 if (exceptionTypes == null)
296 return exceptionTypes.clone();
451 if (exceptionTypes != null && exceptionTypes.length != 0) {
453 result.append(toString(exceptionTypes));
Method.java 82 private Class<?>[] exceptionTypes;
97 parser.parseForMethod(this, signatureAttribute, exceptionTypes);
100 genericExceptionTypes = parser.exceptionTypes;
112 this(orig.declaringClass, orig.parameterTypes, orig.exceptionTypes,
127 this.exceptionTypes = exceptTypes; // may be null
380 if (exceptionTypes == null) {
384 return exceptionTypes.clone();
550 if (exceptionTypes != null && exceptionTypes.length != 0) {
552 result.append(toString(exceptionTypes));
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
GenericSignatureParser.java 69 public ListOfTypes exceptionTypes;
156 this.exceptionTypes = new ListOfTypes(m.getExceptionTypes());
161 this.exceptionTypes = ListOfTypes.EMPTY;
184 this.exceptionTypes = new ListOfTypes(c.getExceptionTypes());
188 this.exceptionTypes = ListOfTypes.EMPTY;
411 exceptionTypes = new ListOfTypes(8);
418 exceptionTypes.add(parseTypeVariableSignature());
420 exceptionTypes.add(parseClassTypeSignature());
424 exceptionTypes = new ListOfTypes(rawExceptionTypes);
426 exceptionTypes = new ListOfTypes(0)
    [all...]
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 85 public List<ITypeReference> exceptionTypes;
556 exceptionTypes = new ArrayList<ITypeReference>(8);
563 exceptionTypes.add(parseTypeVariableSignature());
565 exceptionTypes.add(parseClassTypeSignature());
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldGenericTypesTest.java 282 Type[] exceptionTypes = declaredMethods.getGenericExceptionTypes();
283 assertLenghtOne(exceptionTypes);
284 assertEquals(typeVariable, exceptionTypes[0]);
285 assertInstanceOf(TypeVariable.class, exceptionTypes[0]);
286 TypeVariable<?> methodTypeVariable = (TypeVariable<?>) exceptionTypes[0];
  /prebuilt/common/ecj/
ecj.jar 

Completed in 1243 milliseconds