Lines Matching defs:result
117 Maybe<bool> result = JSObject::CreateDataProperty(&it, value);
118 CHECK(result.IsJust() && result.FromJust());
130 Handle<JSObject> result = factory->NewJSObjectFromMap(
132 result->InObjectPropertyAtPut(JSAccessorPropertyDescriptor::kGetIndex,
134 result->InObjectPropertyAtPut(JSAccessorPropertyDescriptor::kSetIndex,
136 result->InObjectPropertyAtPut(
139 result->InObjectPropertyAtPut(
142 return result;
146 Handle<JSObject> result =
148 result->InObjectPropertyAtPut(JSDataPropertyDescriptor::kValueIndex,
150 result->InObjectPropertyAtPut(JSDataPropertyDescriptor::kWritableIndex,
152 result->InObjectPropertyAtPut(JSDataPropertyDescriptor::kEnumerableIndex,
154 result->InObjectPropertyAtPut(JSDataPropertyDescriptor::kConfigurableIndex,
156 return result;
158 Handle<JSObject> result = factory->NewJSObject(isolate->object_function());
160 CreateDataProperty(result, factory->value_string(), value());
163 CreateDataProperty(result, factory->writable_string(),
167 CreateDataProperty(result, factory->get_string(), get());
170 CreateDataProperty(result, factory->set_string(), set());
173 CreateDataProperty(result, factory->enumerable_string(),
177 CreateDataProperty(result, factory->configurable_string(),
180 return result;