Lines Matching refs:result
28 Maybe<bool> result = Object::Equals(isolate, x, y);
29 if (result.IsNothing()) return ReadOnlyRoots(isolate).exception();
30 return isolate->heap()->ToBoolean(result.FromJust());
38 Maybe<bool> result = Object::Equals(isolate, x, y);
39 if (result.IsNothing()) return ReadOnlyRoots(isolate).exception();
40 return isolate->heap()->ToBoolean(!result.FromJust());
72 Maybe<bool> result = Object::LessThan(isolate, x, y);
73 if (result.IsNothing()) return ReadOnlyRoots(isolate).exception();
74 return isolate->heap()->ToBoolean(result.FromJust());
82 Maybe<bool> result = Object::GreaterThan(isolate, x, y);
83 if (result.IsNothing()) return ReadOnlyRoots(isolate).exception();
84 return isolate->heap()->ToBoolean(result.FromJust());
92 Maybe<bool> result = Object::LessThanOrEqual(isolate, x, y);
93 if (result.IsNothing()) return ReadOnlyRoots(isolate).exception();
94 return isolate->heap()->ToBoolean(result.FromJust());
102 Maybe<bool> result = Object::GreaterThanOrEqual(isolate, x, y);
103 if (result.IsNothing()) return ReadOnlyRoots(isolate).exception();
104 return isolate->heap()->ToBoolean(result.FromJust());