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

1 2

  /external/guava/guava/src/com/google/common/io/
CharStreams.java 127 boolean threw = true;
131 threw = false;
133 Closeables.close(out, threw);
179 boolean threw = true;
183 threw = false;
186 Closeables.close(in, threw);
262 boolean threw = true;
266 threw = false;
269 Closeables.close(r, threw);
284 boolean threw = true
    [all...]
ByteStreams.java 94 boolean threw = true;
98 threw = false;
100 Closeables.close(out, threw);
144 boolean threw = true;
148 threw = false;
151 Closeables.close(in, threw);
168 boolean threw = true;
172 threw = false;
175 Closeables.close(out, threw);
248 boolean threw = true
    [all...]
Files.java 201 boolean threw = true;
205 threw = false;
207 Closeables.close(in, threw);
664 boolean threw = true;
667 threw = false;
670 Closeables.close(raf, threw);
678 boolean threw = true;
681 threw = false;
684 Closeables.close(channel, threw);
  /external/eigen/test/
sizeoverflow.cpp 13 bool threw = false; \
17 catch (std::bad_alloc&) { threw = true; } \
18 VERIFY(threw && "should have thrown bad_alloc: " #a); \
  /external/v8/test/mjsunit/
stack-traces.js 117 var threw = false;
131 threw = true;
133 assertTrue(threw, name + " didn't throw");
138 var threw = false;
144 threw = true;
146 assertTrue(threw, "CallerCensorship didn't throw");
151 var threw = false;
161 threw = true;
163 assertTrue(threw, "UnintendedCallerCensorship didn't throw");
173 var threw = false
    [all...]
unusual-constructor.js 28 var threw = false; variable
33 threw = true;
35 assertTrue(threw);
mjsunit.js 343 fail("threw an exception: ", e.message || e, name_opt);
  /external/v8/test/mjsunit/regress/
regress-992733.js 29 var threw = false; variable
33 threw = true;
35 assertTrue(threw);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
lexical-048.js 35 " (threw " + exception +")",
lexical-049.js 40 " (threw " + exception +")",
  /external/webkit/LayoutTests/storage/
execute-sql-args.js 59 log("PASS. executeSql(" + parameterList + ") threw an exception as expected.");
64 log("*FAIL*. executeSql(" + parameterList + ") threw an exception: " + exception);
  /external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/
optional-event-properties.js 4 ObjectThrowingException.prototype.valueOf = function() { throw new Error('valueOf threw exception'); }
38 testException("event.initDeviceMotionEvent('', false, false, {x: objectThrowingException, y: 1, z: 2}, {x: 3, y: 4, z: 5}, {alpha: 6, beta: 7, gamma: 8}, 9)", "Error: valueOf threw exception");
39 testException("event.initDeviceMotionEvent('', false, false, {x: 0, y: 1, z: 2}, {x: 3, y: objectThrowingException, z: 5}, {alpha: 6, beta: 7, gamma: 8}, 9)", "Error: valueOf threw exception");
40 testException("event.initDeviceMotionEvent('', false, false, {x: 0, y: 1, z: 2}, {x: 3, y: 4, z: 5}, {alpha: 6, beta: 7, gamma: objectThrowingException}, 9)", "Error: valueOf threw exception");
  /external/webkit/LayoutTests/fast/dom/DOMImplementation/script-tests/
createDocumentType-err.js 21 m += "; expected " + stringForExceptionCode(expect) + ", threw " + stringForExceptionCode(actual);
24 m += "; threw " + stringForExceptionCode(actual);;
createDocument-namespace-err.js 35 m += "; expected " + stringForExceptionCode(expect) + ", threw " + stringForExceptionCode(actual);
38 m += "; threw " + stringForExceptionCode(actual);;
  /external/v8/src/
handles.h 244 bool* threw);
245 Handle<JSArray> GetKeysFor(Handle<JSReceiver> object, bool* threw);
handles.cc 602 bool* threw) {
621 isolate->proxy_enumerate(), object, ARRAY_SIZE(args), args, threw);
622 if (*threw) return content;
693 Handle<JSArray> GetKeysFor(Handle<JSReceiver> object, bool* threw) {
697 GetKeysInFixedArrayFor(object, INCLUDE_PROTOS, threw);
    [all...]
runtime.cc 1906 bool threw = false; local
    [all...]
v8natives.js 876 var threw = false;
880 threw = true;
889 if (!DefineObjectProperty(obj, "length", desc, should_throw) || threw) {
    [all...]
api.cc 2914 bool threw = false; local
2935 bool threw = false; local
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
JSON-parse.js 558 var threw = false;
561 var threw = true;
563 if (!threw)
566 try { shouldBe('JSON.stringify(tests[i](nativeJSON))', "tests[i].expected") } catch(e) { debug("threw - " + e)}
568 try { shouldBe('tests[i](nativeJSON)', "tests[i].unstringifiedExpected") } catch(e) { debug("threw - " + e)}
570 try { shouldBe('JSON.stringify(tests[i](nativeJSON))', 'JSON.stringify(tests[i](JSON))') } catch(e) { debug("threw - " + e) };
standalone-pre.js 81 testFailed(_a + " should be " + _bv + ". Threw exception " + exception);
112 testFailed(_a + " should be undefined. Threw exception " + exception);
136 testPassed(_a + " threw exception " + exception + ".");
138 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Threw exception " + exception + ".");
js-test-pre.js 92 testFailed(_a + " threw exception " + e);
111 testFailed(_a + " should be " + _bv + ". Threw exception " + exception);
145 testFailed("Evaluating " + actual + ": Threw exception " + e);
179 testFailed(_a + " should be non-zero. Threw exception " + exception);
197 testFailed(_a + " should be non-null. Threw exception " + exception);
215 testFailed(_a + " should be undefined. Threw exception " + exception);
233 testFailed(_a + " should be defined. Threw exception " + exception);
254 testFailed(_a + " should be >= " + _b + ". Threw exception " + exception);
277 testPassed(_a + " threw exception " + exception + ".");
279 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Threw exception " + exception + ".")
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
argument-types.js 9 testFailed(expression + " should not throw exception. Threw exception " + e);
28 throw new Error('valueOf threw exception');
100 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {maximumAge:objectThrowingException})', true, 'Error: valueOf threw exception');
111 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {timeout:objectThrowingException})', true, 'Error: valueOf threw exception');
  /external/webkit/LayoutTests/http/tests/cookies/resources/
cookies-test-pre.js 89 testFailed(_a + " should be " + _bv + ". Threw exception " + exception);
120 testFailed(_a + " should be undefined. Threw exception " + exception);
143 testPassed(_a + " threw exception " + exception + ".");
145 testFailed(_a + " should throw " + (typeof _e == "undefined" ? "an exception" : _ev) + ". Threw exception " + exception + ".");
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java     [all...]

Completed in 517 milliseconds

1 2