Lines Matching refs:dataView
1128 JSHandle<JSDataView> dataView(JSNApiHelper::ToJSHandle(this)); in GetDataViewInfo() local
1131 *byteLength = dataView->GetByteLength(); in GetDataViewInfo()
1135 JSHandle<JSArrayBuffer> retArrayBuffer(thread, dataView->GetViewedArrayBuffer()); in GetDataViewInfo()
1148 *byteOffset = dataView->GetByteOffset(); in GetDataViewInfo()
1161 JSHandle<JSDataView> dataView = factory->NewJSDataView(buffer, byteOffset, byteLength); in New() local
1163 return JSNApiHelper::ToLocal<DataViewRef>(JSHandle<JSTaggedValue>(dataView)); in New()
1169 JSHandle<JSDataView> dataView(JSNApiHelper::ToJSHandle(this)); in ByteLength() local
1170 return dataView->GetByteLength(); in ByteLength()
1176 JSHandle<JSDataView> dataView(JSNApiHelper::ToJSHandle(this)); in ByteOffset() local
1177 return dataView->GetByteOffset(); in ByteOffset()
1184 JSHandle<JSDataView> dataView(JSNApiHelper::ToJSHandle(this)); in GetArrayBuffer() local
1185 LOG_IF_SPECIAL(dataView, FATAL); in GetArrayBuffer()
1186 JSHandle<JSTaggedValue> arrayBuffer(thread, dataView->GetViewedArrayBuffer()); in GetArrayBuffer()