Home | History | Annotate | Download | only in src

Lines Matching refs:isolate_

85     : isolate_(isolate), builder_(isolate), gap_(nullptr), indent_(0) {
94 if (!gap->IsUndefined(isolate_) && !InitializeGap(gap)) {
119 HandleScope handle_scope(isolate_);
123 isolate_, length_obj,
124 Object::GetLengthFromArrayLike(isolate_, replacer), false);
131 isolate_, element, Object::GetElement(isolate_, replacer, i), false);
134 isolate_, key, Object::ToString(isolate_, element), false);
136 Handle<Object> value(Handle<JSValue>::cast(element)->value(), isolate_);
139 isolate_, key, Object::ToString(isolate_, element), false);
158 HandleScope scope(isolate_);
160 Handle<Object> value(Handle<JSValue>::cast(gap)->value(), isolate_);
162 ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate_, gap,
163 Object::ToString(isolate_, gap), false);
165 ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate_, gap, Object::ToNumber(gap),
198 HandleScope scope(isolate_);
202 ASSIGN_RETURN_ON_EXCEPTION(isolate_, fun, Object::GetProperty(&it), Object);
208 ASSIGN_RETURN_ON_EXCEPTION(isolate_, object,
209 Execution::Call(isolate_, fun, object, 1, argv),
216 HandleScope scope(isolate_);
221 isolate_, value,
222 Execution::Call(isolate_, replacer_function_, holder, 2, argv), Object);
231 factory()->NewJSObject(isolate_->object_function());
238 isolate_);
243 StackLimitCheck check(isolate_);
245 isolate_->StackOverflow();
258 isolate_->Throw(*error);
277 StackLimitCheck interrupt_check(isolate_);
280 isolate_->stack_guard()->HandleInterrupts()->IsException(isolate_)) {
285 isolate_, object, ApplyToJsonFunction(object, key), EXCEPTION);
289 isolate_, object, ApplyReplacerFunction(object, key, initial_value),
352 if (class_name == isolate_->heap()->String_string()) {
355 isolate_, value, Object::ToString(isolate_, object), EXCEPTION);
357 } else if (class_name == isolate_->heap()->Number_string()) {
359 ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate_, value, Object::ToNumber(object),
363 } else if (class_name == isolate_->heap()->Boolean_string()) {
366 builder_.AppendCString(value->IsTrue(isolate_) ? "true" : "false");
396 HandleScope handle_scope(isolate_);
409 isolate_);
410 StackLimitCheck interrupt_check(isolate_);
413 isolate_->stack_guard()->HandleInterrupts()->IsException(
414 isolate_)) {
427 FixedDoubleArray::cast(object->elements()), isolate_);
428 StackLimitCheck interrupt_check(isolate_);
431 isolate_->stack_guard()->HandleInterrupts()->IsException(
432 isolate_)) {
442 Handle<Object> old_length(object->length(), isolate_);
451 isolate_,
453 isolate_),
487 isolate_->Throw(*isolate_->factory()->NewInvalidStringLengthError());
494 isolate_, element, JSReceiver::GetElement(isolate_, object, i),
496 Result result = SerializeElement(isolate_, element, i);
511 HandleScope handle_scope(isolate_);
529 Handle<Name> name(map->instance_descriptors()->GetKey(i), isolate_);
543 isolate_, property, Object::GetPropertyOrElement(js_obj, key),
566 isolate_, contents,
576 Handle<String> key(String::cast(contents->get(i)), isolate_);
578 ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate_, property,
593 HandleScope scope(isolate_);
601 isolate_, length_object,
602 Object::GetLengthFromArrayLike(isolate_, object), EXCEPTION);
608 isolate_->Throw(*isolate_->factory()->NewInvalidStringLengthError());
660 FlatStringReader reader(isolate_, string);