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

/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DPhotoPageProgressBar.java29 private View mProgress; field in class:PhotoPageProgressBar
37 mProgress = mContainer.findViewById(R.id.photopage_progress_foreground);
42 LayoutParams layoutParams = mProgress.getLayoutParams();
44 mProgress.setLayoutParams(layoutParams);
H A DTrimVideo.java62 public ProgressDialog mProgress; field in class:TrimVideo
146 if (mProgress != null) {
147 mProgress.dismiss();
148 mProgress = null;
313 if (mProgress != null) {
314 mProgress.dismiss();
315 mProgress = null;
332 mProgress = new ProgressDialog(this);
333 mProgress.setTitle(getString(R.string.trimming));
334 mProgress
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DProgressCategory.java27 private boolean mProgress = false; field in class:ProgressCategory
45 progressBar.setVisibility(mProgress ? View.VISIBLE : View.GONE);
47 if (mProgress || !noDeviceFound) {
68 mProgress = progressOn;
H A DTrustedCredentialsSettings.java71 private final int mProgress; field in class:TrustedCredentialsSettings.Tab
78 mProgress = progress;
219 mProgressBar = (ProgressBar) content.findViewById(mTab.mProgress);
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DPowerGaugePreference.java35 private int mProgress; field in class:PowerGaugePreference
46 mProgress = (int) Math.ceil(percentOfMax);
61 progress.setProgress(mProgress);
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactsUnavailableFragment.java47 private ProgressBar mProgress; field in class:ContactsUnavailableFragment
76 mProgress = (ProgressBar) mView.findViewById(R.id.progress);
104 mProgress.setVisibility(View.GONE);
116 mProgress.setVisibility(View.VISIBLE);
128 mProgress.setVisibility(View.VISIBLE);
142 mProgress.setVisibility(View.GONE);
H A DCustomContactListFilterActivity.java854 private ProgressDialog mProgress; field in class:CustomContactListFilterActivity.UpdateTask
865 mProgress = ProgressDialog.show(
899 mProgress.dismiss();
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPhotoFallbackEffect.java56 private float mProgress; field in class:PhotoFallbackEffect
100 float p = mProgress;
156 mProgress = progress;
H A DSlideshowView.java129 private float mProgress; field in class:SlideshowView.SlideshowAnimation
147 float scale = initScale * (1 + SCALE_SPEED * mProgress);
149 float centerX = viewWidth / 2 + mMovingVector.x * mProgress;
150 float centerY = viewHeight / 2 + mMovingVector.y * mProgress;
163 mProgress = progress;
H A DSlotView.java331 protected float mProgress = 0; field in class:SlotView.SlotAnimation
340 mProgress = progress;
351 canvas.translate(0, 0, RISING_DISTANCE * (1 - mProgress));
366 (mCenter.getX() - target.centerX()) * (1 - mProgress),
367 (mCenter.getY() - target.centerY()) * (1 - mProgress),
368 slotIndex * PHOTO_DISTANCE * (1 - mProgress));
369 canvas.setAlpha(mProgress);
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
H A DAudioTrackView.java49 private int mProgress; field in class:AudioTrackView
132 mProgress = -1;
276 mProgress = progress;
293 if (mProgress >= 0) {
294 ProgressBar.getProgressBar(getContext()).draw(canvas, mProgress,
H A DZoomControl.java41 private int mMaxProgress, mProgress; field in class:ZoomControl
104 mProgress = progress;
176 if (progress != mProgress) {
177 mProgress = progress;
178 mListener.onProgressChanged(mProgress, true);
236 if (mProgress <= mMaxProgress / 2) {
237 beta = ((mMaxProgress / 2) - mProgress) * mInterval;
239 beta = ((mMaxProgress - mProgress) * mInterval) + Math.PI + MAX_ANGLE;
H A DAudioTrackLinearLayout.java86 private int mProgress; field in class:AudioTrackLinearLayout.AudioTrackActionModeCallback
113 mProgress = mAudioTrack.getAppVolume();
114 seekBar.setProgress(mProgress);
152 mProgress = progress;
153 mAudioTrack.setAppVolume(mProgress);
164 mAudioTrack.getId(), mProgress);
/packages/apps/Camera/src/com/android/camera/
H A DPanoProgressBar.java32 private float mProgress = 0; field in class:PanoProgressBar
142 mProgress = progress * mWidth / mMaxProgress + mProgressOffset;
144 mProgress = Math.min(mWidth, Math.max(0, mProgress));
147 mRightMostProgress = Math.max(mRightMostProgress, mProgress);
151 mLeftMostProgress = Math.min(mLeftMostProgress, mProgress);
158 mProgress = 0;
176 l = Math.max(mProgress - mIndicatorWidth, 0f);
177 r = mProgress;
179 l = mProgress;
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DPanoProgressBar.java31 private float mProgress = 0; field in class:PanoProgressBar
139 mProgress = progress * mWidth / mMaxProgress + mProgressOffset;
141 mProgress = Math.min(mWidth, Math.max(0, mProgress));
144 mRightMostProgress = Math.max(mRightMostProgress, mProgress);
148 mLeftMostProgress = Math.min(mLeftMostProgress, mProgress);
155 mProgress = 0;
173 l = Math.max(mProgress - mIndicatorWidth, 0f);
174 r = mProgress;
176 l = mProgress;
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DTitleBar.java50 private PageProgressView mProgress; field in class:TitleBar
79 mProgress = (PageProgressView) findViewById(R.id.progress);
268 mProgress.setProgress(PageProgressView.MAX_PROGRESS);
269 mProgress.setVisibility(View.GONE);
282 mProgress.setVisibility(View.VISIBLE);
286 mProgress.setProgress(newProgress * PageProgressView.MAX_PROGRESS
390 return mProgress;
/packages/apps/Nfc/src/com/android/nfc/handover/
H A DHandoverTransfer.java93 float mProgress; // Progress in range [0..1] field in class:HandoverTransfer
110 mProgress = 0.0f;
138 this.mProgress = progress;
152 this.mProgress = 1.0f;
/packages/apps/Music/src/com/android/music/
H A DMediaPlaybackActivity.java110 mProgress = (ProgressBar) findViewById(android.R.id.progress);
149 if (mProgress instanceof SeekBar) {
150 SeekBar seeker = (SeekBar) mProgress;
153 mProgress.setMax(1000);
1148 private ProgressBar mProgress; field in class:MediaPlaybackActivity
1176 mProgress.setProgress(progress);
1188 mProgress.setProgress(1000);
1196 int width = mProgress.getWidth();
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
H A DProgressBar.java82 * private ProgressBar mProgress;
92 * mProgress = (ProgressBar) findViewById(R.id.progress_bar);
103 * mProgress.setProgress(mProgressStatus);
199 private int mProgress; field in class:ProgressBar
282 setProgress(a.getInt(R.styleable.ProgressBar_progress, mProgress));
402 mProgress = 0;
533 doRefreshProgress(R.id.progress, mProgress, false, false);
568 private int mProgress; field in class:ProgressBar.RefreshProgressRunnable
573 mProgress = progress;
578 doRefreshProgress(mId, mProgress, mFromUse
[all...]

Completed in 5926 milliseconds