HomeSort by relevance Sort by last modified time
    Searched full:catches (Results 1 - 25 of 308) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/rop/code/
ThrowingInsn.java 31 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) {
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 == null)
    [all...]
ThrowingCstInsn.java 30 private final TypeList catches; field in class:ThrowingCstInsn
38 * @param catches {@code non-null;} list of exceptions caught
43 TypeList catches, Constant cst) {
50 if (catches == null) {
51 throw new NullPointerException("catches == null");
54 this.catches = catches;
61 ThrowingInsn.toCatchString(catches);
67 return catches;
80 getSources(), catches.withAddedType(type)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
ThrowingInsn.java 31 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) {
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 == null)
    [all...]
ThrowingCstInsn.java 31 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.withAddedType(type)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
ThrowingInsn.java 31 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) {
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 == null)
    [all...]
ThrowingCstInsn.java 31 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.withAddedType(type)
    [all...]
  /dalvik/dx/tests/096-dex-giant-catch/
expected.txt 0 catches
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttCode.java 41 private final ByteCatchList catches; field in class:AttCode
52 * @param catches {@code non-null;} the exception table
56 ByteCatchList catches, AttributeList attributes) {
72 if (catches.isMutable()) {
73 throw new MutabilityException("catches.isMutable()");
77 throw new NullPointerException("catches == null");
92 this.catches = catches;
97 return 10 + code.byteLength() + catches.byteLength() +
134 return catches;
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
ByteBlock.java 40 private final ByteCatchList catches; field in class:ByteBlock
52 * @param catches {@code non-null;} list of exceptions caught and their
56 ByteCatchList catches) {
82 if (catches == null) {
83 throw new NullPointerException("catches == null");
90 this.catches = catches;
143 return catches;
  /dalvik/dx/src/com/android/dx/cf/code/
ByteBlock.java 40 private final ByteCatchList catches; field in class:ByteBlock
52 * @param catches {@code non-null;} list of exceptions caught and their
56 ByteCatchList catches) {
82 if (catches == null) {
83 throw new NullPointerException("catches == null");
90 this.catches = catches;
143 return catches;
  /dalvik/dx/tests/061-dex-try-catch/
expected.txt 18 catches
31 catches
46 catches
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
CodeItem.java 57 /** {@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.encode(file)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
CodeItem.java 57 /** {@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.encode(file)
    [all...]
  /dalvik/dx/tests/055-dex-explicit-throw/
expected.txt 14 catches
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CodeItem.java 57 /** {@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.encode(file)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchBuilder.java 35 * Gets whether this instance has any catches at all (either typed
38 * @return whether this instance has any catches at all
DalvCode.java 51 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;
  /dalvik/dx/src/com/android/dx/dex/code/
CatchBuilder.java 35 * Gets whether this instance has any catches at all (either typed
38 * @return whether this instance has any catches at all
DalvCode.java 51 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/dex/code/
CatchBuilder.java 35 * Gets whether this instance has any catches at all (either typed
38 * @return whether this instance has any catches at all
DalvCode.java 51 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/gtest/test/
gtest_nc.cc 58 // Tests that the compiler catches the typo when a user declares a
69 // Tests that the compiler catches the typo when a user calls Setup()
82 // Tests that the compiler catches the typo when a user declares a
93 // Tests that the compiler catches the typo when a user calls Setup()
107 // Tests that the compiler catches using the wrong test case name in
126 // Tests that the compiler catches using the wrong test case name in
145 // Tests that the compiler catches using the wrong test case name in
166 // Tests that the compiler catches instantiating TYPED_TEST_CASE_P
  /external/protobuf/gtest/test/
gtest_nc.cc 58 // Tests that the compiler catches the typo when a user declares a
69 // Tests that the compiler catches the typo when a user calls Setup()
82 // Tests that the compiler catches the typo when a user declares a
93 // Tests that the compiler catches the typo when a user calls Setup()
107 // Tests that the compiler catches using the wrong test case name in
126 // Tests that the compiler catches using the wrong test case name in
145 // Tests that the compiler catches using the wrong test case name in
166 // Tests that the compiler catches instantiating TYPED_TEST_CASE_P
  /dalvik/dx/tests/076-dex-synch-and-stack/
expected.txt 16 catches
  /dalvik/dx/tests/046-dex-exceptions/
expected.txt 15 catches
43 catches

Completed in 380 milliseconds

1 2 3 4 5 6 7 8 91011>>