HomeSort by relevance Sort by last modified time
    Searched refs:thrown (Results 26 - 50 of 132) sorted by null

12 3 4 5 6

  /external/jmonkeyengine/engine/src/core/com/jme3/system/
NullContext.java 73 public void uncaughtException(Thread thread, Throwable thrown) {
74 listener.handleError("Uncaught exception thrown in "+thread.toString(), thrown);
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglAbstractDisplay.java 98 public void uncaughtException(Thread thread, Throwable thrown) {
99 listener.handleError("Uncaught exception thrown in "+thread.toString(), thrown);
LwjglOffscreenBuffer.java 77 public void uncaughtException(Thread thread, Throwable thrown) {
78 listener.handleError("Uncaught exception thrown in "+thread.toString(), thrown);
  /libcore/luni/src/main/java/java/util/logging/
Logger.java 807 * Logs a message indicating that an exception is thrown. A log record with
816 * @param thrown
820 Throwable thrown) {
829 record.setThrown(thrown);
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest_catch_exceptions_test.py 77 self.assert_('SEH exception with code 0x2a thrown '
80 self.assert_('SEH exception with code 0x2a thrown '
83 self.assert_('SEH exception with code 0x2a thrown in SetUpTestCase()'
85 self.assert_('SEH exception with code 0x2a thrown in TearDownTestCase()'
87 self.assert_('SEH exception with code 0x2a thrown in SetUp()'
89 self.assert_('SEH exception with code 0x2a thrown in TearDown()'
91 self.assert_('SEH exception with code 0x2a thrown in the test body'
106 * Exception thrown affect the remainder of the test work flow in the
112 '"Standard C++ exception" thrown '
125 '"Standard C++ exception" thrown '
    [all...]
  /external/chromium_org/v8/test/mjsunit/
getter-in-prototype.js 28 // Test that exceptions are not thrown when setting properties on object
30 // mode where exceptsions should be thrown.
api-call-after-bypassed-exception.js 28 // This is a test of making an API call after an exception thrown in JavaScript
get-prototype-of.js 54 // Make sure that TypeError exceptions are thrown when non-objects are passed
  /external/chromium_org/v8/test/webkit/
stack-unwinding.js 47 throw "Exception thrown";
63 testPassed("Exception thrown and caught");
dfg-exception.js 25 "This tests that exceptions are thrown correctly."
eval-throw-return.js 24 description('This test verifies the result returned by the eval function when exceptions are thrown and caught whithin the contents of the evaluated string.');
  /external/v8/test/mjsunit/
getter-in-prototype.js 28 // Test that exceptions are not thrown when setting properties on object
30 // mode where exceptsions should be thrown.
api-call-after-bypassed-exception.js 28 // This is a test of making an API call after an exception thrown in JavaScript
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ProxyTest.java 33 * When multiple interfaces define the same method, the list of thrown
149 } catch (Support_Proxy_ParentException e) { // is never thrown
156 } catch (Support_Proxy_ParentException e) { // is never thrown
165 } catch (Support_Proxy_ParentException e) { // is never thrown
175 } catch (Support_Proxy_ParentException e) { // is never thrown
221 boolean thrown = false;
225 thrown = true;
227 assertTrue("NPE not thrown.", thrown);
  /external/guava/guava-tests/test/com/google/common/base/
SuppliersTest.java 265 final AtomicReference<Throwable> thrown = local
300 thrown.set(new TimeoutException(
328 if (thrown.get() != null) {
329 throw thrown.get();
  /external/jmonkeyengine/engine/src/android/com/jme3/system/android/
OGLESContext.java 224 public void uncaughtException(Thread thread, Throwable thrown) {
225 ((AndroidHarness) ctx).handleError("Exception thrown in " + thread.toString(), thrown);
231 public void uncaughtException(Thread thread, Throwable thrown) {
232 listener.handleError("Exception thrown in " + thread.toString(), thrown);
  /external/lzma/CS/7zip/
ICoder.cs 8 /// The exception that is thrown when an error in input stream occurs during decoding.
16 /// The exception that is thrown when the value of an argument is outside the allowable range.
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyFactoryTest.java 590 private void checkException(String message, Exception thrown, Class<? extends Exception> expected) {
591 if (thrown == null) {
595 } else if (expected == thrown.getClass()) {
600 fail(message + ", unexpected exception: " + thrown + ", expected: " + expected.getName());
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1172-bis.js 28 // Verifies that exception thrown from JS accessors when attempting a call
regress-1118.js 30 // An exception thrown in a function optimized by on-stack replacement (OSR)
regress-1132.js 28 // Test the case when exception is thrown from the parser when lazy
regress-1355.js 28 // Test that an exception is not thrown when trying to set a value for
  /external/v8/test/mjsunit/regress/
regress-1172-bis.js 28 // Verifies that exception thrown from JS accessors when attempting a call
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java 471 * errors such as OutOfMemoryError, that might be thrown while
1110 Throwable thrown = null; local
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
platform_app.js 25 * thrown by the stub (this is the name that the object is commonly referred
44 * thrown by the getter stub (this is the name that the object is commonly

Completed in 3773 milliseconds

12 3 4 5 6