Lines Matching refs:ticks
459 if (c1.ticks < c2.ticks) return 1;
460 else if (c1.ticks > c2.ticks) return -1;
467 return c2.ticks - c1.ticks;
471 if (c1.type === c2.type) return c2.ticks - c1.ticks;
501 // Collect the children, and sort them by ticks.
507 if (child.ticks > 0) {
529 c.textContent = (node.ticks * 100 / this.tickCount).toFixed(2) + "%";
533 c.textContent = (node.ticks * 100 / tree.ticks).toFixed(2) + "%";
556 // Inclusive ticks cell.
558 c.textContent = node.ticks;
561 // Exclusive ticks cell.
702 let ownTicksTh = $(this.treeElement.id + "-own-ticks-header");
807 let firstTime = file.ticks[0].tm;
808 let lastTime = file.ticks[file.ticks.length - 1].tm;
852 if (file && file.ticks.length > 0) {
853 let firstTime = file.ticks[0].tm;
854 let lastTime = file.ticks[file.ticks.length - 1].tm;
924 let maxBuckets = Math.round(file.ticks.length / minTicksPerBucket);
937 let firstTime = file.ticks[0].tm;
938 let lastTime = file.ticks[file.ticks.length - 1].tm;
974 // No ticks fell into this bucket. Fill with "Unknown."
1003 // Draw the function ticks.
1450 for (let tick of file.ticks) {