HomeSort by relevance Sort by last modified time
    Searched refs:throwsList (Results 1 - 7 of 7) sorted by null

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
CodeItem.java 67 private final TypeList throwsList;
82 * @param throwsList {@code non-null;} list of possibly-thrown exceptions,
86 TypeList throwsList) {
97 if (throwsList == null) {
98 throw new NullPointerException("throwsList == null");
104 this.throwsList = throwsList;
253 int size = throwsList.size();
255 out.annotate(0, " throws " + StdTypeList.toHuman(throwsList));
EncodedMethod.java 51 * @param throwsList {@code non-null;} list of possibly-thrown exceptions,
55 DalvCode code, TypeList throwsList) {
68 this.code = new CodeItem(method, code, isStatic, throwsList);
  /dalvik/dx/src/com/android/dx/dex/file/
CodeItem.java 58 private final TypeList throwsList;
73 * @param throwsList {@code non-null;} list of possibly-thrown exceptions,
77 TypeList throwsList) {
88 if (throwsList == null) {
89 throw new NullPointerException("throwsList == null");
95 this.throwsList = throwsList;
244 int size = throwsList.size();
246 out.annotate(0, " throws " + StdTypeList.toHuman(throwsList));
EncodedMethod.java 50 * @param throwsList {@code non-null;} list of possibly-thrown exceptions,
54 DalvCode code, TypeList throwsList) {
67 this.code = new CodeItem(method, code, isStatic, throwsList);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CodeItem.java 67 private final TypeList throwsList;
82 * @param throwsList {@code non-null;} list of possibly-thrown exceptions,
86 TypeList throwsList) {
97 if (throwsList == null) {
98 throw new NullPointerException("throwsList == null");
104 this.throwsList = throwsList;
253 int size = throwsList.size();
255 out.annotate(0, " throws " + StdTypeList.toHuman(throwsList));
EncodedMethod.java 51 * @param throwsList {@code non-null;} list of possibly-thrown exceptions,
55 DalvCode code, TypeList throwsList) {
68 this.code = new CodeItem(method, code, isStatic, throwsList);
  /external/javassist/src/main/javassist/compiler/
Parser.java 126 ASTList throwsList = null;
130 throwsList = ASTList.append(throwsList, parseClassType(tbl));
139 ASTList.make(parms, throwsList, null)));
    [all...]

Completed in 444 milliseconds