Home
last modified time | relevance | path

Searched refs:IsDataView (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_dataview.h32 CAST_CHECK(JSDataView, IsDataView);
Djs_tagged_value-inl.h1270 inline bool JSTaggedValue::IsDataView() const in IsDataView() function
1272 return IsHeapObject() && GetTaggedObject()->GetClass()->IsDataView(); in IsDataView()
Djs_tagged_value.h616 bool IsDataView() const;
Djs_hclass.h1048 inline bool IsDataView() const in IsDataView() function
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_dataview.cpp121 if (!thisHandle->IsDataView()) { in GetBuffer()
145 if (!thisHandle->IsDataView()) { in GetByteLength()
175 if (!thisHandle->IsDataView()) { in GetOffset()
360 if (!view->IsDataView()) { in GetViewValue()
415 if (!view->IsDataView()) { in SetViewValue()
Dbuiltins_arraybuffer.cpp68 if (arg->IsDataView() || arg->IsTypedArray()) { in IsView()
/arkcompiler/toolchain/tooling/agent/
Druntime_impl.cpp244 } else if (value->IsDataView()) { in GetProperties()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi.h425 bool IsDataView();
/arkcompiler/toolchain/tooling/base/
Dpt_types.cpp157 if (tagged->IsDataView()) { in FromTagged()
349 if (tagged->IsDataView()) { in DescriptionForObject()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3122 bool JSValueRef::IsDataView() in IsDataView() function in panda::JSValueRef
3124 return JSNApiHelper::ToJSTaggedValue(this).IsDataView(); in IsDataView()
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp529 ASSERT_TRUE(dataView->IsDataView()); in HWTEST_F_L0()