HomeSort by relevance Sort by last modified time
    Searched full:progress (Results 1 - 25 of 2620) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/http/tests/appcache/
foreign-iframe-main-expected.txt 5 progress
6 progress
7 progress
8 progress
progress-counter-expected.txt 1 This tests that the lengthComputable / loaded / total properties of the progress event are set correctly.
progress-counter.html 1 <html manifest="resources/progress-counter.manifest">
16 function progress(event)
39 document.getElementById('result').innerHTML = "FAILURE: expected 3 progress events, but got " + eventsReceived;
56 applicationCache.addEventListener('progress', progress, false);
59 <div>This tests that the lengthComputable / loaded / total properties of the progress event are set correctly.</div>
  /external/webkit/Source/WebCore/manual-tests/dom/
progressbar.html 2 <h1>Indeterminate progress bar</h1>
3 This is an example of <progress value=7 max=10></progress> a determinate progress bar.<br>
4 This is an example of <progress></progress> an indeterminate progress bar.<br>
5 This is an example of <progress dir=rtl value=7 max=10></progress> a right-to-left determinate progress bar.<br
    [all...]
form-control-for-label.html 3 progress {border: 3px solid blue;}
4 progress:hover {border: 3px solid red;}
8 <label>The border color of the progress bar should change from blue to red when you hover on this label text <progress></progress></label><br>
9 <label>The border of this progress bar would change color when it is inside fieldset and legend elements <fieldset><legend><progress></progress></legend></fieldset></label><br>
  /external/chromium/chrome/browser/download/
download_status_updater_unittest.cc 84 float progress = -1; local
85 EXPECT_TRUE(updater_.GetProgress(&progress));
86 EXPECT_FLOAT_EQ(0, progress);
94 float progress = -1; local
95 EXPECT_TRUE(updater_.GetProgress(&progress));
96 EXPECT_FLOAT_EQ(0, progress);
105 float progress = -1; local
106 EXPECT_TRUE(updater_.GetProgress(&progress));
107 EXPECT_FLOAT_EQ(static_cast<float>(1) / 2, progress);
114 float progress = -1 local
126 float progress = -1; local
141 float progress = -1; local
150 float progress = -1; local
159 float progress = -1; local
    [all...]
