/external/chromium_org/third_party/WebKit/ManualTests/dom/ |
progressbar.html | 1 <h1>Progress bars</h1> 4 This is an example of <progress value=7 max=10></progress> a determinate progress bar.<br> 5 This is an example of <progress></progress> an indeterminate progress bar.<br> 6 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...] |
/external/chromium_org/content/test/data/accessibility/ |
aria-progressbar-expected-mac.txt | 2 AXProgressIndicator AXRoleDescription='progress indicator' AXValue='3' AXMinValue='1' AXMaxValue='37' 3 AXProgressIndicator AXRoleDescription='progress indicator' AXValue='0' AXMinValue='1' AXMaxValue='96' AXValueDescription='three'
|
/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 {
|
/external/chromium_org/third_party/sqlite/src/test/ |
progress.test | 12 # focus of this file is testing the 'progress callback'. 14 # $Id: progress.test,v 1.8 2007/06/15 14:53:53 danielk1977 Exp $ 19 # If the progress callback is not available in this build, skip this 21 ifcapable !progress { 45 # Test that the progress callback is invoked. 46 do_test progress-1.0 { 48 db progress 1 "[namespace code {incr counter}] ; expr 0" 54 do_test progress-1.0.1 { 55 db progress 57 do_test progress-1.0.2 [all...] |
/external/chromium_org/chrome/browser/download/ |
download_status_updater_gtk.cc | 11 float progress = 0; local 13 GetProgress(&progress, &download_count); 15 unity::SetProgressFraction(progress);
|
/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) {
|
/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" 40 * statusCode = 0 for OK, 1 for progress, other codes for error 41 * progress = 0 for "start", 1..100 for optional progress report [all...] |
/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_org/third_party/WebKit/Source/platform/animation/ |
AnimationUtilities.h | 37 inline int blend(int from, int to, double progress) 39 return lround(from + (to - from) * progress); 44 inline T blend(T from, T to, double progress) 47 return clampTo<T>(round(to > from ? from + (to - from) * progress : from - (from - to) * progress)); 50 inline double blend(double from, double to, double progress) 52 return from + (to - from) * progress; 55 inline float blend(float from, float to, double progress) 57 return static_cast<float>(from + (to - from) * progress); 60 inline LayoutUnit blend(LayoutUnit from, LayoutUnit to, double progress) [all...] |
/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;
|
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/ |
download.py | 32 def ShowKnownProgress(progress): 33 '''Returns a progress function based on a known file size''' 34 if progress == 0: 36 elif progress == -1: 39 new_dots = progress * 50 / file_size - dots[0] 54 progress_func: [optional] A function used to report download progress. If 55 provided, progress_func is called with progress=0 at the 56 beginning of the download, periodically with progress>0 58 progress=-1 at the end or if the download was aborted. 63 # Use a no-op progress function if none is specified [all...] |
/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/chromium_org/chrome/browser/resources/chromeos/login/ |
oobe_screen_update.html | 9 <div id="update-checking-progress" aria-live="polite"> 17 <progress id="update-progress-bar" max="100" value="0"></progress> 18 <p id="estimated-time-left" class="progress-message" hidden></p> 19 <p id="progress-message" class="progress-message" hidden></p>
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FilterOperation.cpp | 34 PassRefPtr<FilterOperation> FilterOperation::blend(const FilterOperation* from, const FilterOperation* to, double progress) 38 return to->blend(from, progress); 39 return from->blend(0, 1 - progress); 42 PassRefPtr<FilterOperation> BasicColorMatrixFilterOperation::blend(const FilterOperation* from, double progress) const 64 double result = WebCore::blend(fromAmount, m_amount, progress); 81 PassRefPtr<FilterOperation> BasicComponentTransferFilterOperation::blend(const FilterOperation* from, double progress) const 103 double result = WebCore::blend(fromAmount, m_amount, progress); 119 PassRefPtr<FilterOperation> BlurFilterOperation::blend(const FilterOperation* from, double progress) const 123 return BlurFilterOperation::create(m_stdDeviation.blend(Length(lengthType), progress, ValueRangeNonNegative)); 126 return BlurFilterOperation::create(m_stdDeviation.blend(fromOp->m_stdDeviation, progress, ValueRangeNonNegative)) [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/ |
progress_manager.js | 6 * Monitor the downloading progress of a XMLHttpRequest |xhr_| and shows the 7 * progress on |progressBar_|. 12 this.progressBar_ = document.querySelector('.progress-bar'); 18 * item |selectedGridItem| to show a progress bar for. Cancels previous xhr and 19 * hides/removes previous progress bar if any. 34 'progress': this.onDownloadProgress_.bind(this), 44 * Removes all event listeners progress manager currently registered. 53 * Removes the progress bar in |selectedGridItem| if any. May be called 59 if (selectedGridItem && selectedGridItem.querySelector('.progress-bar')) { 66 * Calculates and updates the width of progress track [all...] |
/external/mockito/src/org/mockito/internal/progress/ |
IOngoingStubbing.java | 5 package org.mockito.internal.progress;
|
package.html | 7 Mocking progress stateful classes.
|
/external/lzma/CPP/7zip/Compress/ |
CopyCoder.h | 26 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);
30 HRESULT CopyStream(ISequentialInStream *inStream, ISequentialOutStream *outStream, ICompressProgressInfo *progress);
|