Lines Matching defs:result
50 MaybeHandle<Object> result = Object::GetProperty(&it);
51 if (result.is_null()) {
52 return result;
65 return result;
372 Maybe<bool> result = JSReceiver::GetOwnPropertyDescriptor(&it, &desc);
373 if (!result.IsJust()) return ReadOnlyRoots(isolate).exception();
374 return isolate->heap()->ToBoolean(result.FromJust());
708 Maybe<bool> result =
712 MAYBE_RETURN(result, ReadOnlyRoots(isolate).exception());
713 return isolate->heap()->ToBoolean(result.FromJust());
732 Maybe<bool> result = JSReceiver::PreventExtensions(
734 MAYBE_RETURN(result, ReadOnlyRoots(isolate).exception());
735 return *isolate->factory()->ToBoolean(result.FromJust());
768 Maybe<bool> result =
770 MAYBE_RETURN(result, ReadOnlyRoots(isolate).exception());
771 return *isolate->factory()->ToBoolean(result.FromJust());
788 // the global proxy object can return a valid result even though the
936 Maybe<bool> result = JSObject::DefineOwnPropertyIgnoreAttributes(
939 DCHECK(result.IsJust());
940 USE(result);
953 Maybe<bool> result =
955 MAYBE_RETURN(result, ReadOnlyRoots(isolate).exception());
956 return isolate->heap()->ToBoolean(result.FromJust());
1450 Maybe<bool> result = JSReceiver::HasInPrototypeChain(
1452 MAYBE_RETURN(result, ReadOnlyRoots(isolate).exception());
1453 return isolate->heap()->ToBoolean(result.FromJust());