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

  /libcore/luni/src/main/java/java/io/
FilterOutputStream.java 58 Throwable thrown = null; local
62 thrown = e;
68 if (thrown == null) {
69 thrown = e;
73 if (thrown != null) {
74 SneakyThrow.sneakyThrow(thrown);
BufferedWriter.java 93 Throwable thrown = null; local
97 thrown = e;
104 if (thrown == null) {
105 thrown = e;
110 if (thrown != null) {
111 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;
  /libcore/luni/src/main/java/java/util/logging/
LogRecord.java 115 private Throwable thrown; field in class:LogRecord
179 this.thrown = null;
447 return thrown;
453 * @param thrown
457 public void setThrown(Throwable thrown) {
458 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...]
  /build/tools/droiddoc/src/
Stubs.java 278 for (ClassInfo thrown : mInfo.thrownExceptions()){
279 cantStripThis(thrown, notStrippable, "11:" +
581 for (ClassInfo thrown: method.thrownExceptions()) {
582 stream.print(comma + thrown.qualifiedName());
685 for (ClassInfo thrown : thrownExceptions){
686 exceptionNames.add(thrown.name());
691 //bad exception indicates that the exceptions thrown by the super constructor
697 for (ClassInfo thrown : m.thrownExceptions()){
698 if (!exceptionNames.contains(thrown.name())){
    [all...]
  /external/v8/src/
top.cc 613 // Set the exception being re-thrown.
635 Object* thrown = scheduled_exception(); local
638 return ReThrow(thrown);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java 473 * handle OutOfMemoryErrors that might be thrown while trying to
1086 Throwable thrown = null; local
    [all...]
  /external/v8/test/cctest/
test-api.cc 2018 Local<Value> thrown = context->Global()->Get(v8_str("thrown")); local
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/common/ant/
ant.jar 

Completed in 221 milliseconds