Lines Matching refs:factory
120 Factory* factory = isolate->factory(); in ToObject() local
123 Handle<JSObject> result = factory->NewJSObjectFromMap( in ToObject()
140 factory->NewJSObjectFromMap(isolate->data_property_descriptor_map()); in ToObject()
151 Handle<JSObject> result = factory->NewJSObject(isolate->object_function()); in ToObject()
153 CreateDataProperty(isolate, result, factory->value_string(), value()); in ToObject()
156 CreateDataProperty(isolate, result, factory->writable_string(), in ToObject()
157 factory->ToBoolean(writable())); in ToObject()
160 CreateDataProperty(isolate, result, factory->get_string(), get()); in ToObject()
163 CreateDataProperty(isolate, result, factory->set_string(), set()); in ToObject()
166 CreateDataProperty(isolate, result, factory->enumerable_string(), in ToObject()
167 factory->ToBoolean(enumerable())); in ToObject()
170 CreateDataProperty(isolate, result, factory->configurable_string(), in ToObject()
171 factory->ToBoolean(configurable())); in ToObject()
186 isolate->Throw(*isolate->factory()->NewTypeError( in ToPropertyDescriptor()
201 if (!GetPropertyIfPresent(receiver, isolate->factory()->enumerable_string(), in ToPropertyDescriptor()
213 if (!GetPropertyIfPresent(receiver, isolate->factory()->configurable_string(), in ToPropertyDescriptor()
225 if (!GetPropertyIfPresent(receiver, isolate->factory()->value_string(), in ToPropertyDescriptor()
235 if (!GetPropertyIfPresent(receiver, isolate->factory()->writable_string(), in ToPropertyDescriptor()
245 if (!GetPropertyIfPresent(receiver, isolate->factory()->get_string(), in ToPropertyDescriptor()
253 isolate->Throw(*isolate->factory()->NewTypeError( in ToPropertyDescriptor()
263 if (!GetPropertyIfPresent(receiver, isolate->factory()->set_string(), in ToPropertyDescriptor()
271 isolate->Throw(*isolate->factory()->NewTypeError( in ToPropertyDescriptor()
284 isolate->Throw(*isolate->factory()->NewTypeError( in ToPropertyDescriptor()
310 desc->set_value(isolate->factory()->undefined_value()); in CompletePropertyDescriptor()
320 desc->set_get(isolate->factory()->undefined_value()); in CompletePropertyDescriptor()
325 desc->set_set(isolate->factory()->undefined_value()); in CompletePropertyDescriptor()