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

123456

/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteControllerDialog.java1224 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { argument
1229 + "MediaRouter.RouteInfo.requestSetVolume(" + progress + ")");
1231 route.requestSetVolume(progress);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java63 * Is also capable of displaying a static pattern in "in progress", "wrong" or
107 * progress animation.
112 * the in progress point:
407 * in progress result to correct or wrong.
898 private void setPatternInProgress(boolean progress) { argument
899 mPatternInProgress = progress;
919 // note current x and y for rubber banding of in progress patterns
1062 // figure out in progress portion of ghosting line
1149 // draw last in progress section
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java366 throw new AndroidRuntimeException("You cannot use indeterminate progress on a watch.");
1591 * Updates the progress bars that are shown in the title bar.
1599 * progress (if {@link Window#PROGRESS_END} is given,
1600 * the progress bar widgets in the title will be hidden after an
1604 * secondary progress (if
1606 * progress bar widgets will still be shown with the secondary
1607 * progress bar will be completely filled in.)
1622 Log.e(TAG, "Horizontal progress bar not located in current window decor");
1629 Log.e(TAG, "Circular progress bar not located in current window decor");
1637 Log.e(TAG, "Horizontal progress ba
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsService.java777 // TODO: make this method fully async so we can update UI with progress strings
786 public void onProgress(int id, int progress, Bundle extras) throws RemoteException {
787 Log.d(TAG, "unlockUser progress " + progress);
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java2638 * If indeterminate is true, then the values for max and progress are ignored.
2641 * @param max The 100% value for the progress bar
2642 * @param progress The current value of the progress bar.
2643 * @param indeterminate True if the progress bar is indeterminate,
2646 public void setProgressBar(int viewId, int max, int progress, argument
2651 setInt(viewId, "setProgress", progress);
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompat.java284 * Notification extras key: this is the progress value supplied to
287 public static final String EXTRA_PROGRESS = "android.progress";
296 * Notification extras key: whether the progress bar is indeterminate, supplied to
445 * Notification category: progress of a long-running background operation.
1202 * Set the progress this notification represents, which may be
1205 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
1207 mProgress = progress;
/frameworks/base/core/java/android/app/
H A DActivity.java5708 * Sets the visibility of the progress bar in the title.
5710 * In order for the progress bar to be shown, the feature must be requested
5713 * @param visible Whether to show the progress bars in the title.
5723 * Sets the visibility of the indeterminate progress bar in the title.
5725 * In order for the progress bar to be shown, the feature must be requested
5728 * @param visible Whether to show the progress bars in the title.
5738 * Sets whether the horizontal progress bar in the title should be indeterminate (the circular
5741 * In order for the progress bar to be shown, the feature must be requested
5744 * @param indeterminate Whether the horizontal progress bar should be indeterminate.
5755 * Sets the progress fo
5766 setProgress(int progress) argument
[all...]
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java317 // For debugging, we maintain a progress trace of operations during backup
976 // the timeout is suspended while a restore is in progress. Clean
5093 // next time we run, we are likely to be able to make progress.
7988 // State machine progress
8364 // progress to the agent callback, so we do not always execute the
10565 BackupProgress progress) {
10568 observer.onUpdate(packageName, progress);
10564 sendBackupOnUpdate(IBackupObserver observer, String packageName, BackupProgress progress) argument
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java20380 // Kick off a thread to report progress estimates
20393 final int progress = 10 + (int) MathUtils.constrain(
20395 mMoveCallbacks.notifyStatusChanged(moveId, progress);

Completed in 501 milliseconds

123456