Home | History | Annotate | Download | only in src

Lines Matching refs:has_pending_exception

233   if (isolate->has_pending_exception()) return Failure::Exception();
289 bool has_pending_exception;
291 Execution::Call(fun, self, 0, NULL, &has_pending_exception, true);
293 if (has_pending_exception) return Failure::Exception();
2041 bool has_pending_exception;
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()) return Failure::Exception();
2674 bool has_pending_exception;
2678 ARRAY_SIZE(argv), argv, &has_pending_exception);
2679 if (has_pending_exception) return Failure::Exception();
2684 ASSERT(!isolate->has_pending_exception());
2698 ASSERT(!isolate->has_pending_exception());
2707 ASSERT(!isolate->has_pending_exception());
2737 if (isolate->has_pending_exception()) return Failure::Exception();
2775 has_pending_exception()) return NONE;
2779 bool has_pending_exception;
2783 ARRAY_SIZE(argv), argv, &has_pending_exception);
2784 if (has_pending_exception) return NONE;
2789 if (isolate->has_pending_exception()) return NONE;
2792 if (isolate->has_pending_exception()) return NONE;
2795 if (isolate->has_pending_exception()) return NONE;
2859 if (isolate->has_pending_exception()) return trap;
7399 ASSERT(!info->isolate()->has_pending_exception());
7401 ASSERT(result != Isolate::Current()->has_pending_exception());