Searched refs:progress (Results 101 - 125 of 134) sorted by relevance

123456

/frameworks/support/compat/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java78 int progressMax, int progress, boolean progressIndeterminate,
106 .setProgress(progressMax, progress, progressIndeterminate);
74 Builder(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int progressMax, int progress, boolean progressIndeterminate, boolean useChronometer, int priority, CharSequence subText, boolean localOnly, Bundle extras, String groupKey, boolean groupSummary, String sortKey, RemoteViews contentView, RemoteViews bigContentView) argument
/frameworks/base/core/java/android/preference/
H A DVolumePreference.java159 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromTouch) { argument
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DSaveFragment.java115 mProgress = (ProgressBar) view.findViewById(android.R.id.progress);
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DListenerBindingObject.java142 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { } argument
/frameworks/opt/colorpicker/src/com/android/colorpicker/
H A DColorPickerDialog.java111 mProgress = (ProgressBar) view.findViewById(android.R.id.progress);
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/
H A DLoaderDicom.java377 listener.progress(0, v.mDimx);
444 listener.progress(z, v.mDimx);
492 * @param listener used to feed back status to progress listeners
536 listener.progress(0, v.mDimz);
582 listener.progress(z, v.mDimz);
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DSwipeRefreshLayout.java55 * indication of a refresh. If an activity wishes to show just the progress
57 * progress animation, call setEnabled(false) on the view.
88 // Max amount of circle that can be filled by progress during swipe gesture,
100 // Default background for the progress spinner
102 // Default offset in dips from the top of the view to where the progress spinner should stop
183 // Make sure the progress view is fully visible
242 * @param scale Set to true if there is no view at a higher z-order than where the progress
246 * progress spinner should appear.
248 * progress spinner should come to rest after a successful swipe
261 * @return The offset in pixels from the top of this view at which the progress spinne
454 setAnimationProgress(float progress) argument
[all...]
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/view/
H A DCardViewActivity.java55 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/view/
H A DCardViewActivity.java55 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
/frameworks/base/core/java/android/widget/
H A DMediaController.java43 * buttons like "Play/Pause", "Rewind", "Fast Forward" and a progress
334 // progress bar but disable forward/backward buttons.
369 // cause the progress bar to be updated even if mShowing
371 // paused with the progress bar showing the user hits play.
578 // By removing these pending progress messages we make sure
579 // that a) we won't update the progress while the user adjusts
587 public void onProgressChanged(SeekBar bar, int progress, boolean fromuser) {
590 // the progress bar's position.
595 long newposition = (duration * progress) / 1000L;
608 // Ensure that progress i
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java58 // beyond which swipe progress->0
189 private float getSwipeAlpha(float progress) { argument
190 return Math.min(0, Math.max(1, progress / SWIPE_PROGRESS_FADE_END));
673 * Updates the swipe progress on a child.
/frameworks/base/services/core/java/com/android/server/display/
H A DAutomaticBrightnessController.java502 final long progress = System.currentTimeMillis() - state.sunsetTimeMillis();
503 final float amount = (float) Math.pow(2.0 * progress / duration - 1.0, 2.0);
/frameworks/base/services/core/java/com/android/server/power/
H A DShutdownThread.java72 // constants for progress bar. the values are roughly estimated based on timeout.
128 * @param context Context used to display the shutdown progress dialog.
211 * @param context Context used to display the shutdown progress dialog.
227 * @param context Context used to display the shutdown progress dialog.
261 // UI: determinate progress bar (mRebootHasProgressBar == True)
267 // UI: spinning circle only (no progress bar)
271 // UI: spinning circle only (no progress bar)
275 // UI: spinning circle only (no progress bar)
277 // We need the progress bar if uncrypt will be invoked during the
500 private void setRebootProgress(final int progress, fina argument
[all...]
/frameworks/base/services/print/java/com/android/server/print/
H A DRemotePrintService.java618 // If we do not have print jobs and no discovery is in progress,
791 @FloatRange(from=0.0, to=1.0) float progress) {
796 service.mSpooler.setProgress(printJobId, progress);
790 setProgress(@onNull PrintJobId printJobId, @FloatRange(from=0.0, to=1.0) float progress) argument
H A DRemotePrintSpooler.java280 * Set progress of a print job.
283 * @param progress The new progress
286 @FloatRange(from=0.0, to=1.0) float progress) {
293 getRemoteInstanceLazy().setProgress(printJobId, progress);
295 Slog.e(LOG_TAG, "Error setting progress.", re);
285 setProgress(@onNull PrintJobId printJobId, @FloatRange(from=0.0, to=1.0) float progress) argument
/frameworks/base/tests/notification/src/com/android/frameworks/tests/notification/
H A DNotificationTests.java165 public static Notification makeUploadNotification(Context context, int progress, long when) { argument
173 .setProgress(100, Math.min(progress, 100), false);
/frameworks/base/core/java/com/android/internal/widget/
H A DSwipeDismissLayout.java52 * @param progress A number in [0, 1] representing how far to the
55 * layout. This is equivalent to progress * layout.getWidth().
57 void onSwipeProgressChanged(SwipeDismissLayout layout, float progress, float translate); argument
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerService.java1193 private void notifySessionProgressChanged(int sessionId, int userId, float progress) { argument
1194 obtainMessage(MSG_SESSION_PROGRESS_CHANGED, sessionId, userId, progress).sendToTarget();
1243 public void onSessionProgressChanged(PackageInstallerSession session, float progress) { argument
1244 mCallbacks.notifySessionProgressChanged(session.sessionId, session.userId, progress);
/frameworks/rs/java/tests/ScriptGroupTest/src/com/android/rs/sgtest/
H A DScriptGroupTestActivity.java107 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackControlsPresenter.java235 .setDrawableByLayerId(android.R.id.progress, drawable);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatActivity.java326 public void setSupportProgress(int progress) { argument
/frameworks/base/core/java/android/app/
H A DNotification.java178 * <li>Notification of an ongoing file download (with a progress bar, for example) should be stamped when the download started.</li>
675 * Notification category: progress of a long-running background operation.
677 public static final String CATEGORY_PROGRESS = "progress";
856 * {@link #extras} key: this is the progress value supplied to
859 public static final String EXTRA_PROGRESS = "android.progress";
868 * {@link #extras} key: whether the progress bar is indeterminate, supplied to
2615 * Set the progress this notification represents.
2619 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
2620 mN.extras.putInt(EXTRA_PROGRESS, progress);
3256 contentView.setViewVisibility(R.id.progress, Vie
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationContentView.java550 int progress = Math.abs(mContentHeight - startHeight);
552 float amount = (float) progress / (float) totalDistance;
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.cpp993 printf("== Final progress (pid %d): %d/%d (originally %d)\n",
994 getpid(), progress, weight_total, WEIGHT_TOTAL);
1016 "progress (requires -o and -B)\n"
1510 MYLOGD("Final progress: %d/%d (originally %d)\n", progress, weight_total, WEIGHT_TOTAL);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatDrawableManager.java282 setPorterDuffColorFilter(ld.findDrawableByLayerId(android.R.id.progress),
293 setPorterDuffColorFilter(ld.findDrawableByLayerId(android.R.id.progress),

Completed in 1695 milliseconds

123456