Searched refs:threw (Results 1 - 14 of 14) sorted by relevance

/external/v8/test/mjsunit/regress/
H A Dregress-992733.js29 var threw = false; variable
33 threw = true;
35 assertTrue(threw);
/external/v8/test/mjsunit/
H A Dunusual-constructor.js28 var threw = false; variable
33 threw = true;
35 assertTrue(threw);
H A Dstack-traces.js117 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
[all...]
/external/guava/guava/src/com/google/common/io/
H A DCharStreams.java127 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
[all...]
H A DByteStreams.java94 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
[all...]
H A DFiles.java201 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/
H A Dsizeoverflow.cpp13 bool threw = false; \
17 catch (std::bad_alloc&) { threw = true; } \
18 VERIFY(threw && "should have thrown bad_alloc: " #a); \
/external/webkit/LayoutTests/fast/js/resources/
H A DJSON-parse.js558 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) };
/external/v8/src/
H A Dhandles.h244 bool* threw);
245 Handle<JSArray> GetKeysFor(Handle<JSReceiver> object, bool* threw);
H A Dhandles.cc602 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) { argument
697 GetKeysInFixedArrayFor(object, INCLUDE_PROTOS, threw);
600 GetKeysInFixedArrayFor(Handle<JSReceiver> object, KeyCollectionType type, bool* threw) argument
H A Dv8natives.js876 var threw = false;
880 threw = true;
889 if (!DefineObjectProperty(obj, "length", desc, should_throw) || threw) {
H A Druntime.cc1906 bool threw = false; local
1908 Execution::TryGetFunctionDelegate(Handle<JSReceiver>(callable), &threw);
1909 if (threw) return Failure::Exception();
4868 bool threw = false;
4869 Handle<JSArray> result = GetKeysFor(object, &threw);
4870 if (threw) return Failure::Exception();
4889 bool threw = false;
4891 GetKeysInFixedArrayFor(object, INCLUDE_PROTOS, &threw);
4892 if (threw) return Failure::Exception();
5089 bool threw
[all...]
H A Dapi.cc2914 bool threw = false; local
2916 i::GetKeysInFixedArrayFor(self, i::INCLUDE_PROTOS, &threw);
2917 if (threw) return Local<v8::Array>();
2935 bool threw = false; local
2937 i::GetKeysInFixedArrayFor(self, i::LOCAL_ONLY, &threw);
2938 if (threw) return Local<v8::Array>();
H A Dobjects.cc2872 bool threw; local
2873 return Execution::Call(trap, handler, argc, argv, &threw);

Completed in 344 milliseconds