/external/clang/test/SemaObjC/ |
catch-stmt.m | 7 } @catch (void a) { // expected-error{{@catch parameter is not a pointer to an interface type}} 8 } @catch (int) { // expected-error{{@catch parameter is not a pointer to an interface type}} 9 } @catch (int *b) { // expected-error{{@catch parameter is not a pointer to an interface type}} 10 } @catch (id <P> c) { // expected-error{{illegal qualifiers on @catch parameter}} 11 } @catch(A* a) { }
|
stmts.m | 11 } @catch (NSException *x) { // expected-error {{unknown type name 'NSException'}} 12 } @catch (struct some_struct x) { // expected-error {{@catch parameter is not a pointer to an interface type}} 13 } @catch (int x) { // expected-error {{@catch parameter is not a pointer to an interface type}} 14 } @catch (static NSObject *y) { // expected-error {{@catch parameter cannot have storage specifier 'static'}} 15 } @catch (...) {
|
/external/chromium_org/v8/test/webkit/ |
exception-propagate-from-dfg-to-llint.js | 34 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 35 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 36 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 37 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 38 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 39 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 40 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 41 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 42 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 43 try { shouldThrow = !shouldThrow; h(o); } catch (e) { [all...] |
/ndk/tests/device/static-executable/jni/ |
main.cxx | 7 } catch(...) { 8 printf ("catch\n");
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
catch5.cpp | 6 // We cannot catch an ambiguous base class. 35 catch(A *p) { abort(); } // A is ambiguous 36 catch(D *p) { caught = 1; if (p != d) abort();} 37 catch(...) { abort(); } 42 catch(A *p) { abort(); } // A is ambiguous 43 catch(B *p) { caught = 1; if (p != d) abort();} 44 catch(...) { abort(); } 49 catch(A *p) { abort(); } // A is ambiguous 50 catch(C *p) { caught = 1; if (p != d) abort();} 51 catch(...) { abort(); [all...] |
catch5p.cpp | 6 // We cannot catch an ambiguous base class. 35 catch(A *p) { abort(); } // A is ambiguous 36 catch(D *p) { caught = 1; if (p != d) abort();} 37 catch(...) { abort(); } 42 catch(A *p) { abort(); } // A is ambiguous 43 catch(B *p) { caught = 1; if (p != d) abort();} 44 catch(...) { abort(); } 49 catch(A *p) { abort(); } // A is ambiguous 50 catch(C *p) { caught = 1; if (p != d) abort();} 51 catch(...) { abort(); [all...] |
catch8.cpp | 6 // We cannot catch an ambiguous base class. 32 catch(A *p) { abort(); } // A is ambiguous 33 catch(D *p) { caught = 1; if (p != d) abort();} 34 catch(...) { abort(); } 39 catch(A *p) { abort(); } // A is ambiguous 40 catch(B *p) { caught = 1; if (p != d) abort();} 41 catch(...) { abort(); } 46 catch(A *p) { abort(); } // A is ambiguous 47 catch(C *p) { caught = 1; if (p != d) abort();} 48 catch(...) { abort(); [all...] |
catchptr1.cpp | 22 catch (void *) 28 catch (...) 41 catch (void *) 47 catch (...) 60 catch (void *) 65 catch (...) 79 catch (void const *) 84 catch (...) 98 catch (void *) 104 catch (void const * [all...] |
catch6.cpp | 6 // We cannot catch an ambiguous base class. 37 catch(A *p) { abort(); } // A is ambiguous 38 catch(D *p) { caught = 1; if (p != e) abort();} 39 catch(...) { abort(); } 44 catch(A *p) { abort(); } // A is ambiguous 45 catch(B *p) { caught = 1; if (p != e) abort();} 46 catch(...) { abort(); } 51 catch(A *p) { abort(); } // A is ambiguous 52 catch(C *p) { caught = 1; if (p != e) abort();} 53 catch(...) { abort(); [all...] |
catch6p.cpp | 6 // We cannot catch an ambiguous base class. 37 catch(A *p) { abort(); } // A is ambiguous 38 catch(D *p) { caught = 1; if (p != e) abort();} 39 catch(...) { abort(); } 44 catch(A *p) { abort(); } // A is ambiguous 45 catch(B *p) { caught = 1; if (p != e) abort();} 46 catch(...) { abort(); } 51 catch(A *p) { abort(); } // A is ambiguous 52 catch(C *p) { caught = 1; if (p != e) abort();} 53 catch(...) { abort(); [all...] |
catch7.cpp | 6 // We cannot catch an ambiguous base class. 51 catch(A *p) { abort(); } // A is ambiguous 52 catch(F *p) { caught = 1; if (p != f) abort();} 53 catch(...) { abort(); } 58 catch(A *p) { abort(); } // A is ambiguous 59 catch(E *p) { caught = 1; if (p != f) abort();} 60 catch(...) { abort(); } 65 catch(A *p) { abort(); } // A is ambiguous 66 catch(D *p) { caught = 1; if (p != f) abort();} 67 catch(...) { abort(); [all...] |
catch7p.cpp | 6 // We cannot catch an ambiguous base class. 38 catch(A *p) { abort(); } // A is ambiguous 39 catch(F *p) { caught = 1; if (p != f) abort();} 40 catch(...) { abort(); } 45 catch(A *p) { abort(); } // A is ambiguous 46 catch(E *p) { caught = 1; if (p != f) abort();} 47 catch(...) { abort(); } 52 catch(A *p) { abort(); } // A is ambiguous 53 catch(D *p) { caught = 1; if (p != f) abort();} 54 catch(...) { abort(); [all...] |
/ndk/tests/device/test-stlport_static-exception/jni/ |
catch5.cpp | 6 // We cannot catch an ambiguous base class. 35 catch(A *p) { abort(); } // A is ambiguous 36 catch(D *p) { caught = 1; if (p != d) abort();} 37 catch(...) { abort(); } 42 catch(A *p) { abort(); } // A is ambiguous 43 catch(B *p) { caught = 1; if (p != d) abort();} 44 catch(...) { abort(); } 49 catch(A *p) { abort(); } // A is ambiguous 50 catch(C *p) { caught = 1; if (p != d) abort();} 51 catch(...) { abort(); [all...] |
catch5p.cpp | 6 // We cannot catch an ambiguous base class. 35 catch(A *p) { abort(); } // A is ambiguous 36 catch(D *p) { caught = 1; if (p != d) abort();} 37 catch(...) { abort(); } 42 catch(A *p) { abort(); } // A is ambiguous 43 catch(B *p) { caught = 1; if (p != d) abort();} 44 catch(...) { abort(); } 49 catch(A *p) { abort(); } // A is ambiguous 50 catch(C *p) { caught = 1; if (p != d) abort();} 51 catch(...) { abort(); [all...] |
catch8.cpp | 6 // We cannot catch an ambiguous base class. 32 catch(A *p) { abort(); } // A is ambiguous 33 catch(D *p) { caught = 1; if (p != d) abort();} 34 catch(...) { abort(); } 39 catch(A *p) { abort(); } // A is ambiguous 40 catch(B *p) { caught = 1; if (p != d) abort();} 41 catch(...) { abort(); } 46 catch(A *p) { abort(); } // A is ambiguous 47 catch(C *p) { caught = 1; if (p != d) abort();} 48 catch(...) { abort(); [all...] |
catchptr1.cpp | 22 catch (void *) 28 catch (...) 41 catch (void *) 47 catch (...) 60 catch (void *) 65 catch (...) 79 catch (void const *) 84 catch (...) 98 catch (void *) 104 catch (void const * [all...] |
catch6.cpp | 6 // We cannot catch an ambiguous base class. 37 catch(A *p) { abort(); } // A is ambiguous 38 catch(D *p) { caught = 1; if (p != e) abort();} 39 catch(...) { abort(); } 44 catch(A *p) { abort(); } // A is ambiguous 45 catch(B *p) { caught = 1; if (p != e) abort();} 46 catch(...) { abort(); } 51 catch(A *p) { abort(); } // A is ambiguous 52 catch(C *p) { caught = 1; if (p != e) abort();} 53 catch(...) { abort(); [all...] |
catch6p.cpp | 6 // We cannot catch an ambiguous base class. 37 catch(A *p) { abort(); } // A is ambiguous 38 catch(D *p) { caught = 1; if (p != e) abort();} 39 catch(...) { abort(); } 44 catch(A *p) { abort(); } // A is ambiguous 45 catch(B *p) { caught = 1; if (p != e) abort();} 46 catch(...) { abort(); } 51 catch(A *p) { abort(); } // A is ambiguous 52 catch(C *p) { caught = 1; if (p != e) abort();} 53 catch(...) { abort(); [all...] |
catch7.cpp | 6 // We cannot catch an ambiguous base class. 51 catch(A *p) { abort(); } // A is ambiguous 52 catch(F *p) { caught = 1; if (p != f) abort();} 53 catch(...) { abort(); } 58 catch(A *p) { abort(); } // A is ambiguous 59 catch(E *p) { caught = 1; if (p != f) abort();} 60 catch(...) { abort(); } 65 catch(A *p) { abort(); } // A is ambiguous 66 catch(D *p) { caught = 1; if (p != f) abort();} 67 catch(...) { abort(); [all...] |
catch7p.cpp | 6 // We cannot catch an ambiguous base class. 38 catch(A *p) { abort(); } // A is ambiguous 39 catch(F *p) { caught = 1; if (p != f) abort();} 40 catch(...) { abort(); } 45 catch(A *p) { abort(); } // A is ambiguous 46 catch(E *p) { caught = 1; if (p != f) abort();} 47 catch(...) { abort(); } 52 catch(A *p) { abort(); } // A is ambiguous 53 catch(D *p) { caught = 1; if (p != f) abort();} 54 catch(...) { abort(); [all...] |
/external/lzma/CPP/Common/ |
ComTry.h | 11 #define COM_TRY_END } catch(...) { return E_OUTOFMEMORY; }
13 // catch(const CNewException &) { return E_OUTOFMEMORY; }
14 // catch(const CSystemException &e) { return e.ErrorCode; }
15 // catch(...) { return E_FAIL; }
|
/dalvik/dx/tests/080-dex-exception-tables/ |
Blort.java | 29 } catch (IndexOutOfBoundsException ex) { method 31 } catch (RuntimeException ex) { method 44 } catch (IndexOutOfBoundsException ex) { method 48 } catch (RuntimeException ex) { method 62 } catch (NullPointerException ex) { method 66 } catch (IndexOutOfBoundsException ex) { method 70 } catch (RuntimeException ex) { method 84 } catch (NullPointerException ex) { method 87 } catch (IndexOutOfBoundsException ex) { method 91 } catch (RuntimeException ex) method 105 } catch (NullPointerException ex) { method 108 } catch (IndexOutOfBoundsException ex) { method 111 } catch (RuntimeException ex) { method 123 } catch (NullPointerException ex) { method 127 } catch (IndexOutOfBoundsException ex) { method 131 } catch (RuntimeException ex) { method 142 } catch (RuntimeException ex) { method 148 } catch (RuntimeException ex) { method 159 } catch (RuntimeException ex) { method 166 } catch (RuntimeException ex) { method 178 } catch (IllegalArgumentException ex) { method 181 } catch (RuntimeException ex) { method 189 } catch (IllegalArgumentException ex) { method 192 } catch (RuntimeException ex) { method [all...] |
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
KeyStore4Test.java | 45 } catch (KeyStoreException e) { method 51 } catch (KeyStoreException e) { method 69 } catch (KeyStoreException e) { method 76 } catch (KeyStoreException e) { method 83 } catch (NullPointerException e) { method 85 } catch (KeyStoreException e) { method 95 } catch (KeyStoreException e) { method 97 } catch (NoSuchProviderException e) { method 104 } catch (KeyStoreException e) { method 106 } catch (NoSuchProviderException e) method 113 } catch (KeyStoreException e) { method 115 } catch (NoSuchProviderException e) { method 117 } catch (IllegalArgumentException e) { method 124 } catch (KeyStoreException e) { method 126 } catch (NoSuchProviderException e) { method 128 } catch (IllegalArgumentException e) { method 135 } catch (KeyStoreException e) { method 137 } catch (NoSuchProviderException e) { method 139 } catch (NullPointerException e) { method 146 } catch (NoSuchProviderException e) { method 148 } catch (KeyStoreException e) { method 158 } catch (KeyStoreException e) { method 165 } catch (KeyStoreException e) { method 172 } catch (KeyStoreException e) { method 174 } catch (IllegalArgumentException e) { method 181 } catch (KeyStoreException e) { method 183 } catch (NullPointerException e) { method 193 } catch (KeyStoreException e) { method 195 } catch (NoSuchAlgorithmException e) { method 197 } catch (UnrecoverableKeyException e) { method 204 } catch (KeyStoreException e) { method 206 } catch (NoSuchAlgorithmException e) { method 208 } catch (UnrecoverableKeyException e) { method 215 } catch (KeyStoreException e) { method 217 } catch (NoSuchAlgorithmException e) { method 219 } catch (UnrecoverableKeyException e) { method 226 } catch (KeyStoreException e) { method 228 } catch (NoSuchAlgorithmException e) { method 230 } catch (UnrecoverableKeyException e) { method 237 } catch (UnrecoverableKeyException e) { method 239 } catch (KeyStoreException e) { method 241 } catch (NoSuchAlgorithmException e) { method 253 } catch (KeyStoreException e) { method 260 } catch (KeyStoreException e) { method 267 } catch (KeyStoreException e) { method 269 } catch (NullPointerException e) { method 276 } catch (KeyStoreException e) { method 287 } catch (KeyStoreException e) { method 289 } catch (NoSuchAlgorithmException e) { method 291 } catch (CertificateException e) { method 293 } catch (IOException e) { method 300 } catch (KeyStoreException e) { method 302 } catch (NoSuchAlgorithmException e) { method 304 } catch (CertificateException e) { method 306 } catch (IOException e) { method 313 } catch (KeyStoreException e) { method 315 } catch (NoSuchAlgorithmException e) { method 317 } catch (CertificateException e) { method 319 } catch (IOException e) { method 326 } catch (KeyStoreException e) { method 328 } catch (NoSuchAlgorithmException e) { method 330 } catch (CertificateException e) { method 332 } catch (IOException e) { method 339 } catch (KeyStoreException e) { method 341 } catch (NoSuchAlgorithmException e) { method 343 } catch (CertificateException e) { method 345 } catch (IOException e) { method 361 } catch (NoSuchAlgorithmException e) { method 363 } catch (CertificateException e) { method 365 } catch (IOException e) { method 367 } catch (KeyStoreException e) { method 374 } catch (KeyStoreException e) { method 376 } catch (NoSuchAlgorithmException e) { method 378 } catch (CertificateException e) { method 380 } catch (IOException e) { method 391 } catch (KeyStoreException e) { method 393 } catch (NoSuchAlgorithmException e) { method 395 } catch (CertificateException e) { method 397 } catch (IOException e) { method 399 } catch (UnsupportedOperationException e) { method 409 } catch (KeyStoreException e) { method 411 } catch (NoSuchAlgorithmException e) { method 413 } catch (CertificateException e) { method 415 } catch (IOException e) { method 425 } catch (KeyStoreException e) { method 427 } catch (NoSuchAlgorithmException e) { method 429 } catch (CertificateException e) { method 431 } catch (IOException e) { method 438 } catch (KeyStoreException e) { method 440 } catch (NoSuchAlgorithmException e) { method 442 } catch (CertificateException e) { method 444 } catch (IOException e) { method 455 } catch (NoSuchAlgorithmException e) { method 457 } catch (CertificateException e) { method 459 } catch (IOException e) { method 461 } catch (KeyStoreException e) { method 468 } catch (NoSuchAlgorithmException e) { method 470 } catch (CertificateException e) { method 472 } catch (IOException e) { method 479 } catch (NoSuchAlgorithmException e) { method 481 } catch (CertificateException e) { method 483 } catch (IOException e) { method 490 } catch (NoSuchAlgorithmException e) { method 492 } catch (CertificateException e) { method 494 } catch (IOException e) { method 503 } catch (NoSuchAlgorithmException e) { method 505 } catch (CertificateException e) { method 507 } catch (IOException e) { method 519 } catch (NoSuchAlgorithmException e) { method 521 } catch (CertificateException e) { method 523 } catch (IOException e) { method 536 } catch (NoSuchAlgorithmException e) { method 538 } catch (CertificateException e) { method 540 } catch (IOException e) { method 553 } catch (NoSuchAlgorithmException e) { method 555 } catch (CertificateException e) { method 557 } catch (IOException e) { method 567 } catch (NoSuchAlgorithmException e) { method 569 } catch (UnrecoverableEntryException e) { method 571 } catch (KeyStoreException e) { method 578 } catch (NoSuchAlgorithmException e) { method 580 } catch (UnrecoverableEntryException e) { method 582 } catch (KeyStoreException e) { method 584 } catch (UnsupportedOperationException e) { method 592 } catch (NoSuchAlgorithmException e) { method 594 } catch (UnrecoverableEntryException e) { method 596 } catch (KeyStoreException e) { method 603 } catch (NoSuchAlgorithmException e) { method 605 } catch (UnrecoverableEntryException e) { method 607 } catch (KeyStoreException e) { method 609 } catch (UnsupportedOperationException e) { method 616 } catch (NoSuchAlgorithmException e) { method 618 } catch (UnrecoverableEntryException e) { method 620 } catch (KeyStoreException e) { method 622 } catch (NullPointerException e) { method [all...] |
/frameworks/base/tests/permission/src/com/android/framework/permission/tests/ |
WindowManagerPermissionTests.java | 49 } catch (SecurityException e) { method 51 } catch (RemoteException e) { method 59 } catch (SecurityException e) { method 61 } catch (RemoteException e) { method 69 } catch (SecurityException e) { method 71 } catch (RemoteException e) { method 79 } catch (SecurityException e) { method 81 } catch (RemoteException e) { method 89 } catch (SecurityException e) { method 91 } catch (RemoteException e) method 99 } catch (SecurityException e) { method 101 } catch (RemoteException e) { method 109 } catch (SecurityException e) { method 111 } catch (RemoteException e) { method 119 } catch (SecurityException e) { method 121 } catch (RemoteException e) { method 130 } catch (SecurityException e) { method 132 } catch (RemoteException e) { method 140 } catch (SecurityException e) { method 142 } catch (RemoteException e) { method 150 } catch (SecurityException e) { method 152 } catch (RemoteException e) { method 160 } catch (SecurityException e) { method 162 } catch (RemoteException e) { method 170 } catch (SecurityException e) { method 172 } catch (RemoteException e) { method 180 } catch (SecurityException e) { method 182 } catch (RemoteException e) { method 190 } catch (SecurityException e) { method 192 } catch (RemoteException e) { method 200 } catch (SecurityException e) { method 202 } catch (RemoteException e) { method 210 } catch (SecurityException e) { method 212 } catch (RemoteException e) { method 220 } catch (SecurityException e) { method 222 } catch (RemoteException e) { method 234 } catch (SecurityException e) { method 236 } catch (RemoteException e) { method 244 } catch (SecurityException e) { method 246 } catch (RemoteException e) { method 254 } catch (SecurityException e) { method 256 } catch (RemoteException e) { method 267 } catch (SecurityException e) { method 269 } catch (RemoteException e) { method 277 } catch (SecurityException e) { method 279 } catch (RemoteException e) { method 290 } catch (SecurityException e) { method 292 } catch (RemoteException e) { method 300 } catch (SecurityException e) { method 302 } catch (RemoteException e) { method 310 } catch (SecurityException e) { method 312 } catch (RemoteException e) { method [all...] |
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
ArrayTest.java | 46 try { Array.getBoolean(bytes, 0); fail(); } catch (IllegalArgumentException expected) {} method 47 try { Array.getBoolean(chars, 0); fail(); } catch (IllegalArgumentException expected) {} method 48 try { Array.getBoolean(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 49 try { Array.getBoolean(floats, 0); fail(); } catch (IllegalArgumentException expected) {} method 50 try { Array.getBoolean(ints, 0); fail(); } catch (IllegalArgumentException expected) {} method 51 try { Array.getBoolean(longs, 0); fail(); } catch (IllegalArgumentException expected) {} method 52 try { Array.getBoolean(shorts, 0); fail(); } catch (IllegalArgumentException expected) {} method 53 try { Array.getBoolean(null, 0); fail(); } catch (NullPointerException expected) {} method 57 try { Array.getByte(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 59 try { Array.getByte(chars, 0); fail(); } catch (IllegalArgumentException expected) { method 60 try { Array.getByte(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 61 try { Array.getByte(floats, 0); fail(); } catch (IllegalArgumentException expected) {} method 62 try { Array.getByte(ints, 0); fail(); } catch (IllegalArgumentException expected) {} method 63 try { Array.getByte(longs, 0); fail(); } catch (IllegalArgumentException expected) {} method 64 try { Array.getByte(shorts, 0); fail(); } catch (IllegalArgumentException expected) {} method 65 try { Array.getByte(null, 0); fail(); } catch (NullPointerException expected) {} method 69 try { Array.getChar(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 70 try { Array.getChar(bytes, 0); fail(); } catch (IllegalArgumentException expected) {} method 72 try { Array.getChar(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 73 try { Array.getChar(floats, 0); fail(); } catch (IllegalArgumentException expected) {} method 74 try { Array.getChar(ints, 0); fail(); } catch (IllegalArgumentException expected) {} method 75 try { Array.getChar(longs, 0); fail(); } catch (IllegalArgumentException expected) {} method 76 try { Array.getChar(shorts, 0); fail(); } catch (IllegalArgumentException expected) {} method 77 try { Array.getChar(null, 0); fail(); } catch (NullPointerException expected) {} method 81 try { Array.getDouble(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 89 try { Array.getDouble(null, 0); fail(); } catch (NullPointerException expected) {} method 93 try { Array.getFloat(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 97 try { Array.getFloat(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 101 try { Array.getFloat(null, 0); fail(); } catch (NullPointerException expected) {} method 105 try { Array.getInt(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 108 try { Array.getInt(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 109 try { Array.getInt(floats, 0); fail(); } catch (IllegalArgumentException expected) {} method 111 try { Array.getInt(longs, 0); fail(); } catch (IllegalArgumentException expected) {} method 113 try { Array.getInt(null, 0); fail(); } catch (NullPointerException expected) {} method 117 try { Array.getLong(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 120 try { Array.getLong(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 121 try { Array.getLong(floats, 0); fail(); } catch (IllegalArgumentException expected) {} method 125 try { Array.getLong(null, 0); fail(); } catch (NullPointerException expected) {} method 129 try { Array.getShort(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} method 131 try { Array.getShort(chars, 0); fail(); } catch (IllegalArgumentException expected) {} method 132 try { Array.getShort(doubles, 0); fail(); } catch (IllegalArgumentException expected) {} method 133 try { Array.getShort(floats, 0); fail(); } catch (IllegalArgumentException expected) {} method 134 try { Array.getShort(ints, 0); fail(); } catch (IllegalArgumentException expected) {} method 135 try { Array.getShort(longs, 0); fail(); } catch (IllegalArgumentException expected) {} method 137 try { Array.getShort(null, 0); fail(); } catch (NullPointerException expected) {} method 142 try { Array.setBoolean(bytes, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 143 try { Array.setBoolean(chars, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 144 try { Array.setBoolean(doubles, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 145 try { Array.setBoolean(floats, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 146 try { Array.setBoolean(ints, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 147 try { Array.setBoolean(longs, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 148 try { Array.setBoolean(shorts, 0, true); fail(); } catch (IllegalArgumentException expected) {} method 149 try { Array.setBoolean(null, 0, true); fail(); } catch (NullPointerException expected) {} method 153 try { Array.setByte(booleans, 0, bytes[0]); fail(); } catch (IllegalArgumentException expected) {} method 155 try { Array.setByte(chars, 0, bytes[0]); fail(); } catch (IllegalArgumentException expected) {} method 161 try { Array.setByte(null, 0, bytes[0]); fail(); } catch (NullPointerException expected) {} method 165 try { Array.setChar(booleans, 0, chars[0]); fail(); } catch (IllegalArgumentException expected) {} method 166 try { Array.setChar(bytes, 0, chars[0]); fail(); } catch (IllegalArgumentException expected) {} method 172 try { Array.setChar(shorts, 0, chars[0]); fail(); } catch (IllegalArgumentException expected) {} method 173 try { Array.setChar(null, 0, chars[0]); fail(); } catch (NullPointerException expected) {} method 177 try { Array.setDouble(booleans, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 178 try { Array.setDouble(bytes, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 179 try { Array.setDouble(chars, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 181 try { Array.setDouble(floats, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 182 try { Array.setDouble(ints, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 183 try { Array.setDouble(longs, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 184 try { Array.setDouble(shorts, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} method 185 try { Array.setDouble(null, 0, doubles[0]); fail(); } catch (NullPointerException expected) {} method 189 try { Array.setFloat(booleans, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {} method 190 try { Array.setFloat(bytes, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {} method 191 try { Array.setFloat(chars, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {} method 194 try { Array.setFloat(ints, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {} method 195 try { Array.setFloat(longs, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {} method 196 try { Array.setFloat(shorts, 0, floats[0]); fail(); } catch (IllegalArgumentException expected) {} method 197 try { Array.setFloat(null, 0, floats[0]); fail(); } catch (NullPointerException expected) {} method 201 try { Array.setInt(booleans, 0, ints[0]); fail(); } catch (IllegalArgumentException expected) {} method 202 try { Array.setInt(bytes, 0, ints[0]); fail(); } catch (IllegalArgumentException expected) {} method 203 try { Array.setInt(chars, 0, ints[0]); fail(); } catch (IllegalArgumentException expected) {} method 208 try { Array.setInt(shorts, 0, ints[0]); fail(); } catch (IllegalArgumentException expected) {} method 209 try { Array.setInt(null, 0, ints[0]); fail(); } catch (NullPointerException expected) {} method 213 try { Array.setLong(booleans, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} method 214 try { Array.setLong(bytes, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} method 215 try { Array.setLong(chars, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} method 218 try { Array.setLong(ints, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} method 220 try { Array.setLong(shorts, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} method 221 try { Array.setLong(null, 0, longs[0]); fail(); } catch (NullPointerException expected) {} method 225 try { Array.setShort(booleans, 0, shorts[0]); fail(); } catch (IllegalArgumentException expected) {} method 226 try { Array.setShort(bytes, 0, shorts[0]); fail(); } catch (IllegalArgumentException expected) {} method 227 try { Array.setShort(chars, 0, shorts[0]); fail(); } catch (IllegalArgumentException expected) {} method 233 try { Array.setShort(null, 0, shorts[0]); fail(); } catch (NullPointerException expected) {} method [all...] |