Lines Matching refs:accumulate
9178 var previous = nil, accumulate = [];
9181 if (accumulate.length > 0) {
9182 yielder.$yield(previous, accumulate);
9191 accumulate = [];
9195 accumulate.push(value);
9198 accumulate = [value];
10406 var accumulate;
10412 if (accumulate == null) {
10413 accumulate = [];
10417 accumulate.push(element);
10418 yielder.$yield(accumulate);
10419 accumulate = null;
10421 accumulate.push(element);
10427 if (accumulate != null) {
10428 yielder.$yield(accumulate);