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

12 3 4 5 6 7

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 225 fail("Expected exception was not thrown.");
228 System.out.println("Expected exception was thrown: "
349 fail("Expected IllegalStateException was not thrown");
354 fail("Expected IllegalStateException was not thrown");
359 fail("Expected IllegalStateException was not thrown");
365 fail("Expected IllegalStateException was not thrown");
370 fail("Expected IllegalStateException was not thrown");
761 fail("Expected exception was not thrown.");
764 System.out.println("Expected exception was thrown: "
1128 protected Throwable thrown; field in class:HttpsURLConnectionTest.Work
    [all...]
  /external/v8/test/mjsunit/
keyed-call-generic.js 102 var thrown = false;
106 thrown = true;
108 assertEquals(exceptions[k], thrown);
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/testing/gtest/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 '
122 '"Standard C++ exception" thrown '
    [all...]
  /external/gtest/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 '
122 '"Standard C++ exception" thrown '
    [all...]
  /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);
  /external/libvpx/libvpx/third_party/googletest/src/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 '
122 '"Standard C++ exception" thrown '
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
Logger.java 808 * Logs a message indicating that an exception is thrown. A log record with
817 * @param thrown
821 Throwable thrown) {
830 record.setThrown(thrown);
    [all...]
  /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/webkit/LayoutTests/dom/xhtml/level3/core/
documentrenamenode09.js 80 from a different document than this document, a WRONG_DOCUMENT_ERR exception is thrown.
85 be created from this new document node. Verify that no exception is thrown upon renaming and verify
nodereplacechild21.js 90 NO_MODIFICATION_ALLOWED_ERR is thrown since DocumentType node is read-only.
91 Also try replacing the docType with an entity node and see if the same exception gets thrown.
documentadoptnode07.js 79 Verify if a NOT_SUPPORTED_ERR is thrown.
documentadoptnode10.js 79 documents doctype node. Verify if a NOT_SUPPORTED_ERR is thrown.
  /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/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
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java 465 * handle OutOfMemoryErrors that might be thrown while trying to
1078 Throwable thrown = null; local
    [all...]

Completed in 421 milliseconds

12 3 4 5 6 7