/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/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;
|
BasicBlocker.java | 329 ByteCatchList catches = method.getCatches(); local 330 int catchSz = catches.size(); 355 ByteCatchList.Item item = catches.get(i); 434 ByteCatchList catches = method.getCatches().listFor(offset); local 435 catchLists[offset] = catches; 436 targetLists[offset] = catches.toTargetList(nextIsLive ? next : -1);
|
RopperMachine.java | 85 /** {@code non-null;} catches for the block currently being processed */ 86 private TypeList catches; field in class:RopperMachine 88 /** whether the catches have been used in an instruction */ 156 this.catches = null; 196 * {@link #insns} list, set {@link #catches}, reset whether it has 200 public void startBlock(TypeList catches) { 201 this.catches = catches; 214 * Gets whether {@link #catches} was used. This indicates that the 217 * @return whether {@code catches} has been use [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
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;
|
StdCatchBuilder.java | 86 TypeList catches = block.getLastInsn().getCatches(); local 87 if (catches.size() != 0) { 103 TypeList catches = block.getLastInsn().getCatches(); local 104 int catchSize = catches.size(); 107 result.add(catches.getType(j)); 221 TypeList catches = block.getLastInsn().getCatches(); local 222 int catchSize = catches.size(); 246 Type type = catches.getType(i); 256 CstType oneType = new CstType(catches.getType(i));
|
/dalvik/dx/src/com/android/dx/dex/code/ |
DalvCode.java | 50 private CatchTable catches; field in class:DalvCode 93 this.catches = null; 110 catches = unprocessedCatches.build(); 150 * Gets whether this instance has any catches at all (either typed 153 * @return whether this instance has any catches at all 195 return catches;
|
StdCatchBuilder.java | 85 TypeList catches = block.getLastInsn().getCatches(); local 86 if (catches.size() != 0) { 102 TypeList catches = block.getLastInsn().getCatches(); local 103 int catchSize = catches.size(); 106 result.add(catches.getType(j)); 220 TypeList catches = block.getLastInsn().getCatches(); local 221 int catchSize = catches.size(); 245 Type type = catches.getType(i); 255 CstType oneType = new CstType(catches.getType(i));
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
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;
|
StdCatchBuilder.java | 86 TypeList catches = block.getLastInsn().getCatches(); local 87 if (catches.size() != 0) { 103 TypeList catches = block.getLastInsn().getCatches(); local 104 int catchSize = catches.size(); 107 result.add(catches.getType(j)); 221 TypeList catches = block.getLastInsn().getCatches(); local 222 int catchSize = catches.size(); 246 Type type = catches.getType(i); 256 CstType oneType = new CstType(catches.getType(i));
|
/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 | 48 /** {@code null-ok;} the catches, if needed; set in {@link #addContents} */ 49 private CatchStructs catches; field in class:CodeItem 96 this.catches = null; 120 catches = new CatchStructs(code); 168 if (catches != null) { 170 out.println("catches"); 171 catches.debugPrint(out, prefix2); 188 * In order to get the catches and insns, all the code's 201 if (catches != null) { 202 catches.encode(file) [all...] |
/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...] |
/prebuilts/misc/common/swig/include/2.0.11/python/ |
pyiterators.swg | 351 %catches(swig::stop_iteration) SwigPyIterator::value() const; 352 %catches(swig::stop_iteration) SwigPyIterator::incr(size_t n = 1); 353 %catches(swig::stop_iteration) SwigPyIterator::decr(size_t n = 1); 354 %catches(std::invalid_argument) SwigPyIterator::distance(const SwigPyIterator &x) const; 355 %catches(std::invalid_argument) SwigPyIterator::equal (const SwigPyIterator &x) const; 356 %catches(swig::stop_iteration) SwigPyIterator::__next__(); 357 %catches(swig::stop_iteration) SwigPyIterator::next(); 358 %catches(swig::stop_iteration) SwigPyIterator::previous(); 359 %catches(swig::stop_iteration) SwigPyIterator::advance(ptrdiff_t n); 360 %catches(swig::stop_iteration) SwigPyIterator::operator += (ptrdiff_t n) [all...] |
/prebuilts/misc/common/swig/include/2.0.11/octave/ |
octiterators.swg | 310 %catches(swig::stop_iteration) OctSwigIterator::value() const; 311 %catches(swig::stop_iteration) OctSwigIterator::incr(size_t n = 1); 312 %catches(swig::stop_iteration) OctSwigIterator::decr(size_t n = 1); 313 %catches(std::invalid_argument) OctSwigIterator::distance(const OctSwigIterator &x) const; 314 %catches(std::invalid_argument) OctSwigIterator::equal (const OctSwigIterator &x) const; 315 %catches(swig::stop_iteration) OctSwigIterator::next(); 316 %catches(swig::stop_iteration) OctSwigIterator::previous(); 317 %catches(swig::stop_iteration) OctSwigIterator::advance(ptrdiff_t n); 318 %catches(swig::stop_iteration) OctSwigIterator::operator += (ptrdiff_t n); 319 %catches(swig::stop_iteration) OctSwigIterator::operator -= (ptrdiff_t n) [all...] |
/external/dexmaker/src/main/java/com/google/dexmaker/ |
Code.java | 206 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))); 521 addInstruction(new ThrowingInsn(rop, sourcePosition, sources, catches)); 579 RegisterSpecList.make(instance.spec()), catches, fieldId.constant)); 589 RegisterSpecList.make(source.spec(), instance.spec()), catches, fieldId.constant)); 597 RegisterSpecList.EMPTY, catches, fieldId.constant)); 606 RegisterSpecList.make(source.spec()), catches, fieldId.constant)) [all...] |
/prebuilts/misc/common/swig/include/2.0.11/ruby/ |
rubyiterators.swg | 872 %catches(swig::stop_iteration) ConstIterator::value() const; 873 %catches(swig::stop_iteration) ConstIterator::incr(size_t n = 1); 874 %catches(swig::stop_iteration) ConstIterator::decr(size_t n = 1); 875 %catches(std::invalid_argument) ConstIterator::distance(const ConstIterator &x) const; 876 %catches(std::invalid_argument) ConstIterator::equal (const ConstIterator &x) const; 877 %catches(swig::stop_iteration) ConstIterator::next(); 878 %catches(swig::stop_iteration) ConstIterator::previous(); 879 %catches(swig::stop_iteration) ConstIterator::advance(ptrdiff_t n); 880 %catches(swig::stop_iteration) ConstIterator::operator += (ptrdiff_t n); 881 %catches(swig::stop_iteration) ConstIterator::operator -= (ptrdiff_t n) [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
BlockDumper.java | 254 ByteCatchList catches = bb.getCatches(); local 255 int csz = catches.size(); 257 ByteCatchList.Item one = catches.get(j);
|