Lines Matching refs:details
360 Handle<FixedArray> details = isolate->factory()->NewFixedArray(2); in RUNTIME_FUNCTION() local
364 details->set(0, *element_or_char); in RUNTIME_FUNCTION()
365 details->set(1, PropertyDetails::Empty().AsSmi()); in RUNTIME_FUNCTION()
366 return *isolate->factory()->NewJSArrayWithElements(details); in RUNTIME_FUNCTION()
382 Handle<FixedArray> details = in RUNTIME_FUNCTION() local
384 details->set(0, *value); in RUNTIME_FUNCTION()
389 details->set(1, d.AsSmi()); in RUNTIME_FUNCTION()
390 details->set( in RUNTIME_FUNCTION()
394 details->set(3, isolate->heap()->ToBoolean(has_caught)); in RUNTIME_FUNCTION()
399 details->set(4, *getter); in RUNTIME_FUNCTION()
400 details->set(5, *setter); in RUNTIME_FUNCTION()
403 return *isolate->factory()->NewJSArrayWithElements(details); in RUNTIME_FUNCTION()
425 CONVERT_PROPERTY_DETAILS_CHECKED(details, 0); in RUNTIME_FUNCTION()
426 return Smi::FromInt(static_cast<int>(details.type())); in RUNTIME_FUNCTION()
435 CONVERT_PROPERTY_DETAILS_CHECKED(details, 0); in RUNTIME_FUNCTION()
436 return Smi::FromInt(static_cast<int>(details.attributes())); in RUNTIME_FUNCTION()
547 Handle<FixedArray> details = in RUNTIME_FUNCTION() local
551 details->set(kFrameDetailsFrameIdIndex, *frame_id); in RUNTIME_FUNCTION()
558 details->set(kFrameDetailsFunctionIndex, *func_name); in RUNTIME_FUNCTION()
563 details->set(kFrameDetailsScriptIndex, *script_wrapper); in RUNTIME_FUNCTION()
566 details->set(kFrameDetailsArgumentCountIndex, Smi::kZero); in RUNTIME_FUNCTION()
569 details->set(kFrameDetailsLocalCountIndex, Smi::kZero); in RUNTIME_FUNCTION()
584 details->set(kFrameDetailsSourcePositionIndex, in RUNTIME_FUNCTION()
589 details->set(kFrameDetailsConstructCallIndex, heap->ToBoolean(false)); in RUNTIME_FUNCTION()
592 details->set(kFrameDetailsAtReturnIndex, heap->ToBoolean(false)); in RUNTIME_FUNCTION()
602 details->set(kFrameDetailsFlagsIndex, Smi::FromInt(flags)); in RUNTIME_FUNCTION()
604 return *isolate->factory()->NewJSArrayWithElements(details); in RUNTIME_FUNCTION()
704 Handle<FixedArray> details = isolate->factory()->NewFixedArray(details_size); in RUNTIME_FUNCTION() local
707 details->set(kFrameDetailsFrameIdIndex, *frame_id); in RUNTIME_FUNCTION()
710 details->set(kFrameDetailsFunctionIndex, *(frame_inspector.GetFunction())); in RUNTIME_FUNCTION()
715 details->set(kFrameDetailsScriptIndex, *script_wrapper); in RUNTIME_FUNCTION()
718 details->set(kFrameDetailsArgumentCountIndex, Smi::FromInt(argument_count)); in RUNTIME_FUNCTION()
721 details->set(kFrameDetailsLocalCountIndex, Smi::FromInt(local_count)); in RUNTIME_FUNCTION()
725 details->set(kFrameDetailsSourcePositionIndex, Smi::FromInt(position)); in RUNTIME_FUNCTION()
727 details->set(kFrameDetailsSourcePositionIndex, heap->undefined_value()); in RUNTIME_FUNCTION()
731 details->set(kFrameDetailsConstructCallIndex, heap->ToBoolean(constructor)); in RUNTIME_FUNCTION()
734 details->set(kFrameDetailsAtReturnIndex, heap->ToBoolean(at_return)); in RUNTIME_FUNCTION()
748 details->set(kFrameDetailsFlagsIndex, Smi::FromInt(flags)); in RUNTIME_FUNCTION()
757 details->set(details_index++, scope_info->ParameterName(i)); in RUNTIME_FUNCTION()
759 details->set(details_index++, heap->undefined_value()); in RUNTIME_FUNCTION()
765 details->set(details_index++, *(frame_inspector.GetParameter(i))); in RUNTIME_FUNCTION()
767 details->set(details_index++, heap->undefined_value()); in RUNTIME_FUNCTION()
772 for (const auto& local : locals) details->set(details_index++, *local); in RUNTIME_FUNCTION()
776 details->set(details_index++, *return_value); in RUNTIME_FUNCTION()
783 details->set(kFrameDetailsReceiverIndex, *receiver); in RUNTIME_FUNCTION()
786 return *isolate->factory()->NewJSArrayWithElements(details); in RUNTIME_FUNCTION()
885 Handle<JSObject> details; in RUNTIME_FUNCTION() local
886 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, details, in RUNTIME_FUNCTION()
888 result.Add(details); in RUNTIME_FUNCTION()