Lines Matching refs:accumulate
9187 var previous = nil, accumulate = [];
9190 if (accumulate.length > 0) {
9191 yielder.$yield(previous, accumulate);
9200 accumulate = [];
9204 accumulate.push(value);
9207 accumulate = [value];
10415 var accumulate;
10421 if (accumulate == null) {
10422 accumulate = [];
10426 accumulate.push(element);
10427 yielder.$yield(accumulate);
10428 accumulate = null;
10430 accumulate.push(element);
10436 if (accumulate != null) {
10437 yielder.$yield(accumulate);