HomeSort by relevance Sort by last modified time
    Searched refs:thrown (Results 51 - 75 of 245) sorted by null

1 23 4 5 6 7 8 910

  /external/v8/test/mjsunit/
regress-3456.js 11 // properly. If it does not, a ReferenceError is thrown during parsing.
keyed-call-generic.js 102 var thrown = false;
106 thrown = true;
108 assertEquals(exceptions[k], thrown);
  /external/okhttp/okio/okio/src/main/java/okio/
RealBufferedSink.java 231 Throwable thrown = null;
237 thrown = e;
243 if (thrown == null) thrown = e;
247 if (thrown != null) Util.sneakyRethrow(thrown);
  /prebuilts/tools/common/m2/repository/org/gebish/geb-waiting/0.9.3/
geb-waiting-0.9.3.jar 
  /external/guava/guava-tests/test/com/google/common/io/
CloserTest.java 303 throw closer.rethrow(new IOException("thrown"), IOException.class);
313 assertEquals("Suppressing exception thrown when closing " + c2, record.getMessage());
316 assertEquals("Suppressing exception thrown when closing " + c1, record.getMessage());
374 * Asserts that an exception was thrown when trying to close each of the given throwables and that
375 * each such exception was suppressed because of the given thrown exception.
389 public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) {
390 suppressions.add(new Suppression(closeable, thrown, suppressed));
399 private final Throwable thrown; field in class:CloserTest.Suppression
402 private Suppression(Closeable closeable, Throwable thrown, Throwable suppressed) {
404 this.thrown = thrown
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
decode_with_partial_drops.c 141 int* thrown, int* kept)
176 if (*thrown == 0 && !loss_event)
185 (*thrown)++;
205 int thrown=0, kept=0; local
299 thrown += thrown_frame;
  /libcore/ojluni/src/main/java/java/util/logging/
LogRecord.java 127 private Throwable thrown; field in class:LogRecord
443 return thrown;
449 * @param thrown a throwable (may be null)
451 public void setThrown(Throwable thrown) {
452 this.thrown = thrown;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
JPDADebuggeeSynchronizer.java 151 } catch (Throwable thrown) {
154 logWriter.println("#### " + thrown);
157 msg = "" + thrown;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
ThreadGroup002Debuggee.java 86 } catch ( Throwable thrown) {
88 ("--> ThreadGroup002Debuggee: Exception while creating threads: " + thrown);
Status003Debuggee.java 71 } catch (Throwable thrown) {
Status004Debuggee.java 71 } catch (Throwable thrown) {
  /external/v8/test/mjsunit/es6/debug-promises/
resolve-after-aborted-try-finally.js 8 // there is a catch handler for the exception thrown in a Promise.
resolve-after-try-catch.js 8 // there is a catch handler for the exception thrown in a Promise.
rethrow-in-try-finally.js 8 // there is a catch handler for the exception thrown in a Promise.
throw-caught-uncaught.js 8 // there is a catch handler for the exception thrown in a Promise.
throw-with-throw-in-reject.js 7 // Test debug events when an exception is thrown inside a Promise, which is
10 // 1) when the exception is thrown in the promise q.
throw-with-undefined-reject.js 7 // Test debug events when an exception is thrown inside a Promise, which is
10 // 1) when the exception is thrown in the promise q.
throw-caught-all.js 8 // there is a catch handler for the exception thrown in a Promise.
throw-in-constructor.js 8 // an exception is thrown in the Promise constructor.
  /prebuilts/tools/common/m2/repository/com/sun/istack/istack-commons-runtime/2.21/
istack-commons-runtime-2.21.jar 
  /art/test/971-iface-super/util-src/
generate_smali.py 217 return "No exception thrown for {iface_name}.super.call() on {tree}\n"
219 return "AbstractMethodError thrown for {iface_name}.super.call() on {tree}\n"
221 return "NoSuchMethodError thrown for {iface_name}.super.call() on {tree}\n"
223 return "IncompatibleClassChangeError thrown for {iface_name}.super.call() on {tree}\n"
272 # System.out.println("No exception thrown for {iface_name}.super.call() on {tree}");
274 # System.out.println("AbstractMethodError thrown for {iface_name}.super.call() on {tree}");
276 # System.out.println("NoSuchMethodError thrown for {iface_name}.super.call() on {tree}");
278 # System.out.println("IncompatibleClassChangeError thrown for {iface_name}.super.call() on {tree}");
280 # System.out.println("Unknown error thrown for {iface_name}.super.call() on {tree}");
287 const-string v1, "No exception thrown for {iface_name}.super.call() on {tree}
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Futures.java 86 * See {@link Future#get()} for details on the exceptions thrown.
182 private final Throwable thrown; field in class:Futures.ImmediateFailedFuture
184 ImmediateFailedFuture(Throwable thrown) {
185 this.thrown = thrown;
190 throw new ExecutionException(thrown);
196 private final CancellationException thrown; field in class:Futures.ImmediateCancelledFuture
199 this.thrown = new CancellationException("Immediate cancelled future.");
210 "Task was cancelled.", thrown);
217 private final X thrown; field in class:Futures.ImmediateFailedCheckedFuture
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
FramedConnection.java 451 IOException thrown = null; local
455 thrown = e;
477 if (thrown != null) thrown = e;
492 if (thrown == null) thrown = e;
499 thrown = e;
502 if (thrown != null) throw thrown;
  /external/google-breakpad/src/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 '
125 '"Standard C++ exception" thrown '
    [all...]
  /external/gtest/test/
gtest_catch_exceptions_test.py 90 self.assert_('SEH exception with code 0x2a thrown '
93 self.assert_('SEH exception with code 0x2a thrown '
96 self.assert_('SEH exception with code 0x2a thrown in SetUpTestCase()'
98 self.assert_('SEH exception with code 0x2a thrown in TearDownTestCase()'
100 self.assert_('SEH exception with code 0x2a thrown in SetUp()'
102 self.assert_('SEH exception with code 0x2a thrown in TearDown()'
104 self.assert_('SEH exception with code 0x2a thrown in the test body'
119 * Exception thrown affect the remainder of the test work flow in the
125 '"Standard C++ exception" thrown '
138 '"Standard C++ exception" thrown '
    [all...]

Completed in 1735 milliseconds

1 23 4 5 6 7 8 910