Searched refs:mProgress (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/app/
H A DProgressDialog.java54 private ProgressBar mProgress; field in class:ProgressDialog
137 int progress = mProgress.getProgress();
138 int max = mProgress.getMax();
159 mProgress = (ProgressBar) view.findViewById(R.id.progress);
167 mProgress = (ProgressBar) view.findViewById(R.id.progress);
215 mProgress.setProgress(value);
223 if (mProgress != null) {
224 mProgress.setSecondaryProgress(secondaryProgress);
232 if (mProgress != null) {
233 return mProgress
[all...]
H A DNotification.java963 private int mProgress; field in class:Notification.Builder
1127 mProgress = progress;
1479 R.id.progress, mProgressMax, mProgress, mProgressIndeterminate);
/frameworks/base/core/java/android/preference/
H A DSeekBarPreference.java35 private int mProgress; field in class:SeekBarPreference
64 seekBar.setProgress(mProgress);
75 setProgress(restoreValue ? getPersistedInt(mProgress)
118 if (progress != mProgress) {
119 mProgress = progress;
128 return mProgress;
137 if (progress != mProgress) {
141 seekBar.setProgress(mProgress);
162 if (seekBar.getProgress() != mProgress) {
183 myState.progress = mProgress;
[all...]
/frameworks/support/v4/ics/android/support/v4/app/
H A DNotificationCompatIceCreamSandwich.java30 int mProgressMax, int mProgress, boolean mProgressIndeterminate) {
52 .setProgress(mProgressMax, mProgress, mProgressIndeterminate);
26 add(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int mProgressMax, int mProgress, boolean mProgressIndeterminate) argument
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java32 int mProgressMax, int mProgress, boolean mProgressIndeterminate,
58 .setProgress(mProgressMax, mProgress, mProgressIndeterminate);
28 NotificationCompatJellybean(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int mProgressMax, int mProgress, boolean mProgressIndeterminate, boolean useChronometer, int priority, CharSequence subText) argument
/frameworks/base/core/java/android/widget/
H A DMediaController.java81 private ProgressBar mProgress; field in class:MediaController
276 mProgress = (ProgressBar) v.findViewById(com.android.internal.R.id.mediacontroller_progress);
277 if (mProgress != null) {
278 if (mProgress instanceof SeekBar) {
279 SeekBar seeker = (SeekBar) mProgress;
282 mProgress.setMax(1000);
417 if (mProgress != null) {
421 mProgress.setProgress( (int) pos);
424 mProgress.setSecondaryProgress(percent * 10);
591 if (mProgress !
[all...]
H A DProgressBar.java88 * private ProgressBar mProgress;
98 * mProgress = (ProgressBar) findViewById(R.id.progress_bar);
109 * mProgress.setProgress(mProgressStatus);
204 private int mProgress; field in class:ProgressBar
289 setProgress(a.getInt(R.styleable.ProgressBar_progress, mProgress));
406 mProgress = 0;
543 doRefreshProgress(R.id.progress, mProgress, false, false);
743 if (progress != mProgress) {
744 mProgress = progress;
745 refreshProgress(R.id.progress, mProgress, fromUse
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java111 b.mProgressMax, b.mProgress, b.mProgressIndeterminate);
120 b.mProgressMax, b.mProgress, b.mProgressIndeterminate,
182 int mProgress; field in class:NotificationCompat.Builder
311 mProgress = progress;
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java7766 float mProgress = 0; field in class:WebViewClassic.FocusTransitionDrawable
7792 mProgress = p;
7794 if (mProgress == 1f)
7801 return mProgress;
7813 int alpha = (int) (mProgress * mMaxAlpha);
7817 float tx = mTranslate.x * mProgress;
7818 float ty = mTranslate.y * mProgress;

Completed in 175 milliseconds