/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);
|
/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/eigen/demos/opengl/ |
README | 6 middle button + ctrl walk (progress along camera's z direction)
|
/external/mockito/src/org/mockito/internal/progress/ |
ArgumentMatcherStorage.java | 5 package org.mockito.internal.progress;
|
/external/webkit/LayoutTests/fast/dom/HTMLFormElement/ |
associated-elements-after-index-assertion-fail1.html | 15 <a </var><form><button form="f"><progress>
|
/external/webkit/LayoutTests/http/tests/appcache/ |
navigating-away-while-cache-attempt-in-progress.html | 1 <html manifest="resources/navigating-away-while-cache-attempt-in-progress.manifest">
|
/external/webkit/LayoutTests/storage/ |
open-database-while-transaction-in-progress.html | 4 <script src="open-database-while-transaction-in-progress.js"></script>
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/testcases/ |
testcase-U_Intel_Mac_OS_X_10_6_4_en-US_AppleWebKit-534.8_Chrome-7.0.529.0-TEST-611-3_36,9.html | 6 <progress style="font: 9999 x; ">
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/ |
ProgressBarWrapper.java | 24 * This class wraps around two progress bars and is solely designed to fix 25 * a bug in the framework (b/6928449) that prevents a progress bar from 65 public void setProgress(int progress) { 66 mDeterminate.setProgress(progress);
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
signalbar.cpp | 46 opts.progress = opts.minimum; 48 opts.progress = opts.maximum; 50 opts.progress = signal;
|
/external/jpeg/ |
rdrle.c | 86 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local 170 if (progress != NULL) { 172 progress->total_extra_passes++; 250 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local 263 if (progress != NULL) { 264 progress->pub.pass_limit = cinfo->image_height; 265 progress->pub.pass_counter = 0; 266 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo) [all...] |
cdjpeg.c | 62 * Optional progress monitor: display a percent-done figure on stderr. 70 cd_progress_ptr prog = (cd_progress_ptr) cinfo->progress; 89 start_progress_monitor (j_common_ptr cinfo, cd_progress_ptr progress) 91 /* Enable progress display, unless trace output is on */ 93 progress->pub.progress_monitor = progress_monitor; 94 progress->completed_extra_passes = 0; 95 progress->total_extra_passes = 0; 96 progress->percent_done = -1; 97 cinfo->progress = &progress->pub [all...] |
jcapistd.c | 87 /* Call progress monitor hook if present */ 88 if (cinfo->progress != NULL) { 89 cinfo->progress->pass_counter = (long) cinfo->next_scanline; 90 cinfo->progress->pass_limit = (long) cinfo->image_height; 91 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo); 132 /* Call progress monitor hook if present */ 133 if (cinfo->progress != NULL) { 134 cinfo->progress->pass_counter = (long) cinfo->next_scanline; 135 cinfo->progress->pass_limit = (long) cinfo->image_height; 136 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo) [all...] |
/external/qemu/distrib/jpeg-6b/ |
rdrle.c | 86 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local 170 if (progress != NULL) { 172 progress->total_extra_passes++; 250 cd_progress_ptr progress = (cd_progress_ptr) cinfo->progress; local 263 if (progress != NULL) { 264 progress->pub.pass_limit = cinfo->image_height; 265 progress->pub.pass_counter = 0; 266 (*progress->pub.progress_monitor) ((j_common_ptr) cinfo) [all...] |
cdjpeg.c | 62 * Optional progress monitor: display a percent-done figure on stderr. 70 cd_progress_ptr prog = (cd_progress_ptr) cinfo->progress; 89 start_progress_monitor (j_common_ptr cinfo, cd_progress_ptr progress) 91 /* Enable progress display, unless trace output is on */ 93 progress->pub.progress_monitor = progress_monitor; 94 progress->completed_extra_passes = 0; 95 progress->total_extra_passes = 0; 96 progress->percent_done = -1; 97 cinfo->progress = &progress->pub [all...] |
jcapistd.c | 87 /* Call progress monitor hook if present */ 88 if (cinfo->progress != NULL) { 89 cinfo->progress->pass_counter = (long) cinfo->next_scanline; 90 cinfo->progress->pass_limit = (long) cinfo->image_height; 91 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo); 132 /* Call progress monitor hook if present */ 133 if (cinfo->progress != NULL) { 134 cinfo->progress->pass_counter = (long) cinfo->next_scanline; 135 cinfo->progress->pass_limit = (long) cinfo->image_height; 136 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo) [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/dialog/ |
IndeterminateProgressDialog.java | 28 * Indeterminate progress dialog wrapped up in a DialogFragment to work even when the device 29 * orientation is changed. Currently, only supports adding a title and/or message to the progress 30 * dialog. There is an additional parameter of the minimum amount of time to display the progress 34 * To create and show the progress dialog, use 64 * Creates and shows an indeterminate progress dialog. Once the progress dialog is shown, it 65 * will be shown for at least the minDisplayTime (in milliseconds), so that the progress dialog 89 // Create the progress dialog and set its properties 106 // Upon returning, we want to dismiss this progress dialog fragment. 120 * If we don't check that this onDismiss callback isn't for the old progress dialog from befor [all...] |
/external/e2fsprogs/resize/ |
resize2fs.h | 68 * For the simple progress meter 106 * For the progress meter 108 errcode_t (*progress)(ext2_resize_t rfs, int pass, member in struct:ext2_resize_struct 115 * Progress pass numbers... 126 errcode_t (*progress)(ext2_resize_t rfs,
|
/external/skia/legacy/src/views/ |
SkProgressBarView.cpp | 29 //this implies that if a new max and progress are set, max must be set first 71 if (dom.findS32(node, "progress", &temp)) 102 void SkProgressBarView::setProgress(int progress) 104 fProgress = progress; 107 e.setS32("newProgress", progress);
|
/external/webkit/Source/WebCore/platform/graphics/android/layers/ |
AndroidAnimation.h | 46 void pickValues(double progress, int* start, int* end); 48 double applyTimingFunction(float from, float to, double progress, 51 virtual void applyForProgress(LayerAndroid* layer, float progress) = 0; 90 virtual void applyForProgress(LayerAndroid* layer, float progress); 103 virtual void applyForProgress(LayerAndroid* layer, float progress);
|
/external/webkit/Source/WebCore/svg/ |
SVGPointList.cpp | 48 float inline adjustAnimatedValue(float from, float to, float progress) 50 return (to - from) * progress + from; 53 bool SVGPointList::createAnimated(const SVGPointList& fromList, const SVGPointList& toList, SVGPointList& resultList, float progress) 61 FloatPoint segment = FloatPoint(adjustAnimatedValue(from.x(), to.x(), progress), 62 adjustAnimatedValue(from.y(), to.y(), progress));
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
FlingScroller.java | 107 public void computeScrollOffset(float progress) { 108 progress = Math.min(progress, 1); 109 float f = 1 - progress; 113 mCurrV = getV(progress); 136 private double getV(float progress) { 139 Math.pow(1 - progress, DECELERATED_FACTOR - 1) / mDuration;
|
/packages/apps/Email/src/com/android/email/ |
RefreshManager.java | 125 public void onCallback(MessagingException exception, int progress, Clock clock) { 126 if (exception == null && progress == 0) { 129 } else if (exception != null || progress == 100) { 371 int progress) { 373 Log.d(Logging.LOG_TAG, "updateMailboxListCallback " + accountId + ", " + progress 376 mMailboxListStatus.get(accountId).onCallback(exception, progress, mClock); 389 long mailboxId, int progress, int dontUseNumNewMessages, 393 + mailboxId + ", " + progress + ", " + exceptionToString(exception)); 395 updateMailboxCallbackInternal(exception, accountId, mailboxId, progress, 0); 408 MessagingException exception, long accountId, long mailboxId, int progress, [all...] |
/frameworks/base/core/java/android/widget/ |
AbsSeekBar.java | 38 * touch will form the progress value. Usually 0. 49 * progress. 90 * Sets the thumb that will be drawn at the end of the progress meter within the SeekBar. 116 // progress bar. 168 * Sets the amount of progress changed via the arrow keys. 178 * Returns the amount of progress changed via the arrow keys. 180 * By default, this will be a value that is derived from the max progress. 428 float progress = 0; 436 progress = mTouchProgressOffset; 445 progress = mTouchProgressOffset [all...] |