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

1 2 3 4 5 6

  /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/okhttp/src/main/java/com/squareup/okhttp/internal/
Util.java 138 Throwable thrown = null; local
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 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 92 Throwable thrown = r.getThrown();
93 if (thrown != null) {
98 thrown.printStackTrace(pw);
  /dalvik/vm/mterp/x86/
OP_FILL_ARRAY_DATA.S 13 testl %eax,%eax # exception thrown?
  /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 320 IOException thrown = null; local
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/
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: "
1128 protected Throwable thrown; field in class:HttpsURLConnectionTest.Work
    [all...]
  /external/chromium_org/v8/test/mjsunit/
keyed-call-generic.js 102 var thrown = false;
106 thrown = true;
108 assertEquals(exceptions[k], thrown);
  /external/v8/test/mjsunit/
keyed-call-generic.js 102 var thrown = false;
106 thrown = true;
108 assertEquals(exceptions[k], thrown);
  /external/chromium/testing/gtest/test/
gtest_catch_exceptions_test.py 77 self.assert_('SEH exception with code 0x2a thrown '
80 self.assert_('SEH exception with code 0x2a thrown '
83 self.assert_('SEH exception with code 0x2a thrown in SetUpTestCase()'
85 self.assert_('SEH exception with code 0x2a thrown in TearDownTestCase()'
87 self.assert_('SEH exception with code 0x2a thrown in SetUp()'
89 self.assert_('SEH exception with code 0x2a thrown in TearDown()'
91 self.assert_('SEH exception with code 0x2a thrown in the test body'
106 * Exception thrown affect the remainder of the test work flow in the
112 '"Standard C++ exception" thrown '
122 '"Standard C++ exception" thrown '
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest_catch_exceptions_test.py 77 self.assert_('SEH exception with code 0x2a thrown '
80 self.assert_('SEH exception with code 0x2a thrown '
83 self.assert_('SEH exception with code 0x2a thrown in SetUpTestCase()'
85 self.assert_('SEH exception with code 0x2a thrown in TearDownTestCase()'
87 self.assert_('SEH exception with code 0x2a thrown in SetUp()'
89 self.assert_('SEH exception with code 0x2a thrown in TearDown()'
91 self.assert_('SEH exception with code 0x2a thrown in the test body'
106 * Exception thrown affect the remainder of the test work flow in the
112 '"Standard C++ exception" thrown '
125 '"Standard C++ exception" thrown '
    [all...]
  /external/gtest/test/
gtest_catch_exceptions_test.py 77 self.assert_('SEH exception with code 0x2a thrown '
80 self.assert_('SEH exception with code 0x2a thrown '
83 self.assert_('SEH exception with code 0x2a thrown in SetUpTestCase()'
85 self.assert_('SEH exception with code 0x2a thrown in TearDownTestCase()'
87 self.assert_('SEH exception with code 0x2a thrown in SetUp()'
89 self.assert_('SEH exception with code 0x2a thrown in TearDown()'
91 self.assert_('SEH exception with code 0x2a thrown in the test body'
106 * Exception thrown affect the remainder of the test work flow in the
112 '"Standard C++ exception" thrown '
122 '"Standard C++ exception" thrown '
    [all...]

Completed in 2599 milliseconds

1 2 3 4 5 6