• Home
  • Raw
  • Download

Lines Matching refs:has_pending_exception

1203   ASSERT(!isolate->has_pending_exception());  in RUNTIME_FUNCTION()
1811 bool has_pending_exception; in RUNTIME_FUNCTION() local
1814 &has_pending_exception); in RUNTIME_FUNCTION()
1815 if (has_pending_exception) { in RUNTIME_FUNCTION()
1816 ASSERT(isolate->has_pending_exception()); in RUNTIME_FUNCTION()
3701 bool has_pending_exception = false; in GetObjectProperty() local
3703 Execution::ToString(key, &has_pending_exception); in GetObjectProperty()
3704 if (has_pending_exception) return Failure::Exception(); in GetObjectProperty()
3978 bool has_pending_exception = false; in SetObjectProperty() local
3979 Handle<Object> converted = Execution::ToString(key, &has_pending_exception); in SetObjectProperty()
3980 if (has_pending_exception) return Failure::Exception(); in SetObjectProperty()
4028 bool has_pending_exception = false; in ForceSetObjectProperty() local
4029 Handle<Object> converted = Execution::ToString(key, &has_pending_exception); in ForceSetObjectProperty()
4030 if (has_pending_exception) return Failure::Exception(); in ForceSetObjectProperty()
4067 bool has_pending_exception = false; in ForceDeleteObjectProperty() local
4068 Handle<Object> converted = Execution::ToString(key, &has_pending_exception); in ForceDeleteObjectProperty()
4069 if (has_pending_exception) return Failure::Exception(); in ForceDeleteObjectProperty()
7821 ASSERT(isolate->has_pending_exception()); in RUNTIME_FUNCTION()
8146 ASSERT(isolate->has_pending_exception()); in RUNTIME_FUNCTION()
10642 bool has_pending_exception; in RUNTIME_FUNCTION() local
10646 &has_pending_exception); in RUNTIME_FUNCTION()
10647 if (has_pending_exception) return Failure::Exception(); in RUNTIME_FUNCTION()
10659 argc, argv, &has_pending_exception); in RUNTIME_FUNCTION()
10660 if (has_pending_exception) return Failure::Exception(); in RUNTIME_FUNCTION()
10733 bool has_pending_exception; in RUNTIME_FUNCTION() local
10737 &has_pending_exception); in RUNTIME_FUNCTION()
10738 if (has_pending_exception) return Failure::Exception(); in RUNTIME_FUNCTION()
11089 if (isolate->has_pending_exception()) { in RUNTIME_FUNCTION()