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

12 3 4 5 6 7 8 91011>>

  /external/marisa-trie/lib/marisa/
trie-build.cc 75 Progress progress(flags);
76 MARISA_THROW_IF(!progress.is_valid(), MARISA_PARAM_ERROR);
77 temp.build_trie(keys, &terminals, progress);
107 progress.test_total_size(temp.terminal_flags_.total_size());
114 MARISA_THROW_IF(progress.total_size() != temp.total_size(),
121 Vector<UInt32> *terminals, Progress &progress) {
122 build_cur(keys, terminals, progress);
123 progress.test_total_size(louds_.total_size())
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie-build.cc 84 Progress progress(flags);
85 MARISA_ALPHA_THROW_IF(!progress.is_valid(), MARISA_ALPHA_PARAM_ERROR);
86 temp.build_trie(keys, &terminals, progress);
116 progress.test_total_size(temp.terminal_flags_.total_size());
123 MARISA_ALPHA_THROW_IF(progress.total_size() != temp.total_size(),
130 Vector<UInt32> *terminals, Progress &progress) {
131 build_cur(keys, terminals, progress);
132 progress.test_total_size(louds_.total_size())
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
RotatingButton.java 51 public void onProgressChanged(SeekBar seekBar, int progress,
53 rotatingButton.setTranslationX((float)progress);
66 public void onProgressChanged(SeekBar seekBar, int progress,
68 rotatingButton.setTranslationY((float)progress);
82 public void onProgressChanged(SeekBar seekBar, int progress,
84 rotatingButton.setScaleX((float)progress/10f);
98 public void onProgressChanged(SeekBar seekBar, int progress,
100 rotatingButton.setScaleY((float)progress/10f);
113 public void onProgressChanged(SeekBar seekBar, int progress,
116 rotatingButton.setRotationX((float)progress);
    [all...]
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/webkit/Source/WebCore/platform/graphics/transforms/
ScaleTransformOperation.cpp 27 PassRefPtr<TransformOperation> ScaleTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
33 return ScaleTransformOperation::create(m_x + (1. - m_x) * progress,
34 m_y + (1. - m_y) * progress,
35 m_z + (1. - m_z) * progress, m_type);
41 return ScaleTransformOperation::create(fromX + (m_x - fromX) * progress,
42 fromY + (m_y - fromY) * progress,
43 fromZ + (m_z - fromZ) * progress, m_type);
TranslateTransformOperation.cpp 28 PassRefPtr<TransformOperation> TranslateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
34 return TranslateTransformOperation::create(Length(m_x.type()).blend(m_x, narrowPrecisionToFloat(progress)),
35 Length(m_y.type()).blend(m_y, narrowPrecisionToFloat(progress)),
36 Length(m_z.type()).blend(m_z, narrowPrecisionToFloat(progress)), m_type);
42 return TranslateTransformOperation::create(m_x.blend(fromX, narrowPrecisionToFloat(progress)), m_y.blend(fromY, narrowPrecisionToFloat(progress)), m_z.blend(fromZ, narrowPrecisionToFloat(progress)), m_type);
SkewTransformOperation.cpp 27 PassRefPtr<TransformOperation> SkewTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity)
33 return SkewTransformOperation::create(m_angleX - m_angleX * progress, m_angleY - m_angleY * progress, m_type);
38 return SkewTransformOperation::create(fromAngleX + (m_angleX - fromAngleX) * progress, fromAngleY + (m_angleY - fromAngleY) * progress, m_type);
  /frameworks/base/core/java/android/widget/
ProgressBar.java 62 * Visual indicator of progress in some operation. Displays a bar to the user
64 * change the amount of progress (modifying the length of the bar) as it moves
65 * forward. There is also a secondary progress displayable on a progress bar
66 * which is useful for displaying intermediate progress, such as the buffer
67 * level during a streaming playback progress bar.
71 * A progress bar can also be made indeterminate. In indeterminate mode, the
72 * progress bar shows a cyclic animation without an indication of progress. This mode is used by
73 * applications when the length of the task is unknown. The indeterminate progress bar can be eithe
615 public int progress; field in class:ProgressBar.RefreshData
1098 int progress; field in class:ProgressBar.SavedState
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
oobe_progress_bar.h 19 // Special purpose progress bar with labeled steps that is used to show user's
20 // progress in OOBE process.
23 // Construct progress bar with given labels as steps.
30 // Set the current step for the progress bar. Must be one of the steps
51 // Unique ids for progress bar steps. The order defines how the steps are
update_view.h 37 // Advances view's progress bar. Maximum progress is 100.
38 void AddProgress(int progress);
40 // Sets the current value for the progress bar. Maximum progress is 100.
41 void SetProgress(int progress);
  /external/chromium/chrome/browser/download/
download_status_updater.h 16 // Keeps track of download progress for the entire browser.
34 // If the progress is known (i.e. we know the final size of all downloads),
35 // returns true and puts a percentage (in range [0-1]) in |progress|.
36 bool GetProgress(float* progress);
38 // Returns the number of downloads that are in progress.
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java 59 * Visual indicator of progress in some operation. Displays a bar to the user
61 * change the amount of progress (modifying the length of the bar) as it moves
62 * forward. There is also a secondary progress displayable on a progress bar
63 * which is useful for displaying intermediate progress, such as the buffer
64 * level during a streaming playback progress bar.
68 * A progress bar can also be made indeterminate. In indeterminate mode, the
69 * progress bar shows a cyclic animation without an indication of progress. This mode is used by
70 * applications when the length of the task is unknown. The indeterminate progress bar can be eithe
1032 int progress; field in class:ProgressBar.SavedState
    [all...]
  /external/skia/include/views/animated/
SkProgressBarView.h 22 //inflate: "sk-progress"
24 void reset(); //reset progress to zero
25 void setProgress(int progress);
  /external/skia/legacy/include/views/
SkProgressBarView.h 22 //inflate: "sk-progress"
24 void reset(); //reset progress to zero
25 void setProgress(int progress);
  /packages/apps/Email/src/com/android/email/
ControllerResultUiThreadWrapper.java 62 final long messageId, final long attachmentId, final int progress) {
71 progress);
78 final long messageId, final int progress) {
82 mWrappee.loadMessageForViewCallback(result, accountId, messageId, progress);
89 final long messageId, final int progress) {
93 mWrappee.sendMailCallback(result, accountId, messageId, progress);
100 final long mailboxId, final int progress, final long tag) {
104 mWrappee.serviceCheckMailCallback(result, accountId, mailboxId, progress, tag);
111 final long mailboxId, final int progress, final int numNewMessages,
116 mWrappee.updateMailboxCallback(result, accountId, mailboxId, progress,
    [all...]
  /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));
  /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/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/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));

Completed in 1151 milliseconds

12 3 4 5 6 7 8 91011>>