HomeSort by relevance Sort by last modified time
    Searched full:catches (Results 1 - 25 of 520) 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;
  /device/google/marlin/sepolicy/
ueventd.te 13 # /system/core/init/device.cpp catches uevents from /firmware
  /dalvik/dx/tests/061-dex-try-catch/
expected.txt 18 catches
31 catches
46 catches
  /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...]
  /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...]
  /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...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
rd-bcnst2-pic.d 5 # Catches an error in the relaxation machinery.
  /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
  /dalvik/dx/src/com/android/dx/dex/code/
CatchBuilder.java 34 * Gets whether this instance has any catches at all (either typed
37 * @return whether this instance has any catches at all
  /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
  /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...]
  /dalvik/dx/tests/076-dex-synch-and-stack/
expected.txt 16 catches
  /external/autotest/server/site_tests/platform_InternalDisplay/
control 20 This test catches internal display not initialized for devices with internal display - crbug/508569.
  /external/chromium-trace/catapult/third_party/Paste/docs/
test_server.ini 10 # These options make it easier to trigger the thread pool catches

Completed in 1092 milliseconds

1 2 3 4 5 6 7 8 91011>>