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

12

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
H A DArrayTest.java33 boolean thrown = false;
42 thrown = true;
44 if (!thrown) {
47 thrown = false;
52 thrown = true;
54 if (!thrown) {
67 boolean thrown = false;
75 thrown = true;
77 if (!thrown) {
80 thrown
[all...]
/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/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/src/main/java/com/squareup/okhttp/internal/
H A DUtil.java138 Throwable thrown = null;
142 thrown = e;
147 if (thrown == null) thrown = e;
149 if (thrown == null) return;
150 if (thrown instanceof IOException) throw (IOException) thrown;
151 if (thrown instanceof RuntimeException) throw (RuntimeException) thrown;
152 if (thrown instanceo
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dkeyed-call-generic.js102 var thrown = false;
106 thrown = true;
108 assertEquals(exceptions[k], thrown);
/external/v8/test/mjsunit/
H A Dkeyed-call-generic.js102 var thrown = false;
106 thrown = true;
108 assertEquals(exceptions[k], thrown);
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSpdyConnection.java320 IOException thrown = null;
324 thrown = e;
346 if (thrown != null) thrown = e;
360 thrown = e;
365 if (thrown == null) thrown = e;
368 if (thrown != null) throw thrown;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
H A DHttpsURLConnectionTest.java225 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: "
1011 if (client.thrown !
1128 protected Throwable thrown; field in class:HttpsURLConnectionTest.Work
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/system/
H A DNullContext.java73 public void uncaughtException(Thread thread, Throwable thrown) {
74 listener.handleError("Uncaught exception thrown in "+thread.toString(), thrown);
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
H A DLwjglAbstractDisplay.java98 public void uncaughtException(Thread thread, Throwable thrown) {
99 listener.handleError("Uncaught exception thrown in "+thread.toString(), thrown);
H A DLwjglOffscreenBuffer.java77 public void uncaughtException(Thread thread, Throwable thrown) {
78 listener.handleError("Uncaught exception thrown in "+thread.toString(), thrown);
/external/guava/guava-tests/test/com/google/common/base/
H A DSuppliersTest.java265 final AtomicReference<Throwable> thrown =
300 thrown.set(new TimeoutException(
328 if (thrown.get() != null) {
329 throw thrown.get();
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/
H A DOGLESContext.java224 public void uncaughtException(Thread thread, Throwable thrown) {
225 ((AndroidHarness) ctx).handleError("Exception thrown in " + thread.toString(), thrown);
231 public void uncaughtException(Thread thread, Throwable thrown) {
232 listener.handleError("Exception thrown in " + thread.toString(), thrown);
/external/libvpx/libvpx/examples/includes/geshi/geshi/
H A Dtcl.php12 * This was thrown together in about an hour so I don't expect
/external/doclava/src/com/google/doclava/
H A DStubs.java275 for (ClassInfo thrown : mInfo.thrownExceptions()) {
276 cantStripThis(thrown, notStrippable, "11:" + mInfo.realContainingClass().qualifiedName()
565 for (ClassInfo thrown : method.thrownExceptions()) {
566 stream.print(comma + thrown.qualifiedName());
669 for (ClassInfo thrown : thrownExceptions) {
670 exceptionNames.add(thrown.name());
675 // bad exception indicates that the exceptions thrown by the super constructor
681 for (ClassInfo thrown : m.thrownExceptions()) {
682 if (!exceptionNames.contains(thrown.name())) {
/external/llvm/test/MC/ARM/
H A Deh-directive-setfp.s8 @ the stack pointer out of the function prologue. If the exception is thrown,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/
H A Dantsupportlib.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/ant/ org/eclipse/ant/internal/ ...
/external/v8/src/
H A Disolate.cc932 // Set the exception being re-thrown.
955 MaybeObject* thrown = scheduled_exception(); local
958 return ReThrow(thrown);
1142 // Do not forget to clean catcher_ if currently thrown exception cannot
/external/chromium_org/v8/src/
H A Disolate.cc1148 // Set the exception being re-thrown.
1190 MaybeObject* thrown = scheduled_exception(); local
1193 return ReThrow(thrown);
1421 // Do not forget to clean catcher_ if currently thrown exception cannot
/external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/JSON/
H A DbackportPP.pm2636 exception to be thrown, except for references to the integers C<0> and
/external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/
H A DJSON.pm1855 exception to be thrown, except for references to the integers C<0> and
/external/chromium_org/third_party/JSON/JSON-2.59/lib/JSON/
H A DbackportPP.pm2636 exception to be thrown, except for references to the integers C<0> and
/external/chromium_org/third_party/JSON/JSON-2.59/lib/
H A DJSON.pm1855 exception to be thrown, except for references to the integers C<0> and

Completed in 466 milliseconds

12