Lines Matching refs:next
792 const { done, value } = await iterator.next();
1610 next() {
1613 `'next' called on an object that does not implement interface ${name} Iterator.`
1934 if (method === void 0 || typeof method.next !== "function") {
1941 const { done, value } = method.next();
5360 const { value, done } = await iterator.next();
6801 /* istanbul ignore next: should never error */
6889 this.next = null;
6922 this.head = this.head.next = new FixedCircularBuffer();
6928 const next = tail.shift();
6929 if (tail.isEmpty() && tail.next !== null) {
6930 this.tail = tail.next;
6932 return next;
7659 const { value: oldestKey } = this._sessionCache.keys().next();
10184 /* istanbul ignore next: gc is undeterministic */
11102 fetchParams.controller.next = () => iterator.next();
11147 const { done, value } = await fetchParams.controller.next();
12154 const next = this.#buffers[0];
12155 const { length } = next;
12160 buffer.set(next.subarray(0, n - offset), offset);
12161 this.#buffers[0] = next.subarray(n - offset);
12165 offset += next.length;