Home
last modified time | relevance | path

Searched refs:ArrayRef (Results 1 – 7 of 7) sorted by relevance

/ark/js_runtime/ecmascript/tooling/test/
Ddebugger_returns_test.cpp124 Local<ArrayRef> getObject = getPossibleBreakpointsReturns->ToObject(ecmaVm); in HWTEST_F_L0()
157 Local<ArrayRef> restartObject = restartFrameReturns->ToObject(ecmaVm); in HWTEST_F_L0()
205 Local<ArrayRef> setObject = setScriptSourceReturns->ToObject(ecmaVm); in HWTEST_F_L0()
228 Local<ArrayRef> getObject = getPropertiesReturns->ToObject(ecmaVm); in HWTEST_F_L0()
335 Local<ArrayRef> getObject = getBestEffortCoverageReturns->ToObject(ecmaVm); in HWTEST_F_L0()
362 Local<ArrayRef> getObject = takePreciseCoverageReturns->ToObject(ecmaVm); in HWTEST_F_L0()
383 Local<ArrayRef> getObject = takeTypeProfileturns->ToObject(ecmaVm); in HWTEST_F_L0()
/ark/js_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp68 return scope.Escape(ArrayRef::New(vm, length)); in FunctionCallback()
103 Local<ArrayRef> array(result); in HWTEST_F_L0()
126 Local<ArrayRef> property = ArrayRef::New(vm_, 3); // 3 : length in HWTEST_F_L0()
136 ASSERT_EQ(Local<ArrayRef>(propertyGet)->Length(vm_), 3); // 3 : test case of input in HWTEST_F_L0()
172 Local<ArrayRef> origin = ArrayRef::New(vm_, 1); in HWTEST_F_L0()
/ark/js_runtime/ecmascript/napi/include/
Djsnapi.h35 class ArrayRef; variable
543 Local<ArrayRef> GetOwnPropertyNames(const EcmaVM *vm);
544 Local<ArrayRef> GetOwnEnumerablePropertyNames(const EcmaVM *vm);
588 class PUBLIC_API ArrayRef : public ObjectRef {
590 static Local<ArrayRef> New(const EcmaVM *vm, int32_t length = 0);
/ark/js_runtime/ecmascript/napi/
Djsnapi.cpp836 Local<ArrayRef> ObjectRef::GetOwnPropertyNames(const EcmaVM *vm) in GetOwnPropertyNames()
843 return JSNApiHelper::ToLocal<ArrayRef>(jsArray); in GetOwnPropertyNames()
846 Local<ArrayRef> ObjectRef::GetOwnEnumerablePropertyNames(const EcmaVM *vm) in GetOwnEnumerablePropertyNames()
853 return JSNApiHelper::ToLocal<ArrayRef>(jsArray); in GetOwnEnumerablePropertyNames()
1117 Local<ArrayRef> ArrayRef::New(const EcmaVM *vm, int32_t length) in New()
1123 return JSNApiHelper::ToLocal<ArrayRef>(array); in New()
1126 int32_t ArrayRef::Length([[maybe_unused]] const EcmaVM *vm) in Length()
1132 Local<JSValueRef> ArrayRef::GetValueAt(const EcmaVM *vm, Local<JSValueRef> obj, uint32_t index) in GetValueAt()
1140 bool ArrayRef::SetValueAt(const EcmaVM *vm, Local<JSValueRef> obj, uint32_t index, Local<JSValueRef… in SetValueAt()
/ark/js_runtime/ecmascript/tooling/agent/
Druntime_impl.cpp187 Local<ArrayRef> keys = Local<ObjectRef>(value)->GetOwnPropertyNames(vm_); in GetProperties()
/ark/js_runtime/ecmascript/tooling/base/
Dpt_types.cpp248 return DescriptionForArray(ecmaVm, Local<ArrayRef>(tagged)); in DescriptionForObject()
295 std::string ObjectRemoteObject::DescriptionForArray(const EcmaVM *ecmaVm, Local<ArrayRef> tagged) in DescriptionForArray()
Dpt_types.h371 static std::string DescriptionForArray(const EcmaVM *ecmaVm, Local<ArrayRef> tagged);