HomeSort by relevance Sort by last modified time
    Searched refs:mProgress (Results 1 - 14 of 14) sorted by null

  /frameworks/base/core/java/android/app/
ProgressDialog.java 53 private ProgressBar mProgress;
125 int progress = mProgress.getProgress();
126 int max = mProgress.getMax();
137 mProgress = (ProgressBar) view.findViewById(R.id.progress);
146 mProgress = (ProgressBar) view.findViewById(R.id.progress);
193 mProgress.setProgress(value);
201 if (mProgress != null) {
202 mProgress.setSecondaryProgress(secondaryProgress);
210 if (mProgress != null) {
211 return mProgress.getProgress()
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ProgressCategory.java 28 private boolean mProgress = false;
41 int visibility = mProgress ? View.VISIBLE : View.INVISIBLE;
51 mProgress = progressOn;
  /frameworks/base/core/java/android/widget/
ProgressBar.java 79 * private ProgressBar mProgress;
89 * mProgress = (ProgressBar) findViewById(R.id.progress_bar);
100 * mProgress.setProgress(mProgressStatus);
134 private int mProgress;
206 setProgress(a.getInt(R.styleable.ProgressBar_progress, mProgress));
323 mProgress = 0;
467 private int mProgress;
472 mProgress = progress;
477 doRefreshProgress(mId, mProgress, mFromUser);
484 mProgress = progress
    [all...]
MediaController.java 78 private ProgressBar mProgress;
227 mProgress = (ProgressBar) v.findViewById(com.android.internal.R.id.mediacontroller_progress);
228 if (mProgress != null) {
229 if (mProgress instanceof SeekBar) {
230 SeekBar seeker = (SeekBar) mProgress;
233 mProgress.setMax(1000);
383 if (mProgress != null) {
387 mProgress.setProgress( (int) pos);
390 mProgress.setSecondaryProgress(percent * 10);
542 if (mProgress != null)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
RecognitionView.java 64 private View mProgress;
133 mProgress = mView.findViewById(R.id.progress);
147 ((ProgressBar)mProgress).setIndeterminate(false);
148 ((ProgressBar)mProgress).setIndeterminate(true);
209 mProgress.setVisibility(View.VISIBLE);
212 mProgress.setVisibility(View.GONE);
298 MarginLayoutParams mProgressParams = (MarginLayoutParams)mProgress.getLayoutParams();
306 mProgress.setLayoutParams(mProgressParams);
320 mProgress.setVisibility(View.GONE);
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
LookupActivity.java 57 private ProgressBar mProgress;
100 mProgress = (ProgressBar) findViewById(R.id.progress);
324 mProgress.setVisibility(View.INVISIBLE);
334 mProgress.setVisibility(View.VISIBLE);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
AudioQualityVerifierActivity.java 87 private ProgressBar mProgress;
116 mProgress = (ProgressBar) findViewById(R.id.progress);
183 mProgress.setVisibility(ProgressBar.INVISIBLE);
204 mProgress.setVisibility(ProgressBar.VISIBLE);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlertDialogSamples.java 71 private int mProgress;
293 mProgress = 0;
335 if (mProgress >= MAX_PROGRESS) {
338 mProgress++;
  /external/webkit/WebKit/android/nav/
CacheBuilder.cpp     [all...]
CacheBuilder.h 141 AddressProgress mProgress;
  /packages/apps/Music/src/com/android/music/
MediaPlaybackActivity.java 110 mProgress = (ProgressBar) findViewById(android.R.id.progress);
149 if (mProgress instanceof SeekBar) {
150 SeekBar seeker = (SeekBar) mProgress;
153 mProgress.setMax(1000);
    [all...]
  /external/quake/src/com/android/quake/
DownloaderActivity.java 168 mProgress = (TextView) findViewById(R.id.progress);
184 mProgress.setText("");
252 mProgress.setText(mPercentFormat.format(progress / 10000.0));
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/ui/
ContactsPreferencesActivity.java     [all...]
EditContactActivity.java 669 private WeakReference<ProgressDialog> mProgress;
682 mProgress = new WeakReference<ProgressDialog>(ProgressDialog.show(target, null,
769 final ProgressDialog progress = mProgress.get();
    [all...]

Completed in 414 milliseconds