Searched defs:has_pending_exception (Results 1 - 17 of 17) sorted by relevance

/external/v8/test/cctest/
H A Dtest-random.cc54 bool has_pending_exception; local
60 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
82 bool has_pending_exception; local
92 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
93 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
104 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
H A Dtest-compiler.cc140 bool has_pending_exception;
142 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
143 CHECK(!has_pending_exception);
161 bool has_pending_exception; local
163 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
164 CHECK(!has_pending_exception);
181 bool has_pending_exception; local
183 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
184 CHECK(!has_pending_exception);
202 bool has_pending_exception; local
256 bool has_pending_exception; local
271 bool has_pending_exception; local
296 bool has_pending_exception; local
312 &has_pending_exception); local
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-compiler.cc130 bool has_pending_exception;
132 Execution::Call(isolate, fun, global, 0, NULL, &has_pending_exception);
133 CHECK(!has_pending_exception);
151 bool has_pending_exception; local
153 Execution::Call(isolate, fun, global, 0, NULL, &has_pending_exception);
154 CHECK(!has_pending_exception);
171 bool has_pending_exception; local
173 Execution::Call(isolate, fun, global, 0, NULL, &has_pending_exception);
174 CHECK(!has_pending_exception);
192 bool has_pending_exception; local
217 CcTest::i_isolate(), fun, global, 0, NULL, &has_pending_exception); local
248 bool has_pending_exception; local
251 CcTest::i_isolate(), fun, global, 0, NULL, &has_pending_exception); local
264 bool has_pending_exception; local
292 bool has_pending_exception; local
[all...]
/external/chromium_org/v8/src/
H A Dexecution.cc75 bool* has_pending_exception) {
127 *has_pending_exception = value->IsException();
128 ASSERT(*has_pending_exception == isolate->has_pending_exception());
129 if (*has_pending_exception) {
218 ASSERT(isolate->has_pending_exception());
232 ASSERT(!isolate->has_pending_exception());
267 bool* has_pending_exception) {
290 *has_pending_exception = true;
325 bool* has_pending_exception) {
70 Invoke(bool is_construct, Handle<JSFunction> function, Handle<Object> receiver, int argc, Handle<Object> args[], bool* has_pending_exception) argument
265 TryGetFunctionDelegate(Isolate* isolate, Handle<Object> object, bool* has_pending_exception) argument
322 TryGetConstructorDelegate( Isolate* isolate, Handle<Object> object, bool* has_pending_exception) argument
[all...]
H A Disolate.h138 ASSERT((isolate)->has_pending_exception()); \
145 ASSERT(!(isolate)->has_pending_exception()); \
147 CHECK(!(isolate)->has_pending_exception()); \
554 ASSERT(has_pending_exception());
572 bool has_pending_exception() { function in class:v8::internal::Isolate
H A Dbootstrapper.cc1475 ASSERT(isolate->has_pending_exception() != result);
1533 bool has_pending_exception; local
1534 Execution::Call(isolate, fun, receiver, 0, NULL, &has_pending_exception);
1535 if (has_pending_exception) return false;
2326 ASSERT(isolate->has_pending_exception() != result);
2403 ASSERT(isolate()->has_pending_exception());
H A Druntime.cc2151 ASSERT(!isolate->has_pending_exception());
2741 bool has_pending_exception; local
2744 &has_pending_exception);
2745 if (has_pending_exception) {
2746 ASSERT(isolate->has_pending_exception());
4859 bool has_pending_exception = false;
4861 Execution::ToString(isolate, key, &has_pending_exception);
4862 if (has_pending_exception) return Handle<Name>();
5202 bool has_pending_exception = false;
5204 ? key : Execution::ToString(isolate, key, &has_pending_exception);
[all...]
H A Dapi.cc89 bool has_pending_exception = false
97 if (has_pending_exception) { \
1826 has_pending_exception = result.is_null();
1900 isolate, fun, receiver, 0, NULL, &has_pending_exception);
2191 bool* has_pending_exception) {
2200 isolate, fun, recv, argc, argv, has_pending_exception);
2207 bool* has_pending_exception) {
2213 has_pending_exception);
2226 &has_pending_exception);
2261 &has_pending_exception);
2187 CallV8HeapFunction(const char* name, i::Handle<i::Object> recv, int argc, i::Handle<i::Object> argv[], bool* has_pending_exception) argument
2205 CallV8HeapFunction(const char* name, i::Handle<i::Object> data, bool* has_pending_exception) argument
[all...]
H A Djsregexp.cc70 bool* has_pending_exception) {
74 has_pending_exception);
243 regexp->GetIsolate()->has_pending_exception());
582 isolate->has_pending_exception());
629 ASSERT(!isolate->has_pending_exception());
655 ASSERT(isolate->has_pending_exception());
677 ASSERT(isolate->has_pending_exception());
67 CreateRegExpLiteral(Handle<JSFunction> constructor, Handle<String> pattern, Handle<String> flags, bool* has_pending_exception) argument
H A Dobjects.cc483 if (isolate->has_pending_exception()) return Failure::Exception();
552 bool has_pending_exception; local
554 isolate, fun, self, 0, NULL, &has_pending_exception, true);
556 if (has_pending_exception) return Failure::Exception();
2998 bool has_pending_exception; local
3001 isolate, setter, object, ARRAY_SIZE(argv), argv, &has_pending_exception);
3003 if (has_pending_exception) return Handle<Object>();
3555 if (isolate->has_pending_exception()) return false;
3574 if (isolate->has_pending_exception()) return Handle<Object>();
3601 if (isolate->has_pending_exception()) retur
3609 bool has_pending_exception; local
[all...]
/external/v8/src/
H A Dexecution.cc74 bool* has_pending_exception) {
126 *has_pending_exception = value->IsException();
127 ASSERT(*has_pending_exception == Isolate::Current()->has_pending_exception());
128 if (*has_pending_exception) {
206 ASSERT(isolate->has_pending_exception());
217 ASSERT(!Isolate::Current()->has_pending_exception());
251 bool* has_pending_exception) {
275 *has_pending_exception = true;
309 bool* has_pending_exception) {
69 Invoke(bool is_construct, Handle<JSFunction> function, Handle<Object> receiver, int argc, Handle<Object> args[], bool* has_pending_exception) argument
250 TryGetFunctionDelegate(Handle<Object> object, bool* has_pending_exception) argument
307 TryGetConstructorDelegate( Handle<Object> object, bool* has_pending_exception) argument
[all...]
H A Druntime.cc1379 ASSERT(!isolate->has_pending_exception());
1944 bool has_pending_exception; local
1947 &has_pending_exception);
1948 if (has_pending_exception) {
1949 ASSERT(isolate->has_pending_exception());
4207 bool has_pending_exception = false;
4209 Execution::ToString(key, &has_pending_exception);
4210 if (has_pending_exception) return Failure::Exception();
4448 bool has_pending_exception = false;
4449 Handle<Object> name = Execution::ToString(key, &has_pending_exception);
[all...]
H A Dbootstrapper.cc1316 ASSERT(isolate->has_pending_exception() != result);
1370 bool has_pending_exception; local
1371 Execution::Call(fun, receiver, 0, NULL, &has_pending_exception);
1372 if (has_pending_exception) return false;
2071 ASSERT(isolate->has_pending_exception() != result);
2147 ASSERT(isolate()->has_pending_exception());
H A Disolate.h122 ASSERT((isolate)->has_pending_exception()); \
129 ASSERT(!(isolate)->has_pending_exception()); \
131 CHECK(!(isolate)->has_pending_exception()); \
536 ASSERT(has_pending_exception());
554 bool has_pending_exception() { function in class:v8::internal::Isolate
H A Djsregexp.cc69 bool* has_pending_exception) {
73 has_pending_exception);
179 regexp->GetIsolate()->has_pending_exception());
480 isolate->has_pending_exception());
519 ASSERT(!isolate->has_pending_exception());
547 ASSERT(isolate->has_pending_exception());
573 ASSERT(isolate->has_pending_exception());
66 CreateRegExpLiteral(Handle<JSFunction> constructor, Handle<String> pattern, Handle<String> flags, bool* has_pending_exception) argument
H A Dapi.cc83 bool has_pending_exception = false
91 if (has_pending_exception) { \
1521 has_pending_exception = result.is_null();
1589 i::Execution::Call(fun, receiver, 0, NULL, &has_pending_exception);
1817 bool* has_pending_exception) {
1825 i::Execution::Call(fun, recv, argc, argv, has_pending_exception);
1832 bool* has_pending_exception) {
1838 has_pending_exception);
1851 &has_pending_exception);
1891 &has_pending_exception);
1813 CallV8HeapFunction(const char* name, i::Handle<i::Object> recv, int argc, i::Handle<i::Object> argv[], bool* has_pending_exception) argument
1830 CallV8HeapFunction(const char* name, i::Handle<i::Object> data, bool* has_pending_exception) argument
[all...]
H A Dobjects.cc233 if (isolate->has_pending_exception()) return Failure::Exception();
289 bool has_pending_exception; local
291 Execution::Call(fun, self, 0, NULL, &has_pending_exception, true);
293 if (has_pending_exception) return Failure::Exception();
2041 bool has_pending_exception; local
2043 Execution::Call(fun, self, ARRAY_SIZE(argv), argv, &has_pending_exception);
2045 if (has_pending_exception) return Failure::Exception();
2628 if (isolate->has_pending_exception()) return Failure::Exception();
2647 if (isolate->has_pending_exception()) return Failure::Exception();
2668 if (isolate->has_pending_exception()) retur
2674 bool has_pending_exception; local
[all...]

Completed in 579 milliseconds