Home
last modified time | relevance | path

Searched refs:IsSharedTypedArray (Results 1 – 18 of 18) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/shared_objects/
Djs_shared_typed_array.h32 …if (!(JSTaggedValue(object).IsSharedTypedArray() || JSTaggedValue(object).IsJSSharedTypedArray()))… in Cast()
37 …ASSERT(JSTaggedValue(object).IsSharedTypedArray() || JSTaggedValue(object).IsJSSharedTypedArray()); in Cast()
Djs_shared_array_iterator.cpp47 } else if (array->IsSharedTypedArray()) { in Next()
70 } else if (array->IsSharedTypedArray()) { in NextInternal()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_shared_typedarray.cpp358 if (!thisHandle->IsSharedTypedArray()) { in GetBuffer()
382 if (!thisHandle->IsSharedTypedArray()) { in GetByteLength()
411 if (!thisHandle->IsSharedTypedArray()) { in GetByteOffset()
434 if (!thisHandle->IsSharedTypedArray()) { in CopyWithin()
451 if (!thisHandle->IsSharedTypedArray()) { in Entries()
473 if (!thisHandle->IsSharedTypedArray()) { in Every()
541 if (!thisHandle->IsSharedTypedArray()) { in Fill()
560 if (!thisHandle->IsSharedTypedArray()) { in Filter()
645 if (!thisHandle->IsSharedTypedArray()) { in Find()
659 if (!thisHandle->IsSharedTypedArray()) { in FindIndex()
[all …]
Dbuiltins_sendable_arraybuffer.cpp65 if (arg->IsDataView() || arg->IsSharedTypedArray()) { in IsView()
Dbuiltins_shared_array.cpp132 if (!mapping && (items->IsTypedArray() || items->IsSharedTypedArray())) { in From()
565 if (thisObjVal->IsTypedArray() || thisObjVal->IsSharedTypedArray()) { in Fill()
624 if (thisObjVal->IsTypedArray() || thisObjVal->IsSharedTypedArray()) { in Fill()
1397 kPresent = (thisHandle->IsTypedArray() || thisHandle->IsSharedTypedArray() || in Reduce()
Dbuiltins_typedarray.cpp577 if (thisObjVal->IsTypedArray() || thisObjVal->IsSharedTypedArray()) { in Fill()
632 if (thisObjVal->IsTypedArray() || thisObjVal->IsSharedTypedArray()) { in Fill()
Dbuiltins_array.cpp679 bool exists = (thisObjVal->IsTypedArray() || thisObjVal->IsSharedTypedArray() || in CopyWithin()
1792 kPresent = (thisHandle->IsTypedArray() || thisHandle->IsSharedTypedArray() || in ReduceInner()
/arkcompiler/ets_runtime/ecmascript/
Djs_typed_array.h32 … JSTaggedValue(object).IsSharedTypedArray() || JSTaggedValue(object).IsJSSharedTypedArray())) { in Cast()
38 … JSTaggedValue(object).IsSharedTypedArray() || JSTaggedValue(object).IsJSSharedTypedArray()); in Cast()
Djs_typed_array.cpp386 ASSERT(typedarray->IsTypedArray() || typedarray->IsSharedTypedArray()); in IntegerIndexedElementGet()
525 ASSERT(typedArray->IsTypedArray() || typedArray->IsSharedTypedArray()); in FastCopyElementToArray()
567 ASSERT(typedarray->IsTypedArray() || typedarray->IsSharedTypedArray()); in FastElementGet()
607 ASSERT(typedarray->IsTypedArray() || typedarray->IsSharedTypedArray()); in IntegerIndexedElementSet()
682 ASSERT(typedarray.IsTypedArray() || typedarray.IsSharedTypedArray()); in FastGetPropertyByIndex()
717 ASSERT(typedarray.IsTypedArray() || typedarray.IsSharedTypedArray()); in FastSetPropertyByIndex()
819 ASSERT(typedArray->IsTypedArray() || typedArray->IsSharedTypedArray()); in FastTypedArrayFill()
Djs_tagged_value.cpp975 if (obj->IsTypedArray() || obj->IsSharedTypedArray()) { in GetProperty()
1004 if (obj->IsTypedArray() || obj->IsSharedTypedArray()) { in GetProperty()
1032 if (obj->IsTypedArray() || obj->IsSharedTypedArray()) { in GetProperty()
1058 } else if (obj->IsTypedArray() || obj->IsSharedTypedArray()) { in SetProperty()
1086 } else if (obj->IsTypedArray() || obj->IsSharedTypedArray()) { in SetProperty()
1118 } else if (obj->IsTypedArray() || obj->IsSharedTypedArray()) { in SetProperty()
1232 if (obj->IsTypedArray() || obj->IsSharedTypedArray()) { in GetOwnProperty()
1299 if (obj->IsTypedArray() || obj->IsSharedTypedArray()) { in GetOwnPropertyKeys()
1317 if (obj->IsTypedArray() || obj->IsSharedTypedArray()) { in GetAllPropertyKeys()
1335 if (obj->IsTypedArray() || obj->IsSharedTypedArray()) { in GetOwnEnumPropertyKeys()
[all …]
Djs_tagged_value-inl.h770 inline bool JSTaggedValue::IsSharedTypedArray() const in IsSharedTypedArray() function
772 return IsHeapObject() && GetTaggedObject()->GetClass()->IsSharedTypedArray(); in IsSharedTypedArray()
Djs_tagged_value.h530 bool IsSharedTypedArray() const;
Djs_hclass.h752 inline bool IsSharedTypedArray() const in IsSharedTypedArray() function
/arkcompiler/ets_runtime/ecmascript/base/
Darray_helper.cpp105 bool exists = thisObjVal->IsTypedArray() || thisObjVal->IsSharedTypedArray() || in ElementIsStrictEqualTo()
250 if (thisHandle->IsTypedArray() || thisHandle->IsSharedTypedArray()) { in GetLength()
Dtyped_array_helper.cpp119 if (firstArg->IsTypedArray() || firstArg->IsSharedTypedArray()) { in SharedTypedArrayConstructor()
575 JSTaggedValue buffer = GetTypedArrayBuffer(argv, srcObj, srcArray->IsSharedTypedArray()); in CreateSharedFromTypedArray()
604 if (arrayType == srcType && srcArray->IsSharedTypedArray()) { in CreateSharedFromTypedArray()
1035 if (!value->IsTypedArray() && !value->IsSharedTypedArray()) { in ValidateTypedArray()
1210 || BuiltinsBase::GetThis(argv)->IsSharedTypedArray() in someCommon()
/arkcompiler/ets_runtime/ecmascript/ic/
Dic_runtime.cpp186 if (receiver->IsTypedArray() || receiver->IsSharedTypedArray()) { in LoadValueMiss()
356 if (receiver->IsTypedArray() || receiver->IsSharedTypedArray()) { in StoreMiss()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi_expo.h608 bool IsSharedTypedArray(const EcmaVM *vm);
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp1027 bool JSValueRef::IsSharedTypedArray(const EcmaVM *vm) in IsSharedTypedArray() function in panda::JSValueRef
1030 return JSNApiHelper::ToJSTaggedValue(this).IsSharedTypedArray(); in IsSharedTypedArray()