HomeSort by relevance Sort by last modified time
    Searched full:progress (Results 51 - 75 of 4084) sorted by null

1 23 4 5 6 7 8 91011>>

  /development/samples/ApiDemos/src/com/example/android/apis/view/
ProgressBar1.java 30 * Demonstrates how to use progress bars as widgets and in the title bar. The progress bar
31 * in the title will be shown until the progress is complete, at which point it fades away.
38 // Request the progress bar to be shown in the title
51 // Title progress is in range 0..10000
60 // Title progress is in range 0..10000
69 // Title progress is in range 0..10000
78 // Title progress is in range 0..10000
ProgressBar2.java 27 * Demonstrates the use of indeterminate progress bars as widgets and in the
29 * progress bars that can be used.
36 // Request for the progress bar to be shown in the title
41 // Make sure the progress bar is visible
  /external/chromium_org/chrome/browser/resources/chromeos/
image_burner.html 23 <div id="progress-status-div">
24 <p id="progress-text" class="progress-text"></p>
25 <div id="progress-status" class="float-start">
26 <progress id="progress-div" class="float-start"></progress>
31 <p id="pending-time" class="progress-text"></p>
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ui/
progress_center_panel.js 8 * Progress center panel.
15 * Root element of the progress center.
22 * Open view containing multiple progress items.
26 this.openView_ = this.element_.querySelector('#progress-center-open-view');
29 * Close view that is a summarized progress item.
33 this.closeView_ = this.element_.querySelector('#progress-center-close-view');
36 * Toggle animation rule of the progress center.
44 * Reset is requested but it is pending until the transition of progress bar
52 * Callback to becalled with the ID of the progress item when the cancel
70 * @param {!ProgressCenterItem} item Progress center item
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
unity_service.h 19 // If unity is running, sets the download progress bar in the dock icon. Any
20 // value between 0.0 and 1.0 (exclusive) shows the progress bar.
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
unity_service.h 17 // If unity is running, sets the download progress bar in the dock icon. Any
18 // value between 0.0 and 1.0 (exclusive) shows the progress bar.
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Mandelbrot.java 40 public void onBar1Changed(int progress) {
41 int iters = progress * 3 + 50;
51 public void onBar2Changed(int progress) {
54 float lowerBoundX = -2.f + ((progress / scaleFactor) / 50.f);
64 public void onBar3Changed(int progress) {
67 float lowerBoundY = -2.f + ((progress / scaleFactor) / 50.f);
77 public void onBar4Changed(int progress) {
78 float scaleFactor = 4.f - (3.96f * (progress / 100.f));
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Mandelbrot.java 34 public void onBar1Changed(int progress) {
35 int iters = progress * 3 + 50;
45 public void onBar2Changed(int progress) {
48 float lowerBoundX = -2.f + ((progress / scaleFactor) / 50.f);
58 public void onBar3Changed(int progress) {
61 float lowerBoundY = -2.f + ((progress / scaleFactor) / 50.f);
71 public void onBar4Changed(int progress) {
72 float scaleFactor = 4.f - (3.96f * (progress / 100.f));
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Mandelbrot.java 40 public void onBar1Changed(int progress) {
41 int iters = progress * 3 + 50;
51 public void onBar2Changed(int progress) {
54 float lowerBoundX = -2.f + ((progress / scaleFactor) / 50.f);
64 public void onBar3Changed(int progress) {
67 float lowerBoundY = -2.f + ((progress / scaleFactor) / 50.f);
77 public void onBar4Changed(int progress) {
78 float scaleFactor = 4.f - (3.96f * (progress / 100.f));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
buildtools.py 70 rsrcname=None, others=[], raw=0, progress="default", destroot=""):
72 if progress == "default":
77 progress = EasyDialogs.ProgressBar("Processing %s..."%os.path.split(filename)[1], 120)
78 progress.label("Compiling...")
79 progress.inc(0)
121 process_common(template, progress, code, rsrcname, destname, 0,
128 if progress:
131 progress = None
133 progress = EasyDialogs.ProgressBar("Updating %s..."%os.path.split(filename)[1], 120)
135 progress = Non
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ProgressBarICS.java 62 android.R.attr.progress,
171 (id == android.R.id.progress || id == android.R.id.secondaryProgress));
231 * Initialize the progress bar's default values:
234 * <li>progress = 0</li>
256 * <p>Indicate whether this progress bar is in indeterminate mode.</p>
258 * @return true if the progress bar is in indeterminate mode
265 * <p>Change the indeterminate mode for this progress bar. In indeterminate
266 * mode, the progress is ignored and the progress bar shows an infinite
269 * If this progress bar's style only supports indeterminate mode (such as the circula
839 int progress; field in class:ProgressBarICS.SavedState
    [all...]
  /frameworks/base/docs/html/training/notify-user/
display-progress.jd 1 page.title=Displaying Progress in a Notification
17 <li><a href="#FixedProgress">Display a Fixed-duration progress Indicator</a></li>
45 Notifications can include an animated progress indicator that shows users the status
48 (a progress bar). If you can't estimate the length of the operation, use the
52 Progress indicators are displayed with the platform's implementation of the
56 To use a progress indicator, call
61 <h2 id="FixedProgress">Display a Fixed-duration Progress Indicator</h2>
63 To display a determinate progress bar, add the bar to your notification by calling
65 setProgress(max, progress, false)} and then issue the notification.
67 progress bar is indeterminate (<strong>true</strong>) or determinate (<strong>false</strong>)
    [all...]
  /external/chromium_org/chrome_frame/
urlmon_bind_status_callback.h 109 STDMETHOD(OnProgress)(ULONG progress, ULONG progress_max, ULONG status_code,
116 // is it a good time to start caching progress notifications
122 // A structure to cache the progress notifications.
123 class Progress {
125 Progress(ULONG progress, ULONG progress_max, ULONG status_code,
127 : progress_(progress),
141 ~Progress() {
144 ULONG progress() const { function in class:BSCBStorageBind::Progress
165 // progress notifications back exactly as we got them. NULL and L"" ar
    [all...]
  /packages/apps/Camera2/src/com/android/camera/ui/
ProgressRenderer.java 28 * Renders a circular progress bar on the screen.
46 * After we reach 100%, keep on painting the progress for another x milliseconds
51 /** When to hide the progress indicator. */
70 * Shows a progress indicator. If the progress is '100', the progress
73 * @param percent the progress in percent (0-100).
80 // We hide the progress once we drew the 100% state once.
88 * Draw the current progress (if < 100%) centered at the given location.
101 // After we reached 100%, we paint the progress renderer for another
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_algebraic.cpp 47 this->progress = false;
70 bool progress; member in class:__anon13097::ir_algebraic_visitor
118 this->progress = true;
230 this->progress = true;
242 this->progress = true;
246 this->progress = true;
263 this->progress = true;
271 this->progress = true;
278 this->progress = true;
282 this->progress = true
    [all...]
  /external/mesa3d/src/glsl/
opt_algebraic.cpp 47 this->progress = false;
70 bool progress; member in class:__anon23564::ir_algebraic_visitor
118 this->progress = true;
230 this->progress = true;
242 this->progress = true;
246 this->progress = true;
263 this->progress = true;
271 this->progress = true;
278 this->progress = true;
282 this->progress = true
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/screens/
update_screen_actor.h 48 // Sets current progress in percents.
49 virtual void SetProgress(int progress) = 0;
57 // Shows message under progress bar.
60 // Sets message under progress bar.
  /external/chromium_org/chrome/browser/ui/cocoa/
history_overlay_controller.h 37 // Updates the appearance of the overlay based on track gesture progress.
39 // 0 indicates no progress. 1 indicates maximum progress.
40 // Finished indicates whether the gesture has reached maximum progress.
  /external/chromium_org/native_client_sdk/src/examples/tutorial/load_progress/
example.dsc 16 'TITLE': 'Load Progress',
  /external/clang/test/Analysis/
analyze_display_progress.c 1 // RUN: %clang_cc1 -analyze -analyzer-display-progress %s 2>&1 | FileCheck %s
  /external/eigen/blas/
README.txt 4 This is currently a work in progress which is far to be ready for use,
  /external/junit/src/junit/framework/
TestListener.java 4 * A Listener for test progress
  /external/lzma/C/
XzEnc.h 17 ICompressProgress *progress);
  /external/mockito/src/org/mockito/internal/debugging/
WarningsCollector.java 11 import org.mockito.internal.progress.MockingProgress;
12 import org.mockito.internal.progress.ThreadSafeMockingProgress;
25 MockingProgress progress = new ThreadSafeMockingProgress(); local
26 progress.setListener(new CollectCreatedMocks(createdMocks));
  /external/mockito/src/org/mockito/internal/progress/
SequenceNumber.java 5 package org.mockito.internal.progress;

Completed in 496 milliseconds

1 23 4 5 6 7 8 91011>>