Lines Matching refs:ArrayRef
1471 Local<ArrayRef> ObjectRef::GetOwnPropertyNames(const EcmaVM *vm) in GetOwnPropertyNames()
1480 return JSNApiHelper::ToLocal<ArrayRef>(jsArray); in GetOwnPropertyNames()
1483 Local<ArrayRef> ObjectRef::GetAllPropertyNames(const EcmaVM *vm, uint32_t filter) in GetAllPropertyNames()
1494 return JSNApiHelper::ToLocal<ArrayRef>(jsArray); in GetAllPropertyNames()
1497 Local<ArrayRef> ObjectRef::GetOwnEnumerablePropertyNames(const EcmaVM *vm) in GetOwnEnumerablePropertyNames()
1506 return JSNApiHelper::ToLocal<ArrayRef>(jsArray); in GetOwnEnumerablePropertyNames()
1875 Local<ArrayRef> ArrayRef::New(const EcmaVM *vm, uint32_t length) in New()
1882 return JSNApiHelper::ToLocal<ArrayRef>(array); in New()
1885 uint32_t ArrayRef::Length([[maybe_unused]] const EcmaVM *vm) in Length()
1891 Local<JSValueRef> ArrayRef::GetValueAt(const EcmaVM *vm, Local<JSValueRef> obj, uint32_t index) in GetValueAt()
1900 bool ArrayRef::SetValueAt(const EcmaVM *vm, Local<JSValueRef> obj, uint32_t index, Local<JSValueRef… in SetValueAt()