Lines Matching refs:ProgressTracker
57 """Thrown if a ProgressTracker determines that it can't be instantiated.
1008 class ProgressTracker(ProgressTrackerFrontend, ProgressTrackerBackend):
1025 Most subclasses of ProgressTracker need not override the methods of
1722 class QuietProgressTracker(ProgressTracker):
1731 ProgressTracker.__init__(self)
1751 """This ProgressTracker is a subclass of QuietProgressTracker because
1757 their own ProgressTracker class as any new output methods added to the
1758 ProgressTracker class will also be handled here, insulating them from
1759 additions to the ProgressTracker class."""
1762 class FunctionProgressTracker(ProgressTracker):
1763 """This ProgressTracker is principally used for debugging.
1765 "tracing" ProgressTracker that shows calls to front end methods
1775 ProgressTracker.__init__(self)
1835 class DotProgressTracker(ProgressTracker):
1842 ProgressTracker.__init__(self)
1865 class CommandLineProgressTracker(ProgressTracker):
1876 ProgressTracker.__init__(self)
2690 class FancyUNIXProgressTracker(ProgressTracker):
2706 ProgressTracker.__init__(self)
3191 for purp in [ProgressTracker.PURPOSE_PKG_UPDATE_CHK,
3192 ProgressTracker.PURPOSE_NORMAL]: