Lines Matching refs:progress
56 this.progress = 0;
65 updateAsync(text, progress) { argument
66 progress = parseInt(progress); // Truncate float number to integer.
71 this.progress = progress;
72 this.modal.find('.progress-bar').css('width', progress + '%')
73 .attr('aria-valuenow', progress).text(progress + '%');
568 .then(() => drawViewsAsync(views, 100, (view, progress) => view.drawAsync(progress)))
750 .then(() => drawViewsAsync(views, 100, (view, progress) => view.drawAsync(progress)))
777 _drawMoreFlameGraphs(moreCount, progress) { argument
778 let initProgress = progress / (1 + moreCount);
835 .then(() => this.drawDetails(newFlamegraphs, progress - initProgress));
840 .then(() => drawViewsAsync(flamegraphs, totalProgress, (view, progress) => {
843 .then(addProgress(progress));
996 return drawViewsAsync(this.views, totalProgress, (view, progress) => {
999 .then(addProgress(progress));
1726 function updateProgress(text, progress) { argument
1727 return () => gProgressBar.updateAsync(text, progress);
1730 function addProgress(progress) { argument
1731 return () => gProgressBar.updateAsync(null, gProgressBar.progress + progress);