Home
last modified time | relevance | path

Searched full:progress (Results 1 – 25 of 2871) sorted by relevance

12345678910>>...115

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dprogress.py2 BitBake progress handling code
41 progress of some operation.
60 """Internal function to fire the progress event"""
69 def update(self, progress, rate=None): argument
71 if progress > 100:
72 progress = 100
73 if progress != self._progress or self._lastevent + 1 < ts:
74 self._fire_progress(progress, rate)
76 self._progress = progress
82 the lines if they contain progress information. Additionally, it
[all …]
H A Dbuild.py26 import bb.progress
119 Task made some progress that could be reported to the user, usually in
120 the form of a progress bar or similar.
125 The progress value is normally 0-100, but can also be negative
126 indicating that progress has been made but we aren't able to determine
131 def __init__(self, progress, rate=None): argument
132 self.progress = progress
371 def create_progress_handler(func, progress, logfile, d): argument
372 if progress == 'percent':
374 return bb.progress.BasicProgressHandler(d, outfile=logfile)
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/templates/
H A Dmrb_section.html79 <%else state == 'In Progress'%>
80 <%include tmpl='#in-progress-build-template'/%>
105 <!-- progress bar and parse completion percentage -->
106 <div data-role="build-status" class="col-md-4 col-md-offset-1 progress-info">
107 <!-- progress bar -->
108 <div class="progress">
111 class="progress-bar">
116 <div class="col-md-4 progress-info">
130 <!-- progress bar and parse completion percentage -->
131 <div data-role="build-status" class="col-md-4 col-md-offset-1 progress-info">
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioningquick/
H A Dqquickgeocoordinateanimation.cpp72 …iant q_coordinateInterpolator(const QGeoCoordinate &from, const QGeoCoordinate &to, qreal progress) in q_coordinateInterpolator() argument
75 if (progress < 0.5) { in q_coordinateInterpolator()
82 QGeoCoordinate result = QWebMercator::coordinateInterpolation(from, to, progress); in q_coordinateInterpolator()
87 …oordinateShortestInterpolator(const QGeoCoordinate &from, const QGeoCoordinate &to, qreal progress) in q_coordinateShortestInterpolator() argument
108 x = fromX + (toX - fromX) * progress; in q_coordinateShortestInterpolator()
114 x = fromX + (toX - fromX) * progress; in q_coordinateShortestInterpolator()
117 double y = fromY + (toY - fromY) * progress; in q_coordinateShortestInterpolator()
120 result.setAltitude(from.altitude() + (to.altitude() - from.altitude()) * progress); in q_coordinateShortestInterpolator()
124 … q_coordinateWestInterpolator(const QGeoCoordinate &from, const QGeoCoordinate &to, qreal progress) in q_coordinateWestInterpolator() argument
142 double x = fromX + (toX - fromX) * progress; in q_coordinateWestInterpolator()
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/
H A Dcolor.py11 import bb.progress
14 from bb.progress import filter_color, filter_color_n
24 self._reports.append((event.progress, event.rate))
51 class CustomProgressHandler(bb.progress.LineFilterProgressHandler):
52 PROGRESS_REGEX = re.compile(r"Progress: (?P<progress>\d+)%")
57 self.update(int(match.group("progress")))
65 handler.write("Progress: 10%\n") # 10%
78 handler = bb.progress.BasicProgressHandler(self.d, outfile=buffer)
89 handler = bb.progress.OutOfProgressHandler(self.d, r'(\d+) of (\d+)', outfile=buffer)
/OK3568_Linux_fs/kernel/arch/powerpc/platforms/85xx/
H A Dmpc85xx_rdb.c67 if (ppc_md.progress) in mpc85xx_rdb_setup_arch()
68 ppc_md.progress("mpc85xx_rdb_setup_arch()", 0); in mpc85xx_rdb_setup_arch()
195 .progress = udbg_progress, in define_machine()
209 .progress = udbg_progress, in define_machine()
223 .progress = udbg_progress, in define_machine()
237 .progress = udbg_progress, in define_machine()
251 .progress = udbg_progress, in define_machine()
265 .progress = udbg_progress, in define_machine()
279 .progress = udbg_progress, in define_machine()
293 .progress = udbg_progress, in define_machine()
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/progressbar/
H A Dwidgets.py3 # progressbar - Text progress bar library for Python.
126 1) ETA based on the total progress and time elapsed so far
127 2) ETA based on the progress as per the last 10 update reports
129 The weight depends on the current progress so that to begin with the
130 total progress is used and at the end only the most recent progress is
191 """An animated marker for the progress bar which defaults to appear as if
266 """Returns progress as a count of the total (e.g.: "5 of 47")."""
278 """A progress bar which stretches to fill the line."""
284 """Creates a customizable progress bar.
289 fill - character to use for the empty part of the progress bar
[all …]
H A D__init__.py4 # progressbar - Text progress bar library for Python.
23 """Text progress bar library for Python.
25 A text progress bar is typically used to display the progress of a long
28 The ProgressBar class manages the current progress, and the format of the line
30 differently depending on the state of the progress bar. There are three types
H A Dprogressbar.py3 # progressbar - Text progress bar library for Python.
60 >>> progress = ProgressBar()
61 >>> for i in progress(some_iterable):
65 Since the progress bar is incredibly customizable you can specify
72 parameter is set to an integer then the progress bar will use that,
77 the current progress bar. As a result, you have access to the
82 - currval: current progress (0 <= currval <= maxval)
88 - percentage(): progress in percent [0..100]
103 """Initializes a progress bar with sane defaults."""
105 # Don't share a reference with any other progress bars
[all …]
/OK3568_Linux_fs/kernel/tools/perf/ui/gtk/
H A Dprogress.c5 #include "../progress.h"
8 static GtkWidget *progress; variable
20 progress = gtk_progress_bar_new(); in gtk_ui_progress__update()
23 gtk_box_pack_start(GTK_BOX(vbox), progress, TRUE, TRUE, 3); in gtk_ui_progress__update()
34 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(progress), fraction); in gtk_ui_progress__update()
36 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(progress), buf); in gtk_ui_progress__update()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqwebmercator.cpp103 …ator::coordinateInterpolation(const QGeoCoordinate &from, const QGeoCoordinate &to, qreal progress) in coordinateInterpolation() argument
119 x = (1.0 - progress) * sx + progress * ex; in coordinateInterpolation()
125 x = (1.0 - progress) * s.x() + progress * e.x(); in coordinateInterpolation()
128 double y = (1.0 - progress) * s.y() + progress * e.y(); in coordinateInterpolation()
131 result.setAltitude((1.0 - progress) * from.altitude() + progress * to.altitude()); in coordinateInterpolation()
/OK3568_Linux_fs/external/recovery/
H A Dui.c69 // Progress bar scope of current operation
73 // Set to 1 when both graphics pages are the same (except for the progress bar)
111 // Draw the progress bar (if any) on the screen. Does not flip pages.
124 // Erase behind the progress bar (in case this was a progress-only update) in draw_progress_locked()
129 float progress = gProgressScopeStart + gProgress * gProgressScopeSize; in draw_progress_locked() local
130 int pos = (int) (progress * width); in draw_progress_locked()
201 // Updates only the progress bar, if possible, otherwise redraws the screen.
209 draw_progress_locked(); // Draw only the progress bar in update_progress_locked()
214 // Keeps the progress bar updated, even when the process is otherwise busy.
221 // update the progress bar animation, if active in progress_thread()
[all …]
H A Dcommon.h53 // Set the icon (normally the only thing visible besides the progress bar).
62 // Show a progress bar and define the scope of the next operation:
63 // portion - fraction of the progress bar the next operation will use
64 // seconds - expected time interval (progress bar moves at this minimum rate)
68 // Default allocation of progress bar segments to operations
77 // Hide and reset the progress bar.
/OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/csf/
H A Dmali_kbase_csf_timeout.h28 * kbase_csf_timeout_init - Initialize the progress timeout.
33 * The progress timeout is the number of GPU clock cycles allowed to elapse
35 * making no forward progress on an endpoint (e.g. a shader core). This function
46 * kbase_csf_timeout_term - Terminate the progress timeout.
56 * kbase_csf_timeout_get - get the current global progress timeout.
61 * forward progress before the driver terminates a GPU command queue
/OK3568_Linux_fs/kernel/arch/powerpc/mm/
H A Dinit_32.c114 if (ppc_md.progress) in MMU_init()
115 ppc_md.progress("MMU:enter", 0x111); in MMU_init()
153 if (ppc_md.progress) in MMU_init()
154 ppc_md.progress("MMU:hw init", 0x300); in MMU_init()
158 if (ppc_md.progress) in MMU_init()
159 ppc_md.progress("MMU:mapin", 0x301); in MMU_init()
165 if (ppc_md.progress) in MMU_init()
166 ppc_md.progress("MMU:exit", 0x211); in MMU_init()
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/sysvinit/sysvinit/
H A Drc25 progress=$((($step * $progress_size / $num_steps) + $first_step))
27 progress=$progress_size
29 …#echo "PROGRESS is $progress $runlevel $first_step + ($step of $num_steps) $step_change $progress_…
31 psplash-write "PROGRESS $progress" || true
87 # Find out where in the progress bar the initramfs got to.
93 # Split the remaining portion of the progress bar into thirds
/OK3568_Linux_fs/u-boot/tools/patman/
H A Dtout.py20 This class handles output of progress and other useful information
29 verbose: Verbosity level: 0=silent, 1=progress, 3=full, 4=debug
35 """Clean up and remove any progress message."""
51 """Clear any active progress message on the terminal."""
56 def Progress(msg, warning=False, trailer='...'): function
57 """Display progress information.
156 _progress = '' # Our last progress message
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/browser/
H A Dtest_most_recent_builds_states.py67 'recipe parse progress should be at 0')
69 # recipes being parsed; check parse progress
79 msg = 'recipe parse progress bar should update to 50%'
100 # first task finished; check tasks progress bar
106 selector = base_selector + '[data-build-state="In Progress"]'
114 msg = 'tasks progress bar should update to 50%'
117 # last task finished; check tasks progress bar updates
127 msg = 'tasks progress bar should update to 100%'
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3-git/
H A D0001-python3-git-CVE-2022-24439-fix-from-PR-1518.patch53 res = self._get_fetch_info_from_stderr(proc, progress,
58 kwargs = add_progress(kwargs, self.repo.git, progress)
62 res = self._get_fetch_info_from_stderr(proc, progress,
67 kwargs = add_progress(kwargs, self.repo.git, progress)
83 v=True, universal_newlines=True, **add_progress(kwargs, git, progress))
84 if progress:
85 handle_process_output(proc, None, to_progress_instance(progress).new_message_handler(),
H A D0001-python3-git-CVE-2022-24439-fix-from-PR-1521.patch194 progress: Union['UpdateProgress', None] = None, dry_run: bool = False,
210progress.update(END | CLONE, 0, 1, prefix + "Done cloning to %s" % checkout_module_abspath)
302 progress: Union[RemoteProgress, None, 'UpdateProgress'] = None,
324 res = self._get_fetch_info_from_stderr(proc, progress,
327 progress: Union[RemoteProgress, 'UpdateProgress', None] = None,
337 kwargs = add_progress(kwargs, self.repo.git, progress)
349 res = self._get_fetch_info_from_stderr(proc, progress,
352progress: Union[RemoteProgress, 'UpdateProgress', Callable[..., RemoteProgress], None] = None,
362 kwargs = add_progress(kwargs, self.repo.git, progress)
414progress: Union['RemoteProgress', 'UpdateProgress', Callable[..., 'RemoteProgress'], None] = None,
[all …]
/OK3568_Linux_fs/buildroot/package/psplash/
H A DConfig.in12 information to psplash such as boot progress information.
19 * Set progress bar to 50 percent:
20 psplash-write "PROGRESS 50"
22 * Display message "foobar" above progress bar:
/OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/
H A Dcommon.h48 // Set the icon (normally the only thing visible besides the progress bar).
57 // Show a progress bar and define the scope of the next operation:
58 // portion - fraction of the progress bar the next operation will use
59 // seconds - expected time interval (progress bar moves at this minimum rate)
63 // Default allocation of progress bar segments to operations
72 // Hide and reset the progress bar.
H A Dui.c72 // Progress bar scope of current operation
76 // Set to 1 when both graphics pages are the same (except for the progress bar)
173 // Draw the progress bar (if any) on the screen. Does not flip pages.
186 // Erase behind the progress bar (in case this was a progress-only update) in draw_progress_locked()
191 float progress = gProgressScopeStart + gProgress * gProgressScopeSize; in draw_progress_locked() local
192 int pos = (int) (progress * width); in draw_progress_locked()
256 // Updates only the progress bar, if possible, otherwise redraws the screen.
265 draw_progress_locked(); // Draw only the progress bar in update_progress_locked()
270 // Keeps the progress bar updated, even when the process is otherwise busy.
278 // update the progress bar animation, if active in progress_thread()
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/js/
H A Dmrbsection.js110 // update the clone progress text
116 // update the recipe progress bar
121 // update the task progress text
125 // update the task progress bar
130 // update the recipe progress text
134 // update the recipe progress bar
/OK3568_Linux_fs/u-boot/arch/x86/cpu/intel_common/
H A Dme_status.c50 /* GMES[31:28] ME Progress Code */
78 /* Progress Code 0 states */
84 /* Progress Code 1 states */
112 /* Progress Code 3 states */
151 debug("ME: Update In Progress : %s\n", in _intel_me_status()
161 debug("ME: Progress Phase : %s\n", in _intel_me_status()
166 debug("ME: Progress Phase State : "); in _intel_me_status()

12345678910>>...115