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

1 2 3 4 5 6 7

  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
ArrayTest.java 33 boolean thrown = false;
45 thrown = true;
47 if (!thrown) {
50 thrown = false;
55 thrown = true;
57 if (!thrown) {
64 thrown = false;
76 thrown = true;
78 if (!thrown) {
81 thrown = false
    [all...]
FieldTest.java 40 // to be thrown. This version has been validated to pass on a standard
200 boolean thrown = false;
207 thrown = true;
209 assertTrue("IllegalAccessException expected but not thrown", thrown);
218 thrown = false;
225 thrown = true;
227 assertTrue("IllegalArgumentException expected but not thrown", thrown);
230 thrown = false
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
ArrayTest.java 33 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 = false
    [all...]
  /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;
  /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...]
  /frameworks/base/core/jni/
android_text_format_Time.cpp 369 bool* thrown)
375 if (!*thrown) {
378 *thrown = true;
412 bool thrown = false; local
413 n = get_char(env, s, 0, 1000, &thrown);
414 n += get_char(env, s, 1, 100, &thrown);
415 n += get_char(env, s, 2, 10, &thrown);
416 n += get_char(env, s, 3, 1, &thrown);
417 if (thrown) return false;
421 n = get_char(env, s, 4, 10, &thrown);
493 bool thrown = false; local
    [all...]
  /external/smack/src/com/kenai/jbosh/
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));
ServiceLib.java 151 Exception thrown; local
164 thrown = ex;
167 thrown = ex;
170 thrown = ex;
175 thrown);
  /external/webkit/LayoutTests/fast/events/touch/resources/
create-touch-event.js 14 testFailed("An exception was thrown: " + e.message);
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
Util.java 134 Throwable thrown = null; local
138 thrown = e;
143 if (thrown == null) thrown = e;
145 if (thrown == null) return;
146 if (thrown instanceof IOException) throw (IOException) thrown;
147 if (thrown instanceof RuntimeException) throw (RuntimeException) thrown;
148 if (thrown instanceof Error) throw (Error) thrown
    [all...]
  /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/java/com/android/internal/logging/
AndroidHandler.java 91 Throwable thrown = r.getThrown();
92 if (thrown != null) {
97 thrown.printStackTrace(pw);
  /external/webkit/LayoutTests/storage/indexeddb/resources/
shared.js 38 testFailed("No exception thrown! Should have been " + expected);
41 testPassed("Exception was thrown.");
  /dalvik/vm/mterp/x86/
OP_FILL_ARRAY_DATA.S 13 testl %eax,%eax # exception thrown?
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
callback-exception.js 1 description("Tests that when an exception is thrown in the success callback, the error callback is not invoked. Note that this test throws an exception which is not caught.");
23 // must be started before the exception is thrown.
  /external/webkit/LayoutTests/fast/events/touch/script-tests/
document-create-touch-list.js 32 testFailed("An exception was thrown: " + e.message);
39 testFailed("An exception was thrown: " + e.message);
  /dalvik/vm/mterp/armv5te/
OP_FILL_ARRAY_DATA.S 11 cmp r0, #0 @ 0 means an exception is thrown
  /dalvik/vm/mterp/mips/
OP_FILL_ARRAY_DATA.S 12 # 0 means an exception is thrown
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteCardinalityException.js 5 /** Base class for all exceptions thrown during AST rewrite construction.
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyConnection.java 324 IOException thrown = null; local
328 thrown = e;
350 if (thrown != null) thrown = e;
364 thrown = e;
369 if (thrown == null) thrown = e;
372 if (thrown != null) throw thrown;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
lexical-048.js 21 var exception = "No exception thrown";
lexical-049.js 20 var exception = "No exception thrown";

Completed in 750 milliseconds

1 2 3 4 5 6 7