Searched refs:thrown (Results 1 - 25 of 47) sorted by relevance

12

/external/okhttp/okio/src/main/java/okio/
H A DDeflaterSink.java104 Throwable thrown = null;
109 thrown = e;
115 if (thrown == null) thrown = e;
121 if (thrown == null) thrown = e;
125 if (thrown != null) Util.sneakyRethrow(thrown);
H A DRealBufferedSink.java164 Throwable thrown = null;
170 thrown = e;
176 if (thrown == null) thrown = e;
180 if (thrown != null) Util.sneakyRethrow(thrown);
/external/smack/src/org/xbill/DNS/
H A DExtendedResolver.java28 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
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
H A DGetValues003Test.java66 } catch ( Throwable thrown) {
68 logWriter.println("## Exception: " + thrown);
69 fail("Can not get debuggeeRefTypeID, Exception: " + thrown);
85 } catch ( Throwable thrown) {
87 logWriter.println("## Exception: " + thrown);
88 fail("Can not get superClassCheckedFieldID, Exception: " + thrown);
97 } catch ( Throwable thrown) {
99 logWriter.println("## Exception: " + thrown);
100 fail(" Can not get chekedClassRefTypeID, Exception: " + thrown);
H A DGetValues004Test.java67 } catch ( Throwable thrown) {
69 logWriter.println("## Exception: " + thrown);
70 fail("Can not get anotherClassRefTypeID, Exception: " + thrown);
86 } catch ( Throwable thrown) {
88 logWriter.println("## Exception: " + thrown);
89 fail("Can not get anotherClassCheckedFieldID, Exception: " + thrown);
98 } catch ( Throwable thrown) {
100 logWriter.println("## Exception: " + thrown);
101 fail("Can not get debuggeeRefTypeID, Exception: " + thrown);
/external/smack/src/com/kenai/jbosh/
H A DBodyParserSAX.java161 Exception thrown;
168 thrown = saxx;
170 thrown = iox;
172 throw(new BOSHException("Could not parse body:\n" + xml, thrown));
187 Exception thrown;
194 thrown = ex;
196 thrown = ex;
199 "Could not create SAX parser", thrown));
H A DBodyParserXmlPull.java63 Exception thrown;
125 thrown = rtx;
127 thrown = xmlppx;
129 thrown = iox;
131 throw(new BOSHException("Could not parse body:\n" + xml, thrown));
146 Exception thrown;
156 thrown = ex;
159 "Could not create XmlPull parser", thrown));
H A DServiceLib.java151 Exception thrown;
164 thrown = ex;
167 thrown = ex;
170 thrown = ex;
175 thrown);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DUtil.java140 Throwable thrown = null;
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 instanceo
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
H A DBreakpointTest.java88 } catch (TestErrorException thrown) {
89 logWriter.println("=> Exception while receiving event:" + thrown);
118 } catch (Throwable thrown) {
121 + thrown);
122 fail("Exception while analyzing received event: "+ thrown);
H A DMethodEntryExitTest.java99 } catch (TestErrorException thrown) {
100 logWriter.println("=> Exception while receiving event:" + thrown);
129 } catch (Throwable thrown) {
132 + thrown);
133 fail("Exception while analyzing received event:" + thrown);
H A DThreadEndTest.java89 } catch (TestErrorException thrown) {
90 logWriter.println("=> Exception while receiving event:" + thrown);
113 } catch (Throwable thrown) {
115 + thrown);
116 fail("##FAILURE: Exception while analyzing received event:" + thrown);
H A DThreadStartTest.java90 } catch (TestErrorException thrown) {
91 logWriter.println("=> Exception while receiving event:" + thrown);
117 } catch (Throwable thrown) {
119 + thrown);
120 fail("##FAILURE: Exception while analyzing received event:" + thrown);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
H A DRedefineClassesTest.java170 } catch (Throwable thrown) {
174 logWriter.println("===> Exception is thrown: " + thrown);
182 } catch (Throwable thrown) {
186 logWriter.println("===> Exception is thrown: " + thrown);
194 } catch (Throwable thrown) {
198 logWriter.println("===> Exception is thrown: " + thrown);
204 } catch (Throwable thrown) {
[all...]
H A DResumeDebuggee.java78 } catch ( Throwable thrown) {
80 ("--> ResumeDebuggee: Exception while creating threads: " + thrown);
/external/chromium_org/v8/test/mjsunit/
H A Dkeyed-call-generic.js102 var thrown = false;
106 thrown = true;
108 assertEquals(exceptions[k], thrown);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
H A DStatus002Debuggee.java71 } catch (Throwable thrown) {
102 } catch (Throwable thrown) {
H A DStopDebuggee.java120 } catch (Throwable thrown) {
121 logWriter.println(getName() + ": Exception is caught: " + thrown);
122 if ( thrown.equals(exception) ) {
H A DResumeDebuggee.java77 } catch ( Throwable thrown) {
79 ("--> ResumeDebuggee: Exception while creating threads: " + thrown);
H A DSuspendCountDebuggee.java77 } catch ( Throwable thrown) {
79 ("--> SuspendCountDebuggee: Exception while creating threads: " + thrown);
H A DSuspendDebuggee.java75 } catch ( Throwable thrown) {
77 ("--> SuspendDebuggee: Exception while creating threads: " + thrown);
H A DThreadGroup002Debuggee.java86 } catch ( Throwable thrown) {
88 ("--> ThreadGroup002Debuggee: Exception while creating threads: " + thrown);
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
H A Dpacket_loss_test.cc194 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/libvpx/libvpx/examples/
H A Ddecode_with_partial_drops.c141 int* thrown, int* kept)
176 if (*thrown == 0 && !loss_event)
185 (*thrown)++;
205 int thrown=0, kept=0; local
299 thrown += thrown_frame;
140 throw_packets(unsigned char* frame, int* size, int loss_rate, int* thrown, int* kept) argument
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
H A DJPDADebuggeeSynchronizer.java148 } catch (Throwable thrown) {
151 logWriter.println("#### " + thrown);
154 msg = "" + thrown;

Completed in 366 milliseconds

12