download_status_updater.cc 30 float progress = 0; local
31 bool progress_known = GetProgress(&progress);
35 progress);
38 bool DownloadStatusUpdater::GetProgress(float* progress) {
39 *progress = 0;
52 *progress = static_cast<float>(received_bytes) / total_bytes;
  /external/marisa-trie/lib/marisa/
progress.h 8 class Progress {
10 explicit Progress(int flags);
17 Progress &operator++() {
57 Progress(const Progress &);
58 Progress &operator=(const Progress &);
progress.cc 1 #include "progress.h"
5 Progress::Progress(int flags) : flags_(flags), trie_id_(0), total_size_(0) {
20 bool Progress::is_valid() const {
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
progress.h 8 class Progress {
10 explicit Progress(int flags);
17 Progress &operator++() {
57 Progress(const Progress &);
58 Progress &operator=(const Progress &);
progress.cc 1 #include "progress.h"
5 Progress::Progress(int flags) : flags_(flags), trie_id_(0), total_size_(0) {
21 bool Progress::is_valid() const {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IEmailServiceCallback.aidl 23 * statuscode = 1, progress = 0: "starting"
24 * statuscode = 0, progress = n/a: "finished"
27 * statuscode = err, progress = n/a: "stopping due to error"
30 * statuscode = 1, progress = 0: "starting"
31 * statuscode = 1, progress = 30: "working"
32 * statuscode = 1, progress = 60: "working"
33 * statuscode = 0, progress = n/a: "finished"
39 * statusCode = 0 for OK, 1 for progress, other codes for error
40 * progress = 0 for "start", 1..100 for optional progress report
    [all...]
  /external/robolectric/src/main/java/android/os/
ShadowAsyncTaskBridge.java 6 public class ShadowAsyncTaskBridge<Params, Progress, Result> {
7 private AsyncTask<Params, Progress, Result> asyncTask;
9 public ShadowAsyncTaskBridge(AsyncTask<Params, Progress, Result> asyncTask) {
25 public void onProgressUpdate(Progress... values) {
  /external/javasqlite/src/main/java/SQLite/
ProgressHandler.java 4 * Callback interface for SQLite's user defined progress handler.
16 public boolean progress(); method in interface:ProgressHandler
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowProgressBar.java 11 private int progress; field in class:ShadowProgressBar
29 if (progress > max) {
30 progress = max;
40 public void setProgress(int progress) {
41 if (!isIndeterminate()) this.progress = Math.min(max, progress);
46 return isIndeterminate ? 0 : progress;
71 if (!isIndeterminate()) setProgress(progress + diff);
ShadowSeekBar.java 24 public void setProgress(int progress) {
25 super.setProgress(progress);
27 listener.onProgressChanged( realSeekBar, progress, true);
  /external/chromium/chrome/browser/ui/cocoa/
dock_icon.h 18 // Download progress ///////////////////////////////////////////////////////////
20 // Indicates how many downloads are in progress.
23 // Indicates whether the progress indicator should be in an indeterminate state
27 // Indicates the amount of progress made of the download. Ranges from [0..1].
28 - (void)setProgress:(float)progress;
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
ProgressBar.java 29 * Draw a progress bar for media items, transitions and the audio track
41 * Get the progress bar singleton
45 * @return The progress bar
63 // Prepare the progress bitmap
81 * Draw the progress bar
84 * @param progress The progress (between 0 and 100)
89 public void draw(Canvas canvas, int progress, Rect dest, int left, int width) {
90 switch (progress) {
106 dest.right = ((width - left) * progress) / 100
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
AndroidAnimation.cpp 91 double progress = elapsedTime(time); local
100 if (m_iterationCount > 0 && progress > dur) {
103 // first time past duration, continue with progress 1.0 so the
112 double fractionalTime = progress / m_duration;
124 double AndroidAnimation::applyTimingFunction(float from, float to, double progress,
127 double fractionalTime = progress;
162 float progress; local
163 if (!checkIterationsAndProgress(time, &progress)
167 if (progress < 0) {
173 // we still want to be evaluated until we get progress >
    [all...]
  /external/mockito/src/org/mockito/internal/progress/
IOngoingStubbing.java 5 package org.mockito.internal.progress;
package.html 7 Mocking progress stateful classes.
  /external/webkit/Tools/iExploder/iexploder-1.7.2/testcases/
testcase-U_Linux_x86_64_en-US_AppleWebKit-534.6_Chrome-7.0.503.1-TEST-120813-8_72,56,24,8,0.html 4 <progress>
  /external/jpeg/
jdtrans.c 56 /* Call progress monitor hook if present */
57 if (cinfo->progress != NULL)
58 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
65 /* Advance progress counter if appropriate */
66 if (cinfo->progress != NULL &&
68 if (++cinfo->progress->pass_counter >= cinfo->progress->pass_limit) {
70 cinfo->progress->pass_limit += (long) cinfo->total_iMCU_rows;
107 /* Call progress monitor hook if present */
108 if (cinfo->progress != NULL
    [all...]
  /external/qemu/distrib/jpeg-6b/
jdtrans.c 56 /* Call progress monitor hook if present */
57 if (cinfo->progress != NULL)
58 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
65 /* Advance progress counter if appropriate */
66 if (cinfo->progress != NULL &&
68 if (++cinfo->progress->pass_counter >= cinfo->progress->pass_limit) {
70 cinfo->progress->pass_limit += (long) cinfo->total_iMCU_rows;
107 /* Call progress monitor hook if present */
108 if (cinfo->progress != NULL
    [all...]
  /frameworks/base/core/java/android/preference/
SeekBarPreference.java 107 public void setProgress(int progress) {
108 setProgress(progress, true);
111 private void setProgress(int progress, boolean notifyChanged) {
112 if (progress > mMax) {
113 progress = mMax;
115 if (progress < 0) {
116 progress = 0;
118 if (progress != mProgress) {
119 mProgress = progress;
120 persistInt(progress);
136 int progress = seekBar.getProgress(); local
211 int progress; field in class:SeekBarPreference.SavedState
    [all...]

Completed in 547 milliseconds

1 2 3 4 5 6 7 8 91011>>