Searched defs:progress (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/media/java/android/media/videoeditor/
H A DExtractAudioWaveformProgressListener.java29 * This method notifies the listener of the progress status of
33 * @param progress The progress in %. At the beginning of the operation,
36 public void onProgress(int progress); argument
H A DVideoEditor.java77 * progress notifications. This callback should be invoked after the number
131 * This method notifies the listener of the progress status of a export
137 * @param progress The progress in %. At the beginning of the export,
141 int progress);
152 * This method notifies the listener of the progress status of
159 * @param progress The progress in %. At the beginning of the operation,
162 public void onProgress(Object item, int action, int progress); argument
351 * blocking. The application will receive progress notification
140 onProgress(VideoEditor videoEditor, String filename, int progress) argument
[all...]
H A DMediaArtistNativeHelper.java134 * @param progress progress of the task [0..100].
137 public void OnProgressUpdate(int taskId, int progress); argument
1767 private void onProgressUpdate(int taskId, int progress) { argument
1770 if (mProgressToApp < progress) {
1771 mExportProgressListener.onProgress(mVideoEditor, mOutputFilename, progress);
1772 /* record previous progress */
1773 mProgressToApp = progress;
1778 // Adapt progress depending on current state
1790 actualProgress = progress;
1847 onPreviewProgressUpdate(int progress, boolean isFinished, boolean updateOverlay, String filename, int renderingMode, int error) argument
1892 onAudioGraphExtractProgressUpdate(int progress, boolean isVideo) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DSeekBar.java26 * the thumb and drag left or right to set the current progress level or use the arrow keys.
37 * A callback that notifies clients when the progress level has been
45 * Notification that the progress level has changed. Clients can use the fromUser parameter
48 * @param seekBar The SeekBar whose progress has changed
49 * @param progress The current progress level. This will be in the range 0..max where max
51 * @param fromUser True if the progress change was initiated by the user.
53 void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser); argument
94 * Sets a listener to receive notifications of changes to the SeekBar's progress level. Also
H A DRatingBar.java42 * The secondary progress should not be modified by the client as it is used
230 * @return The amount of progress that fits into a star
250 // Keep secondary progress in sync with primary
260 * The secondary progress is used to differentiate the background of a
261 * partially filled star. This method keeps the secondary progress in sync
262 * with the progress.
264 * @param progress The primary progress level.
266 private void updateSecondaryProgress(int progress) { argument
269 final float progressInStars = progress / rati
[all...]
H A DProgressBar.java59 * 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 ba
571 RefreshProgressRunnable(int id, int progress, boolean fromUser) argument
583 setup(int id, int progress, boolean fromUser) argument
591 doRefreshProgress(int id, int progress, boolean fromUser, boolean callBackToApp) argument
619 refreshProgress(int id, int progress, boolean fromUser) argument
650 setProgress(int progress) argument
655 setProgress(int progress, boolean fromUser) argument
1041 int progress; field in class:ProgressBar.SavedState
[all...]
H A DRemoteViews.java1228 * If indeterminate is true, then the values for max and progress are ignored.
1231 * @param max The 100% value for the progress bar
1232 * @param progress The current value of the progress bar.
1233 * @param indeterminate True if the progress bar is indeterminate,
1236 public void setProgressBar(int viewId, int max, int progress, argument
1241 setInt(viewId, "setProgress", progress);
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java66 /** Send progress to listeners no more often than this (in ms). */
86 * @param progress the approximate percentage of the
90 public void onProgress(int progress); argument
124 * the thread while this function is in progress will result in a
129 * @param listener an object to receive periodic progress
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DToggleSlider.java101 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { argument
103 mListener.onChanged(this, mTracking, mToggle.isChecked(), progress);
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
H A DPlaybackActivity.java80 public void onProgressChanged(SeekBar seekBar, int progress, argument
82 setFrame(seekBar, progress);
/frameworks/base/core/java/android/preference/
H A DSeekBarPreference.java107 public void setProgress(int progress) { argument
108 setProgress(progress, true);
111 private void setProgress(int progress, boolean notifyChanged) { argument
112 if (progress > mMax) {
113 progress = mMax;
115 if (progress < 0) {
116 progress = 0;
118 if (progress != mProgress) {
119 mProgress = progress;
120 persistInt(progress);
147 onProgressChanged( SeekBar seekBar, int progress, boolean fromUser) argument
211 int progress; field in class:SeekBarPreference.SavedState
[all...]
H A DVolumePreference.java300 public void onProgressChanged(SeekBar seekBar, int progress, argument
306 postSetVolume(progress);
309 void postSetVolume(int progress) { argument
311 mLastProgress = progress;
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A DImageProcessingActivity.java111 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { argument
115 float fRadius = progress / 100.0f;
121 mInBlack = (float)progress;
124 mOutBlack = (float)progress;
127 mInWhite = (float)progress + 127.0f;
130 mOutWhite = (float)progress + 127.0f;
133 mGamma = (float)progress/100.0f;
138 mSaturation = (float)progress / 50.0f;
/frameworks/base/core/java/android/view/
H A DVolumePanel.java343 /** Update the mute and progress state of a slider */
438 // get max volume for progress bar
470 * Rescale the UI control so the progress bar doesn't go all
494 * Rescale the UI control so the progress bar doesn't go all
669 public void onProgressChanged(SeekBar seekBar, int progress, argument
674 if (mAudioManager.getStreamVolume(sc.streamType) != progress) {
675 mAudioManager.setStreamVolume(sc.streamType, progress, 0);
/frameworks/base/core/java/android/app/
H A DNotification.java749 * Set the progress this notification represents, which may be
752 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
754 mProgress = progress;
978 R.id.progress, mProgressMax, mProgress, mProgressIndeterminate);
979 contentView.setViewVisibility(R.id.progress, View.VISIBLE);
981 contentView.setViewVisibility(R.id.progress, View.GONE);
H A DActivity.java4056 * Sets the visibility of the progress bar in the title.
4058 * In order for the progress bar to be shown, the feature must be requested
4061 * @param visible Whether to show the progress bars in the title.
4069 * Sets the visibility of the indeterminate progress bar in the title.
4071 * In order for the progress bar to be shown, the feature must be requested
4074 * @param visible Whether to show the progress bars in the title.
4082 * Sets whether the horizontal progress bar in the title should be indeterminate (the circular
4085 * In order for the progress bar to be shown, the feature must be requested
4088 * @param indeterminate Whether the horizontal progress bar should be indeterminate.
4096 * Sets the progress fo
4105 setProgress(int progress) argument
[all...]
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorMain.cpp136 int progress);
1434 LOGV("LVME_generateAudio Current progress is =%d", curProgress);
1437 curProgress/*progress*/);
1447 // Send a progress notification.
1452 LOGV("LVME_generateAudio Current progress is =%d", curProgress);
1455 // Send a progress notification if needed
1460 curProgress/*progress*/);
1461 LOGV("LVME_generateAudio Current progress is =%d",curProgress);
2462 int progress)
2473 videoEditJava_getEngineCToJava(task), progress);
2459 videoEditor_callOnProgressUpdate( ManualEditContext* pContext, int task, int progress) argument
2753 M4OSA_UInt8 progress = 0; local
[all...]

Completed in 237 milliseconds