Searched refs:exception (Results 1 - 25 of 673) sorted by relevance

1234567891011>>

/external/stlport/test/unit/
H A Dexception_header_test.cpp8 #include <exception>
/external/v8/test/mjsunit/regress/
H A Dregress-1172-bis.js28 // Verifies that exception thrown from JS accessors when attempting a call
32 var exception = false; variable
36 exception = true;
39 assertTrue(exception);
H A Dregress-1130.js33 var exception = false; variable
37 exception = true;
40 assertTrue(exception);
H A Dregress-1132.js28 // Test the case when exception is thrown from the parser when lazy
44 var exception = false; variable
48 exception = true;
50 assertTrue(exception);
H A Dregress-1327557.js31 var exception = false; variable
35 exception = true;
38 assertTrue(exception);
H A Dregress-crbug-100859.js32 var exception = false; variable
37 exception = true;
39 assertTrue(exception);
H A Dregress-1170.js45 var exception = false; variable
49 exception = true;
52 assertFalse(exception);
54 exception = false;
58 exception = true;
61 assertTrue(exception);
64 exception = false;
68 exception = true;
72 assertTrue(exception);
H A Dregress-1119.js32 __proto__.__defineSetter__("y", function() { throw 'exception'; });
38 var exception; variable
42 exception = e;
44 assertEquals('exception', exception);
H A Dregress-1365.js56 var exception = false;
57 try { valueOf(); } catch(e) { exception = true; }
58 assertTrue(exception);
59 exception = false;
60 try { hasOwnProperty(); } catch(e) { exception = true; }
61 assertTrue(exception);
66 var exception = false;
67 try { f(); } catch(e) { exception = true; }
68 assertTrue(exception);
74 var exception
[all...]
H A Dregress-1980.js32 var exception = false;
36 exception = true;
39 assertTrue(exception);
/external/webkit/Source/WebCore/platform/mac/
H A DBlockExceptions.mm31 void ReportBlockedObjCException(NSException *exception)
34 NSLog(@"*** WebKit discarding exception: <%@> %@", [exception name], [exception reason]);
36 ASSERT_WITH_MESSAGE(0, "Uncaught exception - %@", exception);
/external/v8/test/mjsunit/
H A Dstrict-mode-eval.js45 var exception = false;
49 exception = true;
52 assertTrue(exception);
55 var exception = false;
59 exception = true;
62 assertTrue(exception);
65 var exception = false;
69 exception = true;
72 assertTrue(exception);
75 var exception
[all...]
H A Dfunction-call.js153 // Test that all natives using the ToObject call throw the right exception.
158 var exception = false;
168 exception = true;
172 assertTrue(exception);
174 exception = false;
178 exception = true;
182 assertTrue(exception);
184 exception = false;
188 exception = true;
192 assertTrue(exception);
[all...]
H A Dproperty-load-across-eval.js48 var exception = false;
52 exception = true;
54 assertTrue(exception);
56 exception = false;
60 exception = true;
62 assertTrue(exception);
70 var exception = false;
74 exception = true;
76 assertTrue(exception);
78 exception
[all...]
/external/fdlibm/
H A Ds_matherr.c17 int ieee_matherr(struct exception *x)
20 struct exception *x;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
H A DExtException.java1 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/emma/core/java12/com/vladium/util/exception/
H A DICodedException.java9 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
/external/clang/test/CodeGenCXX/
H A D2006-03-06-C++RecurseCrash.cpp3 class exception { }; class in namespace:std
18 class recursive_init: public std::exception {
/external/stlport/stlport/
H A Dexception.h25 # include <exception>
28 # include_next <exception.h>
30 # include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception.h)
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
H A D7.4.3-16-n.js50 var exception = "No exception thrown"; variable
57 exception = e.toString();
63 " (threw " + exception +")",
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
H A Dboolean-001.js22 var exception = "No exception thrown"; variable
33 exception = e.toString();
39 "(threw " +exception +")",
H A Dboolean-002.js25 var exception = "No exception thrown"; variable
36 exception = e.toString();
42 "(threw " +exception +")",
H A Dexception-001.js2 * File Name: exception-001
11 var SECTION = "exception-001";
26 result = "failed: no exception thrown";
27 exception = null;
32 result = "passed: threw exception",
33 exception = e.toString();
37 "Math() [ exception is " + exception +" ]",
38 "passed: threw exception",
H A Dexception-002.js2 * File Name: exception-002
11 var SECTION = "exception-002";
26 result = "failed: no exception thrown";
27 exception = null;
32 result = "passed: threw exception",
33 exception = e.toString();
37 "new Math() [ exception is " + exception +" ]",
38 "passed: threw exception",
H A Dexception-003.js2 * File Name: exception-003
11 var SECTION = "exception-003";
26 result = "failed: no exception thrown";
27 exception = null;
34 result = "passed: threw exception",
35 exception = e.toString();
41 "string.toString() [ exception is " + exception +" ]",
42 "passed: threw exception",

Completed in 353 milliseconds

1234567891011>>