Searched refs:catches (Results 1 - 10 of 10) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/rop/code/
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...]
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...]
/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;
H A DStdCatchBuilder.java86 TypeList catches = block.getLastInsn().getCatches();
87 if (catches.size() != 0) {
103 TypeList catches = block.getLastInsn().getCatches();
104 int catchSize = catches.size();
107 result.add(catches.getType(j));
221 TypeList catches = block.getLastInsn().getCatches();
222 int catchSize = catches.size();
246 Type type = catches.getType(i);
256 CstType oneType = new CstType(catches.getType(i));
H A DRopTranslator.java215 StdCatchBuilder catches =
218 return new DalvCode(positionInfo, output.getFinisher(), catches);
/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/smali/smali/src/main/antlr3/org/jf/smali/
H A DsmaliTreeWalker.g503 catches
710 catches : ^(I_CATCHES catch_directive* catchall_directive*);
/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...]
/external/grub/docs/
H A Dtexinfo.tex6953 % Same as above, but check for italic font. Actually this also catches

Completed in 283 milliseconds