• Home
  • Raw
  • Download

Lines Matching refs:has_pending_exception

233   if (isolate->has_pending_exception()) return Failure::Exception();  in GetPropertyWithHandler()
289 bool has_pending_exception; in GetPropertyWithDefinedGetter() local
291 Execution::Call(fun, self, 0, NULL, &has_pending_exception, true); in GetPropertyWithDefinedGetter()
293 if (has_pending_exception) return Failure::Exception(); in GetPropertyWithDefinedGetter()
2041 bool has_pending_exception; in SetPropertyWithDefinedSetter() local
2043 Execution::Call(fun, self, ARRAY_SIZE(argv), argv, &has_pending_exception); in SetPropertyWithDefinedSetter()
2045 if (has_pending_exception) return Failure::Exception(); in SetPropertyWithDefinedSetter()
2628 if (isolate->has_pending_exception()) return Failure::Exception(); in HasPropertyWithHandler()
2647 if (isolate->has_pending_exception()) return Failure::Exception(); in SetPropertyWithHandler()
2668 if (isolate->has_pending_exception()) return Failure::Exception(); in SetPropertyWithHandlerIfDefiningSetter()
2674 bool has_pending_exception; in SetPropertyWithHandlerIfDefiningSetter() local
2678 ARRAY_SIZE(argv), argv, &has_pending_exception); in SetPropertyWithHandlerIfDefiningSetter()
2679 if (has_pending_exception) return Failure::Exception(); in SetPropertyWithHandlerIfDefiningSetter()
2684 ASSERT(!isolate->has_pending_exception()); in SetPropertyWithHandlerIfDefiningSetter()
2698 ASSERT(!isolate->has_pending_exception()); in SetPropertyWithHandlerIfDefiningSetter()
2707 ASSERT(!isolate->has_pending_exception()); in SetPropertyWithHandlerIfDefiningSetter()
2737 if (isolate->has_pending_exception()) return Failure::Exception(); in DeletePropertyWithHandler()
2775 if (isolate->has_pending_exception()) return NONE; in GetPropertyAttributeWithHandler()
2779 bool has_pending_exception; in GetPropertyAttributeWithHandler() local
2783 ARRAY_SIZE(argv), argv, &has_pending_exception); in GetPropertyAttributeWithHandler()
2784 if (has_pending_exception) return NONE; in GetPropertyAttributeWithHandler()
2789 if (isolate->has_pending_exception()) return NONE; in GetPropertyAttributeWithHandler()
2792 if (isolate->has_pending_exception()) return NONE; in GetPropertyAttributeWithHandler()
2795 if (isolate->has_pending_exception()) return NONE; in GetPropertyAttributeWithHandler()
2859 if (isolate->has_pending_exception()) return trap; in CallTrap()
7399 ASSERT(!info->isolate()->has_pending_exception()); in CompileLazyHelper()
7401 ASSERT(result != Isolate::Current()->has_pending_exception()); in CompileLazyHelper()