/dalvik/tests/029-assert/ |
expected.txt | 0 caught expected assert exception
|
/dalvik/tests/018-stack-overflow/ |
expected.txt | 0 caught SOE
|
/dalvik/tests/011-array-copy/ |
expected.txt | 4 caught ArrayStoreException (expected)
|
/dalvik/dx/tests/061-dex-try-catch/ |
Blort.java | 19 public static void caught() { method in class:Blort 28 // In this test, the code being try-caught can't possibly throw. 32 caught(); method 37 // In this test, the code being try-caught doesn't contain any 42 caught(); method 47 // In this test, the code being try-caught contains a constant 52 caught(); method 57 // In this test, the code being try-caught contains one 63 caught(); method
|
expected.txt | 16 0007: invoke-static {}, Blort.caught:()V 29 0007: invoke-static {}, Blort.caught:()V 44 0009: invoke-static {}, Blort.caught:()V
|
/external/v8/test/mjsunit/regress/ |
regress-667061.js | 29 var caught = false; variable 34 caught = true; 36 assertTrue(caught); 44 var caught = false; variable 49 caught = true; 51 assertTrue(caught); 64 var caught = false; variable 69 caught = true; 71 assertTrue(caught); 83 var caught = false variable [all...] |
regress-1110164.js | 38 var caught = false; variable 43 caught = true; 46 assertTrue(caught);
|
/dalvik/tests/008-instanceof/ |
expected.txt | 6 Caught a ClassCastException (expected)
|
/external/v8/test/mjsunit/ |
global-const-var-conflicts.js | 31 var caught = 0; variable 34 try { eval("var a"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 36 try { eval("var a = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 40 try { eval("var b"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 42 try { eval("var b = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 46 try { eval("const c"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 48 try { eval("const c = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 52 try { eval("const d"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 54 try { eval("const d = 1"); } catch (e) { caught++; assertTrue(e instanceof TypeError); } 57 assertEquals(8, caught); [all...] |
call-non-function.js | 29 var caught = []; 33 caught.push(e); 39 caught.push(e); 42 assertTrue(caught[0] instanceof TypeError); 43 assertTrue(caught[1] instanceof TypeError);
|
body-not-visible.js | 31 var caught = false; variable 36 caught = true; 39 assertTrue(caught);
|
call-non-function-call.js | 30 var caught = false; variable 35 caught = true; 38 assertTrue(caught);
|
extra-commas.js | 29 var caught = false; 33 caught = true; 36 assertTrue(caught, "throws exception");
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
try-004.js | 22 TryToCatch( "Thrower(5)", "Caught 5" ); 23 TryToCatch( "Thrower(\"some random exception\")", "Caught some random exception" ); 28 throw "Caught " + v;
|
try-005.js | 24 TryToCatch( "Thrower(5)", "Caught 5" ); 25 TryToCatch( "Thrower(\"some random exception\")", "Caught some random exception" ); 30 throw "Caught " + v;
|
/dalvik/tests/029-assert/src/ |
Main.java | 13 System.out.println("caught expected assert exception");
|
/dalvik/tests/053-wait-some/ |
expected.txt | 0 Caught expected exception on neg arg
|
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Exceptions/ |
catchguard-002.js | 33 var caught = false; 43 caught = true; 55 if (!caught) 56 reportFailure ("Execption was never caught.");
|
catchguard-001.js | 33 var caught = false; 43 caught = true; 55 if (!caught) 56 reportFailure ("Execption was never caught.");
|
catchguard-003.js | 33 var caught = false; 48 caught = true; 55 if (!caught) 56 reportFailure ("Execption was never caught.");
|
/external/webkit/LayoutTests/storage/domstorage/localstorage/ |
private-browsing-affects-storage-expected.txt | 3 Caught exception trying to change item: Error: QUOTA_EXCEEDED_ERR: DOM Exception 22
|
/external/webkit/LayoutTests/storage/domstorage/sessionstorage/ |
private-browsing-affects-storage-expected.txt | 3 Caught exception trying to change item: Error: QUOTA_EXCEEDED_ERR: DOM Exception 22
|
/external/webkit/WebCore/manual-tests/ |
debugger-caught-uncaught-exceptions.html | 7 // because even though the exception is being caught by our caller in this case, 8 // it is not being caught in the same function. 29 <p>This page tests <a href="https://bugs.webkit.org/show_bug.cgi?id=28622">Caught exceptions still pause the debugger</a> 33 <input type="button" value="Generate caught and uncaught exceptions" onclick="generateCaughtAndUncaughtExceptions();" />
|
/dalvik/tests/003-omnibus-opcodes/src/ |
Main.java | 64 System.out.println("Caught: " + ve); 69 System.out.println("Caught (retry): " + ve); 75 System.out.println("Caught: " + ve);
|
Throw.java | 88 boolean caught = false; 101 caught = true; 111 assert(caught);
|