HomeSort by relevance Sort by last modified time
    Searched defs:exception (Results 1 - 25 of 712) 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);
  /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/stlport/stlport/
math.h 23 #if !defined (exception) && (!defined (__KCC) || (__KCC_VERSION < 4000)) && \
26 # define exception __math_exception macro
36 # undef exception macro
42 # define _exception exception
  /ndk/sources/cxx-stl/stlport/stlport/
math.h 23 #if !defined (exception) && (!defined (__KCC) || (__KCC_VERSION < 4000)) && \
26 # define exception __math_exception macro
36 # undef exception macro
42 # define _exception exception
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
math.h 23 #if !defined (exception) && (!defined (__KCC) || (__KCC_VERSION < 4000)) && \
26 # define exception __math_exception macro
36 # undef exception macro
42 # define _exception exception
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
math.h 23 #if !defined (exception) && (!defined (__KCC) || (__KCC_VERSION < 4000)) && \
26 # define exception __math_exception macro
36 # undef exception macro
42 # define _exception exception
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/
math.h 23 #if !defined (exception) && (!defined (__KCC) || (__KCC_VERSION < 4000)) && \
26 # define exception __math_exception macro
36 # undef exception macro
42 # define _exception exception
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
math.h 23 #if !defined (exception) && (!defined (__KCC) || (__KCC_VERSION < 4000)) && \
26 # define exception __math_exception macro
36 # undef exception macro
42 # define _exception exception
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/
math.h 23 #if !defined (exception) && (!defined (__KCC) || (__KCC_VERSION < 4000)) && \
26 # define exception __math_exception macro
36 # undef exception macro
42 # define _exception 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.

Completed in 2300 milliseconds

1 2 3 4 5 6 7 8 91011>>