HomeSort by relevance Sort by last modified time
    Searched defs:exception (Results 1 - 25 of 282) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/regress/
regress-1132.js 28 // Test the case when exception is thrown from the parser when lazy
44 var exception = false; variable
48 exception = true;
50 assertTrue(exception);
regress-crbug-100859.js 32 var exception = false; variable
37 exception = true;
39 assertTrue(exception);
regress-1130.js 33 var exception = false; variable
37 exception = true;
40 assertTrue(exception);
regress-1172-bis.js 28 // Verifies that exception thrown from JS accessors when attempting a call
32 var exception = false; variable
36 exception = true;
39 assertTrue(exception);
regress-opt-after-debug-deopt.js 44 exception = e;
49 var exception = null; variable
77 assertNull(exception);
regress-1327557.js 31 var exception = false; variable
35 exception = true;
38 assertTrue(exception);
regress-debug-deopt-while-recompile.js 38 exception = e;
43 var exception = null; variable
85 assertNull(exception);
regress-119609.js 33 var exception = false; variable
53 exception = e.toString() + e.stack;
72 assertFalse(exception);
regress-131994.js 36 var exception = false; variable
47 exception = e;
70 assertFalse(exception);
regress-1412.js 53 var exception = false; variable
57 exception = true;
59 assertTrue(exception);
regress-1639.js 32 var exception = false; variable
62 exception = true;
91 assertFalse(exception);
regress-325676.js 38 var exception = null; variable
46 exception = e;
70 assertNull(exception);
  /external/chromium_org/v8/test/mjsunit/
debug-set-script-source.js 34 var exception = null; variable
44 exception = e;
62 assertEquals("illegal access", exception);
debug-clearbreakpointgroup.js 35 var exception = false; variable
76 exception = e
106 "listener did not run to completion: " + exception);
118 assertFalse(exception, "exception in listener");
  /external/chromium_org/v8/test/mjsunit/es6/debug-promises/
reject-in-constructor.js 9 // We expect an Exception debug event with a promise to be triggered.
14 var exception = null; variable
18 if (event == Debug.DebugEvent.Exception) {
20 assertEquals("uncaught", event_data.exception().message);
27 exception = e;
39 assertNull(exception);
throw-in-constructor.js 8 // an exception is thrown in the Promise constructor.
9 // We expect an Exception debug event with a promise to be triggered.
14 var exception = null; variable
18 if (event == Debug.DebugEvent.Exception) {
20 assertEquals("uncaught", event_data.exception().message);
28 exception = e;
40 assertNull(exception);
try-reject-in-constructor.js 9 // We expect an Exception debug event with a promise to be triggered.
14 var exception = null; variable
18 if (event == Debug.DebugEvent.Exception) {
20 assertEquals("uncaught", event_data.exception().message);
28 exception = e;
42 assertNull(exception);
try-throw-reject-in-constructor.js 8 // an exception is thrown in the Promise constructor, but caught in an
10 // We expect an Exception debug event with a promise to be triggered.
15 var exception = null; variable
19 if (event == Debug.DebugEvent.Exception) {
21 assertEquals("uncaught", event_data.exception().message);
29 exception = e;
44 assertNull(exception);
async-task-event.js 10 var exception = null; variable
44 exception = e;
61 assertNull(exception);
  /external/chromium_org/v8/test/mjsunit/es7/
object-observe-debug-event.js 10 var exception = null; variable
36 exception = e;
51 assertNull(exception);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
ExtException.java 1 package org.bouncycastle.jce.exception;
5 * This is an extended exception. Java before version 1.4 did not offer the
6 * possibility the attach a cause to an exception. The cause of an exception is
8 * exception. This interface must be implemented by all exceptions to accomplish
16 * Returns the cause of the exception.
18 * @return The cause of the exception.
  /external/clang/test/SemaTemplate/
instantiate-try-catch.cpp 19 struct Exception {
21 Exception(const Exception&); // expected-note{{declared private here}}
23 void exception() { function in class:PR10232::Templated
25 } catch(Exception e) { // expected-error{{calling a private constructor of class 'PR10232::Templated<int>::Exception'}}
30 template class Templated<int>; // expected-note{{in instantiation of member function 'PR10232::Templated<int>::exception' requested here}}
  /external/emma/core/java12/com/vladium/util/exception/
Exceptions.java 9 package com.vladium.util.exception;
ICodedException.java 9 package com.vladium.util.exception;
19 * An error code is a compact string representing the nature of exception
22 * the exception classes mentioned above.
32 * Returns the String that was passed as 'message' argument to an exception
33 * constructor. For a coded exception this will be the compact error code
IThrowableWrapper.java 9 package com.vladium.util.exception;
18 * Any exception that wraps around another exception and wishes to be fully
39 * Every exception hierarchy implementing this interface must ensure that
48 * Every exception hierarchy implementing this interface must ensure that

Completed in 1329 milliseconds

1 2 3 4 5 6 7 8 91011>>