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

/external/chromium_org/v8/test/cctest/
H A Dtest-random.cc51 bool has_pending_exception; local
57 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
80 bool has_pending_exception; local
91 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
92 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
103 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
H A Dtest-compiler.cc127 bool has_pending_exception;
129 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
130 CHECK(!has_pending_exception);
148 bool has_pending_exception; local
150 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
151 CHECK(!has_pending_exception);
168 bool has_pending_exception; local
170 Execution::Call(fun, global, 0, NULL, &has_pending_exception);
171 CHECK(!has_pending_exception);
189 bool has_pending_exception; local
243 bool has_pending_exception; local
258 bool has_pending_exception; local
284 bool has_pending_exception; local
302 &has_pending_exception); local
[all...]
/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/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) {
217 ASSERT(isolate->has_pending_exception());
231 ASSERT(!isolate->has_pending_exception());
265 bool* has_pending_exception) {
289 *has_pending_exception = true;
323 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
264 TryGetFunctionDelegate(Handle<Object> object, bool* has_pending_exception) argument
321 TryGetConstructorDelegate( Handle<Object> object, bool* has_pending_exception) argument
[all...]
H A Dbootstrapper.cc1498 ASSERT(isolate->has_pending_exception() != result);
1556 bool has_pending_exception; local
1557 Execution::Call(fun, receiver, 0, NULL, &has_pending_exception);
1558 if (has_pending_exception) return false;
2383 ASSERT(isolate->has_pending_exception() != result);
2460 ASSERT(isolate()->has_pending_exception());
H A Druntime.cc2055 ASSERT(!isolate->has_pending_exception());
2644 bool has_pending_exception; local
2647 &has_pending_exception);
2648 if (has_pending_exception) {
2649 ASSERT(isolate->has_pending_exception());
4754 bool has_pending_exception = false;
4756 Execution::ToString(key, &has_pending_exception);
4757 if (has_pending_exception) return Failure::Exception();
4796 bool has_pending_exception = false;
4798 Execution::ToString(key, &has_pending_exception);
[all...]
H A Disolate.h140 ASSERT((isolate)->has_pending_exception()); \
147 ASSERT(!(isolate)->has_pending_exception()); \
149 CHECK(!(isolate)->has_pending_exception()); \
573 ASSERT(has_pending_exception());
591 bool has_pending_exception() { function in class:v8::internal::Isolate
H A Dapi.cc88 bool has_pending_exception = false
96 if (has_pending_exception) { \
1969 has_pending_exception = result.is_null();
2039 i::Execution::Call(fun, receiver, 0, NULL, &has_pending_exception);
2330 bool* has_pending_exception) {
2339 i::Execution::Call(fun, recv, argc, argv, has_pending_exception);
2346 bool* has_pending_exception) {
2352 has_pending_exception);
2365 &has_pending_exception);
2405 &has_pending_exception);
2326 CallV8HeapFunction(const char* name, i::Handle<i::Object> recv, int argc, i::Handle<i::Object> argv[], bool* has_pending_exception) argument
2344 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.cc418 if (isolate->has_pending_exception()) return Failure::Exception();
489 bool has_pending_exception; local
491 Execution::Call(fun, self, 0, NULL, &has_pending_exception, true);
493 if (has_pending_exception) return Failure::Exception();
2933 bool has_pending_exception; local
2935 Execution::Call(fun, self, ARRAY_SIZE(argv), argv, &has_pending_exception);
2937 if (has_pending_exception) return Failure::Exception();
3425 if (isolate->has_pending_exception()) return false;
3448 if (isolate->has_pending_exception()) return Failure::Exception();
3478 if (isolate->has_pending_exception()) retur
3486 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 401 milliseconds