Home
last modified time | relevance | path

Searched refs:typedarray (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_typed_array.h45 static bool GetOwnProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray,
48 static bool HasProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray,
51 static bool DefineOwnProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray,
54 …tic inline OperationResult GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, in GetProperty() argument
57 return GetProperty(thread, typedarray, key, typedarray); in GetProperty()
59 …tic inline OperationResult GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, in GetProperty() argument
62 return FastElementGet(thread, typedarray, index); in GetProperty()
64 static OperationResult GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray,
67 static inline bool SetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray,
71 return SetProperty(thread, typedarray, key, value, typedarray, mayThrow);
[all …]
Djs_typed_array.cpp34 bool JSTypedArray::GetOwnProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, in GetOwnProperty() argument
54 JSTypedArray::IntegerIndexedElementGet(thread, typedarray, numericIndex).GetValue(); in GetOwnProperty()
67 return JSObject::OrdinaryGetOwnProperty(thread, JSHandle<JSObject>(typedarray), key, desc); in GetOwnProperty()
71 bool JSTypedArray::HasProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, in HasProperty() argument
88 JSHandle<JSTypedArray> typedarrayObj(typedarray); in HasProperty()
132 bool JSTypedArray::DefineOwnProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, in DefineOwnProperty() argument
142 JSHandle<JSTypedArray> typedarrayObj(typedarray); in DefineOwnProperty()
195 … return (JSTypedArray::IntegerIndexedElementSet(thread, typedarray, numericIndex, value)); in DefineOwnProperty()
205 …rationResult JSTypedArray::GetProperty(JSThread *thread, const JSHandle<JSTaggedValue> &typedarray, in GetProperty() argument
211 if ((key->IsString() || key->IsNumber()) && JSTaggedValue::SameValue(typedarray, receiver)) { in GetProperty()
[all …]
/arkcompiler/ets_runtime/test/aottest/typedarray/
DBUILD.gn16 host_aot_test_action("typedarray") {
/arkcompiler/ets_frontend/test262/
Des2015_tests.txt2753 built-ins/ArrayBuffer/isView/arg-is-typedarray.js
2754 built-ins/ArrayBuffer/isView/arg-is-typedarray-buffer.js
2755 built-ins/ArrayBuffer/isView/arg-is-typedarray-constructor.js
2756 built-ins/ArrayBuffer/isView/arg-is-typedarray-subclass-instance.js
2838 built-ins/Atomics/notify/non-int32-typedarray-throws.js
2858 built-ins/Atomics/notify/not-a-typedarray-throws.js
2862 built-ins/Atomics/notify/bigint/non-bigint64-typedarray-throws.js
2887 built-ins/Atomics/wait/non-int32-typedarray-throws.js
2917 built-ins/Atomics/wait/not-a-typedarray-throws.js
2932 built-ins/Atomics/wait/bigint/non-bigint64-typedarray-throws.js
[all …]
DCI_tests.txt1368 built-ins/ArrayBuffer/isView/arg-is-typedarray-buffer.js
1369 built-ins/ArrayBuffer/isView/arg-is-typedarray.js
2041 built-ins/TypedArrayConstructors/ctors/typedarray-arg/custom-proto-access-throws.js
2042 built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-access-throws.js
2043 built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-not-object-throws.js
2044 built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-species-not-ctor-throw…
2045 built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-buffer-ctor-species-prototype-thro…
2046 built-ins/TypedArrayConstructors/ctors/typedarray-arg/other-ctor-returns-new-typedarray.js
2047 built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-access-throws.js
2048 built-ins/TypedArrayConstructors/ctors/typedarray-arg/same-ctor-buffer-ctor-species-not-ctor.js
[all …]
/arkcompiler/ets_frontend/es2panda/test/
Dtest262skiplist-long.txt24 built-ins/TypedArray/prototype/map/return-new-typedarray-conversion-operation.js
25 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type-conversions.js
Dtest262skiplist.txt50 built-ins/Atomics/wait/bigint/non-bigint64-typedarray-throws.js
71 built-ins/Atomics/waitAsync/bigint/not-a-typedarray-throws.js
747 built-ins/TypedArray/prototype/set/BigInt/src-typedarray-big.js
749 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-offset-tointeger.js
750 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-diff-buffer-other-type-sab.js
751 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-diff-buffer-other-type.js
752 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-diff-buffer-same-type-sab.js
753 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-diff-buffer-same-type.js
754 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-same-buffer-same-type-sab.js
755 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-same-buffer-same-type.js
[all …]
Dtest262skiplist-compiler-arm64.txt378 built-ins/TypedArray/prototype/set/typedarray-arg-offset-tointeger.js
379 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type.js
/arkcompiler/ets_runtime/test/aottest/
DBUILD.gn215 "typedarray",