HomeSort by relevance Sort by last modified time
    Searched defs:exception (Results 1 - 25 of 695) 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 43 exception = e;
48 var exception = null; variable
76 assertNull(exception);
regress-1327557.js 31 var exception = false; variable
35 exception = true;
38 assertTrue(exception);
regress-debug-deopt-while-recompile.js 37 exception = e;
42 var exception = null; variable
84 assertNull(exception);
regress-119609.js 32 var exception = false; variable
52 exception = e.toString() + e.stack;
71 assertFalse(exception);
regress-131994.js 35 var exception = false; variable
46 exception = e;
69 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 37 var exception = null; variable
45 exception = e;
69 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 34 var exception = false; variable
75 exception = e
105 "listener did not run to completion: " + exception);
117 assertFalse(exception, "exception in listener");
  /external/chromium_org/v8/test/mjsunit/es6/
debug-promises-throw-in-constructor.js 8 // an exception is thrown in the the Promise constructor.
9 // We expect an Exception debug event with a promise to be triggered.
14 var exception = null; variable
20 if (event == Debug.DebugEvent.Exception) {
22 assertEquals("uncaught", event_data.exception().message);
33 print("Unexpected exception: " + e + "\n" + e.stack);
34 exception = e;
46 assertNull(exception);
debug-promises-uncaught-all.js 8 // there is a catch handler for the exception thrown in a Promise.
9 // We expect an Exception debug event with a promise to be triggered.
15 var exception = undefined; variable
33 if (event == Debug.DebugEvent.Exception) {
35 assertEquals("uncaught", event_data.exception().message);
47 print("Unexpected exception: " + e + "\n" + e.stack);
  /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.
  /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}}

Completed in 966 milliseconds

1 2 3 4 5 6 7 8 91011>>