Searched defs:catches (Results 1 - 6 of 6) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDalvCode.java51 private CatchTable catches; field in class:DalvCode
94 this.catches = null;
111 catches = unprocessedCatches.build();
151 * Gets whether this instance has any catches at all (either typed
154 * @return whether this instance has any catches at all
196 return catches;
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DThrowingCstInsn.java31 private final TypeList catches; field in class:ThrowingCstInsn
39 * @param catches {@code non-null;} list of exceptions caught
44 TypeList catches, Constant cst) {
51 if (catches == null) {
52 throw new NullPointerException("catches == null");
55 this.catches = catches;
66 return constantString + " " + ThrowingInsn.toCatchString(catches);
72 return catches;
85 getSources(), catches
42 ThrowingCstInsn(Rop opcode, SourcePosition position, RegisterSpecList sources, TypeList catches, Constant cst) argument
[all...]
H A DThrowingInsn.java31 private final TypeList catches; field in class:ThrowingInsn
34 * Gets the string form of a register spec list to be used as a catches
37 * @param catches {@code non-null;} the catches list
40 public static String toCatchString(TypeList catches) { argument
45 int sz = catches.size();
48 sb.append(catches.getType(i).toHuman());
60 * @param catches {@code non-null;} list of exceptions caught
64 TypeList catches) {
71 if (catches
62 ThrowingInsn(Rop opcode, SourcePosition position, RegisterSpecList sources, TypeList catches) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DCodeItem.java57 /** {@code null-ok;} the catches, if needed; set in {@link #addContents} */
58 private CatchStructs catches; field in class:CodeItem
105 this.catches = null;
129 catches = new CatchStructs(code);
177 if (catches != null) {
179 out.println("catches");
180 catches.debugPrint(out, prefix2);
197 * In order to get the catches and insns, all the code's
210 if (catches != null) {
211 catches
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DCode.java206 private StdTypeList catches = StdTypeList.EMPTY; field in class:Code
367 catches = toTypeList(catchTypes);
380 catches = toTypeList(catchTypes);
389 RegisterSpecList.make(toThrow.spec()), catches));
485 RegisterSpecList.EMPTY, catches, Constants.getConstant(value)));
518 addInstruction(new ThrowingInsn(rop, sourcePosition, sources, catches));
576 RegisterSpecList.make(instance.spec()), catches, fieldId.constant));
586 RegisterSpecList.make(source.spec(), instance.spec()), catches, fieldId.constant));
594 RegisterSpecList.EMPTY, catches, fieldId.constant));
603 RegisterSpecList.make(source.spec()), catches, fieldI
[all...]
/external/doclava/src/com/google/doclava/parser/
H A DJavaParser.java390 "synpred247_Java", "synpred20_Java", "catches", "synpred202_Java",
8080 // src/com/google/doclava/parser/Java.g:887:1: trystatement : 'try' block ( catches 'finally' block | catches | 'finally' block ) ;
8090 // src/com/google/doclava/parser/Java.g:888:5: ( 'try' block ( catches 'finally' block | catches | 'finally' block ) )
8093 // src/com/google/doclava/parser/Java.g:888:9: 'try' block ( catches 'finally' block | catches | 'finally' block )
8104 // src/com/google/doclava/parser/Java.g:889:9: ( catches 'finally' block | catches | 'finally' block )
8146 // src/com/google/doclava/parser/Java.g:889:13: catches 'finall
8226 public final void catches() throws RecognitionException { method in class:JavaParser
[all...]

Completed in 143 milliseconds