Home
last modified time | relevance | path

Searched refs:IsJSInt8Array (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h905 inline bool JSTaggedValue::IsJSInt8Array() const in IsJSInt8Array() function
907 return IsHeapObject() && GetTaggedObject()->GetClass()->IsJSInt8Array(); in IsJSInt8Array()
Djs_tagged_value.h545 bool IsJSInt8Array() const;
Djs_hclass.h617 inline bool IsJSInt8Array() const in IsJSInt8Array() function
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_serializer_test.cpp617 EXPECT_TRUE(res->IsJSInt8Array()) << "[NotJSInt8Array] Deserialize TypedArray fail"; in TypedArrayTest1()
656 EXPECT_TRUE(res->IsJSInt8Array()) << "[NotJSInt8Array] Deserialize TypedArray fail"; in TypedArrayTest2()
896 … EXPECT_TRUE(res->IsJSInt8Array()) << "[NotJSArrayBuffer] Deserialize TransferJSArrayBuffer4 fail"; in TransferJSArrayBufferTest4()
Djs_typed_array_test.cpp199 EXPECT_TRUE(handleTagValInt8Array->IsJSInt8Array() && handleTagValInt8Array->IsTypedArray()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3214 return JSNApiHelper::ToJSTaggedValue(this).IsJSInt8Array(); in IsInt8Array()