Lines Matching refs:result
207 Maybe<bool> result = Object::IsArray(object);
208 MAYBE_RETURN(result, ReadOnlyRoots(isolate).exception());
209 return isolate->heap()->ToBoolean(result.FromJust());
302 Maybe<bool> result =
304 MAYBE_RETURN(result, ReadOnlyRoots(isolate).exception());
305 return *isolate->factory()->ToBoolean(result.FromJust());
312 // Let elementK be the result of ? Get(O, ! ToString(k)).
399 Maybe<int64_t> result = elements->IndexOfValue(isolate, obj, search_element,
402 MAYBE_RETURN(result, ReadOnlyRoots(isolate).exception());
403 return *isolate->factory()->NewNumberFromInt64(result.FromJust());
409 // Let elementK be the result of ? Get(O, ! ToString(k)).