Lines Matching defs:result
54 Maybe<PropertyAttributes> result = Just(ABSENT);
65 result = JSProxy::GetPropertyAttributes(&it);
66 if (result.IsNothing()) return MaybeHandle<Object>();
67 if (result.FromJust() == ABSENT) {
79 } else if (result.FromJust() & DONT_ENUM) {
86 result = JSObject::GetPropertyAttributesWithInterceptor(&it);
87 if (result.IsNothing()) return MaybeHandle<Object>();
88 if (result.FromJust() != ABSENT) return it.GetName();
93 result = JSObject::GetPropertyAttributesWithFailedAccessCheck(&it);
94 if (result.IsNothing()) return MaybeHandle<Object>();
95 if (result.FromJust() != ABSENT) return it.GetName();
103 result = JSModuleNamespace::GetPropertyAttributes(&it);
104 if (result.IsNothing()) return MaybeHandle<Object>();
105 DCHECK_EQ(0, result.FromJust() & DONT_ENUM);
132 Handle<Object> result;
134 isolate, result, HasEnumerableProperty(isolate, receiver, key));
135 return isolate->heap()->ToBoolean(!result->IsUndefined(isolate));