HomeSort by relevance Sort by last modified time
    Searched defs:thrown (Results 1 - 25 of 28) sorted by null

1 2

  /libcore/luni/src/main/java/java/io/
FilterOutputStream.java 59 Throwable thrown = null; local
63 thrown = e;
69 if (thrown == null) {
70 thrown = e;
74 if (thrown != null) {
75 SneakyThrow.sneakyThrow(thrown);
BufferedWriter.java 89 Throwable thrown = null; local
93 thrown = e;
100 if (thrown == null) {
101 thrown = e;
106 if (thrown != null) {
107 SneakyThrow.sneakyThrow(thrown);
  /frameworks/base/core/java/android/util/
Base64OutputStream.java 105 IOException thrown = null; local
110 thrown = e;
120 if (thrown != null) {
121 thrown = e;
125 if (thrown != null) {
126 throw thrown;
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyFormatter.java 98 Throwable thrown = record.getThrown(); local
107 if (thrown != null) {
110 thrown.printStackTrace(pw);
  /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();
  /libcore/luni/src/main/java/java/util/logging/
LogRecord.java 115 private Throwable thrown; field in class:LogRecord
179 this.thrown = null;
445 return thrown;
451 * @param thrown
455 public void setThrown(Throwable thrown) {
456 this.thrown = thrown;
  /frameworks/base/core/jni/
android_text_format_Time.cpp 364 bool *thrown)
370 if (!*thrown) {
374 *thrown = true;
399 bool thrown = false; local
411 n = get_char(env, s, 0, 1000, &thrown);
412 n += get_char(env, s, 1, 100, &thrown);
413 n += get_char(env, s, 2, 10, &thrown);
414 n += get_char(env, s, 3, 1, &thrown);
415 if (thrown) return false;
419 n = get_char(env, s, 4, 10, &thrown);
482 bool thrown = false; local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java 461 * handle OutOfMemoryErrors that might be thrown while trying to
1074 Throwable thrown = null; local
    [all...]
  /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/doclava/src/com/google/doclava/
Stubs.java 258 for (ClassInfo thrown : mInfo.thrownExceptions()) {
259 cantStripThis(thrown, notStrippable, "11:" + mInfo.realContainingClass().qualifiedName()
548 for (ClassInfo thrown : method.thrownExceptions()) {
549 stream.print(comma + thrown.qualifiedName());
652 for (ClassInfo thrown : thrownExceptions) {
653 exceptionNames.add(thrown.name());
658 // bad exception indicates that the exceptions thrown by the super constructor
664 for (ClassInfo thrown : m.thrownExceptions()) {
665 if (!exceptionNames.contains(thrown.name())) {
    [all...]
  /external/v8/src/
isolate.cc 932 // Set the exception being re-thrown.
955 MaybeObject* thrown = scheduled_exception(); local
958 return ReThrow(thrown);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/
antsupportlib.jar 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
reiserfs_fs.h 1344 struct buffer_head *thrown[MAX_FEB_SIZE]; member in struct:tree_balance
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
reiserfs_fs.h 1344 struct buffer_head *thrown[MAX_FEB_SIZE]; member in struct:tree_balance
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
reiserfs_fs.h 1344 struct buffer_head *thrown[MAX_FEB_SIZE]; member in struct:tree_balance
    [all...]
  /external/v8/test/cctest/
test-api.cc 2962 Local<Value> thrown = context->Global()->Get(v8_str("thrown")); local
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 

Completed in 7229 milliseconds

1 2