/external/qemu/distrib/jpeg-6b/ |
wrrle.c | 83 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local 139 if (progress != NULL) { 140 progress->total_extra_passes++; /* count file writing as separate pass */ 182 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local 215 if (progress != NULL) { 216 progress->pub.pass_limit = cinfo->output_height; 217 progress->pub.pass_counter = 0; 218 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo) [all...] |
jdapistd.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; 135 /* Call progress monitor hook if present */ 136 if (cinfo->progress != NULL) [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
ZoomControl.java | 51 * The progress value has changed 53 * @param progress The progress value 56 public void onProgressChanged(int progress, boolean fromUser); 62 // Set the default maximum progress 101 * @param progress The progress 103 public void setProgress(int progress) { 104 mProgress = progress; 154 final int progress; local [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/ |
StatusBarController.java | 42 private final JProgressBar progress = new JProgressBar(); field in class:StatusBarController 51 progress.setPreferredSize(new Dimension(100, 15)); 59 panel.add(progress); 84 this.progress.setIndeterminate(value); 88 this.progress.setIndeterminate(false); 89 this.progress.setValue(value);
|
/external/chromium_org/chrome/browser/ui/panels/ |
panel_bounds_animation.cc | 55 double PanelBoundsAnimation::ComputeAnimationValue(double progress, 59 double value = 1.0 - progress; 70 if (progress <= kProgressAtFreezeStart) { 72 (progress / kProgressAtFreezeStart); 73 } else if (progress <= kProgressAtFreezeEnd) { 78 ((progress - kProgressAtFreezeEnd) / (1.0 - kProgressAtFreezeEnd));
|
/external/jpeg/ |
jdapistd.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; 135 /* Call progress monitor hook if present */ 136 if (cinfo->progress != NULL) [all...] |
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
ProgressBarTest.java | 41 for (int progress : testValues) { 42 progressBar.setProgress(progress); 43 assertThat(progressBar.getProgress(), equalTo(progress)); 49 for (int progress : testValues) { 50 progressBar.setSecondaryProgress(progress); 51 assertThat(progressBar.getSecondaryProgress(), equalTo(progress));
|
/frameworks/base/docs/html/design/building-blocks/ |
progress.jd | 1 page.title=Progress & Activity 5 <p>Progress bars and activity indicators signal to users that something is happening that will take a moment.</p> 6 <h2 id="progress">Progress bars</h2> 8 <p>Progress bars are for situations where the percentage completed can be determined. They give users a quick sense of how much longer an operation will take.</p> 12 <p>A progress bar should always fill from 0% to 100% and never move backwards to a lower value. If multiple operations are happening in sequence, use the progress bar to represent the delay as a whole, so that when the bar reaches 100%, it doesn't return back to 0%.</p> 18 Progress bar in Holo Dark and Holo Light. 37 <p>In this example, an activity bar (in Holo Dark) appears when a user first requests a download. There's an unknown period of time when the download has not yet started. As soon as the download starts, this activity bar transforms into a progress bar.</p> 68 <p>The standard progress bar and activity indicators work well for most situations and should be used whenever possible to (…) [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
AsyncDialog.java | 28 * than half a second, a progress modal dialog is displayed. 42 * Asynchronously executes a task while blocking the UI with a progress spinner. 57 // Shows the activity's progress spinner. Should be canceled if exiting the activity. 68 // remove any callback to display a progress spinner 76 * Displays a progress spinner while the tasks are running. The progress spinner 93 // lazy initialization of progress dialog for loading attachments 101 * Initializes the progress dialog with its intended settings. 113 * Activates a progress spinner on the UI. This assumes the UI has invoked this Task. 132 // Test code. Uncomment this block to test the progress dialog popping up [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
hooks.py | 130 Test that the progress handler is invoked once it is set. 134 def progress(): function in function:ProgressTests.CheckProgressHandlerUsed 137 con.set_progress_handler(progress, 1) 150 def progress(): function in function:ProgressTests.CheckOpcodeCount 153 con.set_progress_handler(progress, 1) 160 con.set_progress_handler(progress, 2) 169 Test that returning a non-zero value stops the operation in progress. 173 def progress(): function in function:ProgressTests.CheckCancelOperation 176 con.set_progress_handler(progress, 1) 185 Test that setting the progress handler to None clears the previously set handler 189 def progress(): function in function:ProgressTests.CheckClearHandler [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
hooks.py | 130 Test that the progress handler is invoked once it is set. 134 def progress(): function in function:ProgressTests.CheckProgressHandlerUsed 137 con.set_progress_handler(progress, 1) 150 def progress(): function in function:ProgressTests.CheckOpcodeCount 153 con.set_progress_handler(progress, 1) 160 con.set_progress_handler(progress, 2) 169 Test that returning a non-zero value stops the operation in progress. 173 def progress(): function in function:ProgressTests.CheckCancelOperation 176 con.set_progress_handler(progress, 1) 185 Test that setting the progress handler to None clears the previously set handler 189 def progress(): function in function:ProgressTests.CheckClearHandler [all...] |
/external/chromium/chrome/browser/download/ |
download_status_updater_delegate.h | 12 // Returns true if the progress is known (i.e. we know the final size 16 // Returns the number of downloads that are in progress.
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
glsl_parser_extras.cpp | 1032 GLboolean progress = GL_FALSE; local 1034 progress = lower_instructions(ir, SUB_TO_ADD_NEG) || progress; 1037 progress = do_function_inlining(ir) || progress; 1038 progress = do_dead_functions(ir) || progress; 1039 progress = do_structure_splitting(ir) || progress; 1041 progress = do_if_simplification(ir) || progress [all...] |
/external/chromium_org/ui/compositor/ |
float_animation_curve_adapter.cc | 38 double progress = t / duration_.InSecondsF(); local 40 gfx::Tween::CalculateValue(tween_type_, progress),
|
/external/lzma/CPP/7zip/Common/ |
ProgressUtils.cpp | 13 void CLocalProgress::Init(IProgress *progress, bool inSizeIsMain)
16 _progress = progress;
|
/external/mesa3d/src/glsl/ |
glsl_parser_extras.cpp | 1032 GLboolean progress = GL_FALSE; local 1034 progress = lower_instructions(ir, SUB_TO_ADD_NEG) || progress; 1037 progress = do_function_inlining(ir) || progress; 1038 progress = do_dead_functions(ir) || progress; 1039 progress = do_structure_splitting(ir) || progress; 1041 progress = do_if_simplification(ir) || progress [all...] |
/external/mockito/src/org/mockito/internal/progress/ |
ArgumentMatcherStorageImpl.java | 6 package org.mockito.internal.progress; 29 * @see org.mockito.internal.progress.ArgumentMatcherStorage#reportMatcher(org.hamcrest.Matcher) 37 * @see org.mockito.internal.progress.ArgumentMatcherStorage#pullLocalizedMatchers() 50 * @see org.mockito.internal.progress.ArgumentMatcherStorage#reportAnd() 60 * @see org.mockito.internal.progress.ArgumentMatcherStorage#reportOr() 70 * @see org.mockito.internal.progress.ArgumentMatcherStorage#reportNot() 109 * @see org.mockito.internal.progress.ArgumentMatcherStorage#validateState() 120 * @see org.mockito.internal.progress.ArgumentMatcherStorage#reset()
|
/frameworks/av/libvideoeditor/vss/common/inc/ |
M4VFL_transition.h | 64 * M4VIFI_UInt32 Progress) 67 * Map the value of progress from (0 - 1000) to (0 - 1024) 69 * 1. from 0 to (Progress << 1) ;for Progress <= 512 70 * 2. from (( Progress - 512)<< 1) to 1024 ;otherwise 89 * @param Progress: (IN) Progress value (varies between 0 and 1000) 96 M4ViComImagePlane *pPlaneOut, UInt32 Progress);
|
/frameworks/support/v4/java/android/support/v4/widget/ |
ContentLoadingProgressBar.java | 26 * dismissed before showing. Once visible, the progress bar will be visible for 90 * Hide the progress view if it is visible. The progress view will not be 92 * progress view was not yet visible, cancels showing the progress view. 99 // The progress spinner has been shown long enough 104 // The progress spinner is shown, but not long enough, 115 * Show the progress view after waiting for a minimum delay. If
|
/packages/apps/Gallery2/src/com/android/gallery3d/anim/ |
FloatAnimation.java | 33 protected void onCalculate(float progress) { 34 mCurrent = mFrom + (mTo - mFrom) * progress;
|
/packages/apps/Settings/src/com/android/settings/ |
PointerSpeedPreference.java | 77 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromTouch) { 79 mIm.tryPointerSpeed(progress + InputManager.MIN_POINTER_SPEED); 127 myState.progress = mSeekBar.getProgress(); 146 mSeekBar.setProgress(myState.progress); 147 mIm.tryPointerSpeed(myState.progress + InputManager.MIN_POINTER_SPEED); 151 int progress; field in class:PointerSpeedPreference.SavedState 156 progress = source.readInt(); 163 dest.writeInt(progress);
|
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/ |
CSSPropertyAnimation.cpp | 53 static inline T blendFunc(const AnimationBase*, T from, T to, double progress) 55 return blend(from, to, progress); 58 static inline float blendFunc(const AnimationBase*, float from, float to, double progress) 60 return narrowPrecisionToFloat(from + (to - from) * progress); 63 static inline Color blendFunc(const AnimationBase*, const Color& from, const Color& to, double progress) 65 return blend(from, to, progress); 68 static inline Length blendFunc(const AnimationBase*, const Length& from, const Length& to, double progress) 70 return to.blend(from, progress, ValueRangeAll); 73 static inline BorderImageLength blendFunc(const AnimationBase* anim, const BorderImageLength& from, const BorderImageLength& to, double progress) 76 return BorderImageLength(blendFunc(anim, from.number(), to.number(), progress)); [all...] |
/developers/build/prebuilts/gradle/BatchStepSensor/BatchStepSensorSample/src/main/java/com/example/android/batchstepsensor/ |
Card.java | 38 * progress indicator and zero or more actions. It is constructed through the {@link Builder}. 55 // description, zero to many action buttons, and zero or 1 progress indicators. 92 * Some cards will have a sense of "progress" which should be associated with, but separated 94 * a maximum of one progress indicator per Card. 178 * Set the type of progress indicator. 179 * The progress type can only be changed if the Card was initially build with a progress 197 * Return the progress indicator type. A value of either {@link #PROGRESS_TYPE_NORMAL}, 198 * {@link #PROGRESS_TYPE_INDETERMINATE}, {@link #PROGRESS_TYPE_LABEL}. Otherwise if no progress 210 * Set the progress to the specified value. Only applicable if the card has [all...] |
/developers/build/templates/CardStream/_MODULE_/src/template/java/_PACKAGE_/ |
Card.java.ftl | 36 * progress indicator and zero or more actions. It is constructed through the {@link Builder}. 53 // description, zero to many action buttons, and zero or 1 progress indicators. 90 * Some cards will have a sense of "progress" which should be associated with, but separated 92 * a maximum of one progress indicator per Card. 176 * Set the type of progress indicator. 177 * The progress type can only be changed if the Card was initially build with a progress 195 * Return the progress indicator type. A value of either {@link #PROGRESS_TYPE_NORMAL}, 196 * {@link #PROGRESS_TYPE_INDETERMINATE}, {@link #PROGRESS_TYPE_LABEL}. Otherwise if no progress 208 * Set the progress to the specified value. Only applicable if the card has [all...] |
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/test/ |
ci.rake | 4 t.rspec_opts = ["--colour", "--format", ENV['JASMINE_SPEC_FORMAT'] || "progress"]
|