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

1234567891011>>

/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-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/libcxxabi/src/
H A Dexception.cpp1 //===---------------------------- exception.cpp ---------------------------===//
10 #include <exception>
17 // exception
19 exception::~exception() _NOEXCEPT
23 const char* exception::what() const _NOEXCEPT
25 return "std::exception";
H A Dcxa_unexpected.cpp10 #include <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.js158 // Test that all natives using the ToObject call throw the right exception.
163 var exception = false;
173 exception = true;
176 assertTrue(exception);
178 exception = false;
182 exception = true;
185 assertTrue(exception);
187 exception = false;
191 exception = true;
194 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/icu/icu4c/source/common/
H A Dutypeinfo.h13 // Windows header <typeinfo> does not define 'exception' in 'std' namespace.
16 // include <exception> explicilty and add using statement below.
20 // with exception disabled, you have to suppress warning 4275.
22 #include <exception>
23 using std::exception;
/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/libcxx/test/std/depr/exception.unexpected/unexpected.handler/
H A Dunexpected_handler.pass.cpp12 #include <exception>
/external/libcxx/test/std/language.support/support.exception/exception/
H A Dexception.pass.cpp10 // test exception
12 #include <exception>
18 static_assert(std::is_polymorphic<std::exception>::value,
19 "std::is_polymorphic<std::exception>::value");
20 std::exception b;
21 std::exception b2 = b;
/external/libcxx/test/std/language.support/support.exception/exception.terminate/terminate.handler/
H A Dterminate_handler.pass.cpp12 #include <exception>
/external/libcxx/test/std/language.support/support.exception/
H A Dversion.pass.cpp10 // <exception>
12 #include <exception>
/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/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/exception/
H A DPlotRenderException.java17 package com.androidplot.exception;
/external/guava/guava/src/com/google/common/eventbus/
H A DSubscriberExceptionHandler.java27 void handleException(Throwable exception, SubscriberExceptionContext context); argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
H A DNullArgumentException.java17 package org.apache.commons.math.exception;
19 import org.apache.commons.math.exception.util.Localizable;
20 import org.apache.commons.math.exception.util.LocalizedFormats;
24 * this exception.
H A DZeroException.java17 package org.apache.commons.math.exception;
19 import org.apache.commons.math.exception.util.Localizable;
20 import org.apache.commons.math.exception.util.LocalizedFormats;
34 * Construct the exception.
41 * Construct the exception with a specific context.

Completed in 792 milliseconds

1234567891011>>