/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 | 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...] |
/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
|
/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
|
/external/chromium_org/base/x11/ |
x11_error_tracker.h | 15 // X11ErrorTracker catches X11 errors in a non-fatal way. It does so by
|
/external/chromium_org/net/data/websocket/ |
connect_check.html | 22 // Set document title to 'PASS'. The test observer catches this title changes
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_eof.py | 2 """test script for a few new invalid token catches"""
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_eof.py | 2 """test script for a few new invalid token catches"""
|