Searched defs:mProgress (Results 1 - 12 of 12) sorted by relevance

/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/base/packages/DocumentsUI/src/com/android/documentsui/
H A DSaveFragment.java46 private ProgressBar mProgress; field in class:SaveFragment
88 mProgress = (ProgressBar) view.findViewById(android.R.id.progress);
149 mProgress.setVisibility(pending ? View.VISIBLE : View.GONE);
/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/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.java1166 private int mProgress; field in class:Notification.Builder
1331 mProgress = progress;
1691 R.id.progress, mProgressMax, mProgress, mProgressIndeterminate);
1849 extras.putInt(EXTRA_PROGRESS, mProgress);
/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/opt/colorpicker/src/com/android/colorpicker/
H A DColorPickerDialog.java54 private ProgressBar mProgress; field in class:ColorPickerDialog
107 mProgress = (ProgressBar) view.findViewById(android.R.id.progress);
145 if (mProgress != null && mPalette != null) {
146 mProgress.setVisibility(View.GONE);
153 if (mProgress != null && mPalette != null) {
154 mProgress.setVisibility(View.VISIBLE);
/frameworks/base/core/java/android/widget/
H A DMediaController.java81 private ProgressBar mProgress; field in class:MediaController
284 mProgress = (ProgressBar) v.findViewById(com.android.internal.R.id.mediacontroller_progress);
285 if (mProgress != null) {
286 if (mProgress instanceof SeekBar) {
287 SeekBar seeker = (SeekBar) mProgress;
290 mProgress.setMax(1000);
425 if (mProgress != null) {
429 mProgress.setProgress( (int) pos);
432 mProgress.setSecondaryProgress(percent * 10);
599 if (mProgress !
[all...]
H A DProgressBar.java85 * private ProgressBar mProgress;
95 * mProgress = (ProgressBar) findViewById(R.id.progress_bar);
106 * mProgress.setProgress(mProgressStatus);
202 private int mProgress; field in class:ProgressBar
289 setProgress(a.getInt(R.styleable.ProgressBar_progress, mProgress));
413 mProgress = 0;
550 doRefreshProgress(R.id.progress, mProgress, false, false);
717 if (progress != mProgress) {
718 mProgress = progress;
719 refreshProgress(R.id.progress, mProgress, fromUse
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardTransportControlView.java194 private int mProgress; field in class:KeyguardTransportControlView.FutureSeekRunnable
198 scrubTo(mProgress);
203 mProgress = progress;
/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,
200 int mProgress; field in class:NotificationCompat.Builder
333 mProgress = progress;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DProgressBarICS.java82 private int mProgress; field in class:ProgressBarICS
119 setProgress(a.getInt(1, mProgress));
243 mProgress = 0;
372 doRefreshProgress(android.R.id.progress, mProgress, false, false);
393 private int mProgress; field in class:ProgressBarICS.RefreshProgressRunnable
398 mProgress = progress;
403 doRefreshProgress(mId, mProgress, mFromUser, true);
410 mProgress = progress;
481 if (progress != mProgress) {
482 mProgress
[all...]

Completed in 523 milliseconds