Lines Matching refs:each

236     this.funktions = this.funktions.filter(each => true);
282 (bytes, each) => bytes + (each.isToplevel() ? each.getBytes() : 0), 0);
346 return list.reduce((bytes, each) => bytes + each.getOwnBytes(), 0)
369 info("toplevel fn", all.filter(each => each.isToplevel()));
370 info('preparsed', all.filter(each => each.preparseDuration > 0));
372 info('fully parsed', all.filter(each => each.parseDuration > 0));
375 info("executed", all.filter(each => each.executionTimestamp > 0));
376 info('forEval', all.filter(each => each.isEval));
377 info("lazy compiled", all.filter(each => each.lazyCompileTimestamp > 0));
378 info("eager compiled", all.filter(each => each.compileTimestamp > 0));
381 new ExecutionCost('parse', all, each => each.parseDuration);
386 new ExecutionCost('preparse', all, each => each.preparseDuration);
391 new ExecutionCost('resolution', all, each => each.resolutionDuration);
424 metrics.forEach(each => {
425 metricProperties.push(each + 'Timestamp');
426 if (useDuration) metricProperties.push(each + 'Duration');
551 funktions.forEach(each => each.accumulateNestingLevel(this.accumulator));
552 this.max = this.accumulator.reduce((max, each) => Math.max(max, each), 0);
553 this.totalBytes = this.accumulator.reduce((sum, each) => sum + each, 0);
566 let accString = this.accumulator.reduce((str, each) => {
567 let index = Math.round(each / this.max * (ticks.length - 1));
573 .reduce((sum, each) => sum + each, 0);
594 this.executedCost = funktions.reduce((sum, each) => {
595 return sum + (each.hasBeenExecuted() ? time_fn(each) : 0)
597 this.nonExecutedCost = funktions.reduce((sum, each) => {
598 return sum + (each.hasBeenExecuted() ? 0 : time_fn(each))
655 (bytes, each) => bytes - each.getBytes(), this.getBytes());
851 .filter(each => !each.isNative);
862 this.scripts.map(each => each.firstEventTimestamp));
864 this.scripts.map(each => each.lastParseEventTimestamp));
866 this.scripts.map(each => each.lastEventTimestamp));