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

1 2 3

  /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);
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
packet_loss_test.cc 194 int thrown = 0; local
197 if (!PacketLoss(_lossProbability, thrown))
208 thrown++;
215 int lossResult = (thrown!=0); // 0 = no loss 1 = loss(es)
223 _totalThrown += thrown;
226 //printf("Threw away: %d out of %d packets\n", thrown, thrown + kept);
  /external/smack/src/com/kenai/jbosh/
ServiceLib.java 151 Exception thrown; local
164 thrown = ex;
167 thrown = ex;
170 thrown = ex;
175 thrown);
BodyParserSAX.java 161 Exception thrown; local
168 thrown = saxx;
170 thrown = iox;
172 throw(new BOSHException("Could not parse body:\n" + xml, thrown));
187 Exception thrown; local
194 thrown = ex;
196 thrown = ex;
199 "Could not create SAX parser", thrown));
BodyParserXmlPull.java 63 Exception thrown; local
125 thrown = rtx;
127 thrown = xmlppx;
129 thrown = iox;
131 throw(new BOSHException("Could not parse body:\n" + xml, thrown));
146 Exception thrown; local
156 thrown = ex;
159 "Could not create XmlPull parser", 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;
  /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();
  /art/test/004-JniTest/
jni_test.cc 304 jthrowable thrown = env->ExceptionOccurred(); variable
308 jclass thrown_class = env->GetObjectClass(thrown);
  /external/libvpx/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;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Util.java 140 Throwable thrown = null; local
144 thrown = e;
149 if (thrown == null) thrown = e;
151 if (thrown == null) return;
152 if (thrown instanceof IOException) throw (IOException) thrown;
153 if (thrown instanceof RuntimeException) throw (RuntimeException) thrown;
154 if (thrown instanceof Error) throw (Error) thrown
    [all...]
  /external/smack/src/org/xbill/DNS/
ExtendedResolver.java 28 Throwable thrown; field in class:ExtendedResolver.Resolution
70 thrown = t;
120 else if (thrown instanceof IOException)
121 throw (IOException) thrown;
122 else if (thrown instanceof RuntimeException)
123 throw (RuntimeException) thrown;
124 else if (thrown instanceof Error)
125 throw (Error) thrown;
190 if (thrown == null)
191 thrown = e
    [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/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;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyConnection.java 433 IOException thrown = null; local
437 thrown = e;
459 if (thrown != null) thrown = e;
473 thrown = e;
478 if (thrown == null) thrown = e;
481 if (thrown != null) throw thrown;
  /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/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: "
1126 protected Throwable thrown; field in class:HttpsURLConnectionTest.Work
    [all...]
  /external/doclava/src/com/google/doclava/
Stubs.java 305 for (ClassInfo thrown : mInfo.thrownExceptions()) {
306 cantStripThis(thrown, notStrippable, "11:" + mInfo.realContainingClass().qualifiedName()
599 for (ClassInfo thrown : method.thrownExceptions()) {
600 stream.print(comma + thrown.qualifiedName());
703 for (ClassInfo thrown : thrownExceptions) {
704 exceptionNames.add(thrown.name());
709 // bad exception indicates that the exceptions thrown by the super constructor
715 for (ClassInfo thrown : m.thrownExceptions()) {
716 if (!exceptionNames.contains(thrown.name())) {
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.8.0/
ant-launcher-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.8.2/
ant-launcher-1.8.2.jar 
  /external/chromium_org/v8/src/
isolate.cc 852 // Set the exception being re-thrown.
903 Object* thrown = scheduled_exception(); local
906 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 
  /external/chromium_org/v8/test/cctest/
test-api.cc 4954 Local<Value> thrown = context->Global()->Get(v8_str("thrown")); local
    [all...]
  /prebuilts/devtools/tools/lib/
monkeyrunner.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 1402 milliseconds

1 2 3