Lines Matching refs:has_exception
369 bool has_exception = false;
371 object = Execution::Call(isolate_, fun, object, 1, argv, &has_exception);
373 if (has_exception) return Handle<Object>::null();
472 bool has_exception = false;
474 Execution::Call(isolate_, builtin, object, 2, argv, &has_exception);
475 if (has_exception) return EXCEPTION;
496 bool has_exception = false;
500 Execution::ToString(isolate_, object, &has_exception);
501 if (has_exception) return EXCEPTION;
505 Execution::ToNumber(isolate_, object, &has_exception);
506 if (has_exception) return EXCEPTION;
665 bool has_exception = false;
667 GetKeysInFixedArrayFor(object, LOCAL_ONLY, &has_exception);
668 if (has_exception) return EXCEPTION;