Home | History | Annotate | Download | only in tools

Lines Matching refs:padLeft

471 function padLeft(s, len) {
475 if (!(padLength in padLeft)) {
476 padLeft[padLength] = new Array(padLength + 1).join(' ');
478 s = padLeft[padLength] + s;
504 print(' ' + padLeft(ticksCount, 5) + ' ' + padLeft(pct.toFixed(1), 5) + '%');
526 print(' ' + padLeft(rec.selfTime, 5) + ' ' +
527 padLeft(rec.selfPercent.toFixed(1), 5) + '% ' +
528 padLeft(nonLibPct.toFixed(1), 5) + '% ' +
537 var indentStr = padLeft('', indent);
541 print(' ' + padLeft(rec.totalTime, 5) + ' ' +
542 padLeft(rec.parentTotalPercent.toFixed(1), 5) + '% ' +