HomeSort by relevance Sort by last modified time
    Searched refs:caught (Results 1 - 25 of 39) sorted by null

1 2

  /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
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Exceptions/
catchguard-001.js 33 var caught = false;
43 caught = true;
55 if (!caught)
56 reportFailure ("Execption was never caught.");
catchguard-002.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/libpng/contrib/visupng/
cexcept.h 134 by the Try clause), and the exception is not caught by a nested
141 caught, which is significant if it has side effects, for example:
158 caught. Therefore, variables modified inside the Try block whose
170 exception must be caught, otherwise the program may crash.
199 int caught; \
220 while (the_exception_context->caught = 0, \
221 the_exception_context->caught); \
224 the_exception_context->caught = 1; \
228 if (!the_exception_context->caught || action) { } \
  /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);
regress-1182832.js 28 var caught = false; variable
35 caught = true;
38 assertTrue(caught);
regress-1201933.js 31 var caught = false; variable
38 caught = true;
40 assertTrue(caught);
regress-1215653.js 30 var caught = false; variable
36 caught = true;
38 assertTrue(caught);
regress-875031.js 30 var caught = false; variable
35 caught = true;
37 assertTrue(caught);
regress-900055.js 35 var caught = false; variable
39 caught = true;
42 assertTrue(caught);
regress-1213575.js 34 var caught = false; variable
39 caught = true;
41 assertTrue(caught);
  /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");
get-prototype-of.js 30 var caught = 0;
34 caught = e;
37 assertTrue(caught instanceof TypeError);
with-leave.js 42 var caught = false; variable
46 caught = true;
60 assertTrue(caught);
try.js 335 var caught = false; variable
342 caught = true;
347 assertFalse(caught);
apply.js 125 var caught = false;
136 caught = true;
138 assertTrue(caught, "exception not caught");
  /dalvik/tests/003-omnibus-opcodes/src/
Throw.java 88 boolean caught = false;
101 caught = true;
111 assert(caught);
  /dalvik/vm/jdwp/
JdwpEvent.h 60 u1 caught; member in struct:JdwpEventMod::__anon724
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
callback-exception.js 1 description("Tests that when an exception is thrown in the success callback, the error callback is not invoked. Note that this test throws an exception which is not caught.");

Completed in 229 milliseconds

1 2