Lines Matching defs:dataView
1128 JSHandle<JSDataView> dataView(JSNApiHelper::ToJSHandle(this));
1131 *byteLength = dataView->GetByteLength();
1135 JSHandle<JSArrayBuffer> retArrayBuffer(thread, dataView->GetViewedArrayBuffer());
1148 *byteOffset = dataView->GetByteOffset();
1176 JSHandle<JSDataView> dataView = factory->NewJSDataView(buffer, byteOffset, byteLength);
1178 return JSNApiHelper::ToLocal<DataViewRef>(JSHandle<JSTaggedValue>(dataView));
1184 JSHandle<JSDataView> dataView(JSNApiHelper::ToJSHandle(this));
1185 return dataView->GetByteLength();
1191 JSHandle<JSDataView> dataView(JSNApiHelper::ToJSHandle(this));
1192 return dataView->GetByteOffset();
1199 JSHandle<JSDataView> dataView(JSNApiHelper::ToJSHandle(this));
1200 LOG_IF_SPECIAL(dataView, FATAL);
1201 JSHandle<JSTaggedValue> arrayBuffer(thread, dataView->GetViewedArrayBuffer());