Lines Matching refs:newView
2047 const newView = () => new Uint8Array(16);
2051 byobRequest.respondWithNewView(newView());
2056 return reader.read(newView()).then(() => {
2057 assert_throws_js(TypeError, () => byobRequest.respondWithNewView(newView()),
2292 const newView = transferredView.subarray(0, 1);
2293 newView[0] = 42;
2295 controller.byobRequest.respondWithNewView(newView);
2332 const newView = transferredView.subarray(0, 0);
2335 controller.byobRequest.respondWithNewView(newView);
2886 const newView = new Uint8Array(c.byobRequest.view.buffer, 0, 3);
2887 newView.set([20, 21, 22]);
2888 c.byobRequest.respondWithNewView(newView);