Lines Matching defs:factory
16 #include "src/heap/factory.h"
44 Handle<JSObject> result = isolate->factory()->NewJSObjectFromMap(map);
69 return isolate->factory()->undefined_value();
111 Factory* factory = isolate->factory();
122 Handle<JSObject> result = factory->NewJSObject(isolate->object_function());
134 isolate, result, factory->segment_string(), segment, Just(kDontThrow));
140 isolate, result, factory->index_string(),
141 factory->NewNumberFromInt(start_index), Just(kDontThrow));
150 isolate, result, factory->input_string(), input_string, Just(kDontThrow));
162 ? factory->true_value()
163 : factory->false_value();
166 isolate, result, factory->isWordLike_string(), is_word_like,