Home
last modified time | relevance | path

Searched refs:IsByteArray (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Dbyte_array.h29 CAST_CHECK(ByteArray, IsByteArray);
Djs_tagged_value-inl.h499 inline bool JSTaggedValue::IsByteArray() const in IsByteArray() function
501 return IsHeapObject() && GetTaggedObject()->GetClass()->IsByteArray(); in IsByteArray()
Djs_tagged_value.h522 bool IsByteArray() const;
Djs_hclass.h565 inline bool IsByteArray() const in IsByteArray() function
/arkcompiler/ets_runtime/ecmascript/compiler/
Dtyped_array_stub_builder.cpp32 Branch(IsByteArray(buffer), &isByteArray, &notByteArray); in IsDetachedBuffer()
63 Branch(IsByteArray(arrBuf), &isByteArray, &notByteArray); in GetDataPointFromBuffer()
Dstub_builder.h317 GateRef IsByteArray(GateRef obj);
Dstub_builder-inl.h1165 inline GateRef StubBuilder::IsByteArray(GateRef obj) in IsByteArray() function
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_arraybuffer.cpp254 if (arrayBuffer.IsByteArray()) { in IsDetachedBuffer()
725 if (arrBuf.IsByteArray()) { in GetDataPointFromBuffer()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_typed_array_test.cpp1479 ASSERT_TRUE(typedArray->GetViewedArrayBufferOrByteArray().IsByteArray()); in HWTEST_F_L0()
Djs_serializer_test.cpp675 EXPECT_TRUE(byteArray->IsByteArray()); in TypedArrayTest2()