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

1234567891011>>

/external/stlport/test/unit/
H A Dexception_header_test.cpp8 #include <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/regress/
H A Dregress-1119.js32 __proto__.__defineSetter__("y", function() { throw 'exception'; });
38 var exception; variable
43 exception = e;
45 assertEquals('exception', exception);
/external/fdlibm/
H A Ds_matherr.c17 int ieee_matherr(struct exception *x)
20 struct exception *x;
/external/bouncycastle/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",
H A Dexception-004.js2 * File Name: exception-004
11 var SECTION = "exception-004";
26 result = "failed: no exception thrown";
27 exception = null;
32 result = "passed: threw exception",
33 exception = e.toString();
37 "foo[\"bar\"] [ exception is " + exception +" ]",
38 "passed: threw exception",
H A Dexception-005.js2 * File Name: exception-005
11 var SECTION = "exception-005";
26 result = "failed: no exception thrown";
27 exception = null;
32 result = "passed: threw exception",
33 exception = e.toString();
37 "foo[\"bar\"] [ exception is " + exception +" ]",
38 "passed: threw exception",
H A Dexception-006.js2 * File Name: exception-006
11 var SECTION = "exception-006";
37 result = "failed: no exception thrown";
38 exception = null;
43 result = "passed: threw exception",
44 exception = e.toString();
48 "new MyObject() + new MyObject() [ exception is " + exception +" ]",
49 "passed: threw exception",
H A Dexception-007.js2 * File Name: exception-007
11 var SECTION = "exception-007";
38 result = "failed: no exception thrown";
39 exception = null;
44 result = "passed: threw exception",
45 exception = e.toString();
49 "new MyObject() + new MyObject() [ exception is " + exception +" ]",
50 "passed: threw exception",
H A Dexception-008.js2 * File Name: exception-008
11 var SECTION = "exception-008";
26 result = "failed: no exception thrown";
27 exception = null;
32 result = "passed: threw exception",
33 exception = e.toString();
37 "eval(\"continue\") [ exception is " + exception +" ]",
38 "passed: threw exception",
H A Dexpression-001.js30 var exception = "No exception was thrown";
36 exception = e.toString();
42 "(threw "+ exception +")",
H A Dexpression-005.js23 var exception = "No exception thrown"; variable
29 exception = e.toString();
34 "result= new Math() (threw " + exception + ")",
H A Dexpression-006.js24 var exception = "No exception thrown"; variable
32 exception = e.toString();
38 " (threw " + exception +")",
H A Dexpression-007.js22 var exception = "No exception thrown"; variable
30 exception = e.toString();
36 " (threw " + exception +")",
H A Dexpression-008.js21 var exception = "No exception thrown"; variable
28 exception = e.toString();
34 " (threw " + exception +")",
H A Dexpression-009.js22 var exception = "No exception thrown"; variable
29 exception = e.toString();
35 " (threw " + exception +")",

Completed in 274 milliseconds

1234567891011>>