Searched defs:progress (Results 1 - 18 of 18) 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/os/
H A DRecoverySystem.java67 /** Send progress to listeners no more often than this (in ms). */
87 * @param progress the approximate percentage of the
91 public void onProgress(int progress); argument
130 * the thread while this function is in progress will result in a
135 * @param listener an object to receive periodic progress
/frameworks/base/core/java/android/widget/
H A DSeekBar.java28 * the thumb and drag left or right to set the current progress level or use the arrow keys.
39 * A callback that notifies clients when the progress level has been
47 * Notification that the progress level has changed. Clients can use the fromUser parameter
50 * @param seekBar The SeekBar whose progress has changed
51 * @param progress The current progress level. This will be in the range 0..max where max
53 * @param fromUser True if the progress change was initiated by the user.
55 void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser); argument
96 * Sets a listener to receive notifications of changes to the SeekBar's progress level. Also
H A DRatingBar.java44 * The secondary progress should not be modified by the client as it is used
236 * @return The amount of progress that fits into a star
256 // Keep secondary progress in sync with primary
266 * The secondary progress is used to differentiate the background of a
267 * partially filled star. This method keeps the secondary progress in sync
268 * with the progress.
270 * @param progress The primary progress level.
272 private void updateSecondaryProgress(int progress) { argument
275 final float progressInStars = progress / rati
[all...]
H A DProgressBar.java65 * Visual indicator of progress in some operation. Displays a bar to the user
67 * change the amount of progress (modifying the length of the bar) as it moves
68 * forward. There is also a secondary progress displayable on a progress bar
69 * which is useful for displaying intermediate progress, such as the buffer
70 * level during a streaming playback progress bar.
74 * A progress bar can also be made indeterminate. In indeterminate mode, the
75 * progress bar shows a cyclic animation without an indication of progress. This mode is used by
76 * applications when the length of the task is unknown. The indeterminate progress ba
586 public int progress; field in class:ProgressBar.RefreshData
609 obtain(int id, int progress, boolean fromUser) argument
642 doRefreshProgress(int id, int progress, boolean fromUser, boolean callBackToApp) argument
670 refreshProgress(int id, int progress, boolean fromUser) argument
699 setProgress(int progress) argument
704 setProgress(int progress, boolean fromUser) argument
1098 int progress; field in class:ProgressBar.SavedState
[all...]
H A DRemoteViews.java1742 * If indeterminate is true, then the values for max and progress are ignored.
1745 * @param max The 100% value for the progress bar
1746 * @param progress The current value of the progress bar.
1747 * @param indeterminate True if the progress bar is indeterminate,
1750 public void setProgressBar(int viewId, int max, int progress, argument
1755 setInt(viewId, "setProgress", 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.java298 public void onProgressChanged(SeekBar seekBar, int progress, argument
304 postSetVolume(progress);
307 void postSetVolume(int progress) { argument
309 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.java407 /** Update the mute and progress state of a slider */
578 // get max volume for progress bar
610 * Rescale the UI control so the progress bar doesn't go all
634 * Rescale the UI control so the progress bar doesn't go all
907 public void onProgressChanged(SeekBar seekBar, int progress, argument
912 if (getStreamVolume(sc.streamType) != progress) {
913 setStreamVolume(sc.streamType, progress, 0);
928 // progress of the slider isn't being tracked anymore, adjust the slider to the last
/frameworks/base/core/java/com/android/internal/app/
H A DMediaRouteChooserDialogFragment.java668 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { argument
669 changeVolume(progress);
/frameworks/base/core/java/android/app/
H A DNotification.java109 * <li>Notification of an ongoing file download (with a progress bar, for example) should be stamped when the download started.</li>
1089 * Set the progress this notification represents.
1093 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
1095 mProgress = progress;
1447 R.id.progress, mProgressMax, mProgress, mProgressIndeterminate);
1448 contentView.setViewVisibility(R.id.progress, View.VISIBLE);
1451 contentView.setViewVisibility(R.id.progress, View.GONE);
H A DActivity.java4477 * Sets the visibility of the progress bar in the title.
4479 * In order for the progress bar to be shown, the feature must be requested
4482 * @param visible Whether to show the progress bars in the title.
4490 * Sets the visibility of the indeterminate progress bar in the title.
4492 * In order for the progress bar to be shown, the feature must be requested
4495 * @param visible Whether to show the progress bars in the title.
4503 * Sets whether the horizontal progress bar in the title should be indeterminate (the circular
4506 * In order for the progress bar to be shown, the feature must be requested
4509 * @param indeterminate Whether the horizontal progress bar should be indeterminate.
4517 * Sets the progress fo
4526 setProgress(int progress) argument
[all...]
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorMain.cpp135 int progress);
1433 ALOGV("LVME_generateAudio Current progress is =%d", curProgress);
1436 curProgress/*progress*/);
1446 // Send a progress notification.
1451 ALOGV("LVME_generateAudio Current progress is =%d", curProgress);
1454 // Send a progress notification if needed
1459 curProgress/*progress*/);
1460 ALOGV("LVME_generateAudio Current progress is =%d",curProgress);
2461 int progress)
2472 videoEditJava_getEngineCToJava(task), progress);
2458 videoEditor_callOnProgressUpdate( ManualEditContext* pContext, int task, int progress) argument
2757 M4OSA_UInt8 progress = 0; local
[all...]

Completed in 1910 milliseconds