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

123456

/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/services/
H A DTestJobListener.java34 private final List<Job> progress = new ArrayList<>(); field in class:TestJobListener
51 progress.add(job);
106 if (progress.isEmpty()) {
107 fail("Job made no progress. onProgress never called.");
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DEffectParameter.java65 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromTouch) { argument
72 int value = progress + mMin;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DPiecewiseLinearIndentationFunctor.java104 float progress = mBaseValues.get(below - 1) * (1 - partialIn)
106 result += (progress * (1 - mLinearPart)
/frameworks/base/services/core/java/com/android/server/pm/
H A DOtaDexoptShellCommand.java51 case "progress":
94 final float progress = mInterface.getProgress();
96 pw.format("%.2f", progress);
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/
H A DVrActivity.java87 public void progress(int n, int total) {
104 protected void onProgressUpdate(Integer... progress) { argument
105 progressDialog.setMessage(message+progress[0]+"/"+progress[1]);
106 progressDialog.setMax(progress[1]);
107 progressDialog.setProgress(progress[0]);
108 Log.v(LOGTAG,"Loading "+ progress[0]+"/"+progress[1]);
/frameworks/base/core/java/android/widget/
H A DRatingBar.java42 * The secondary progress should not be modified by the client as it is used
235 * @return The amount of progress that fits into a star
252 void onProgressRefresh(float scale, boolean fromUser, int progress) { argument
253 super.onProgressRefresh(scale, fromUser, progress);
255 // Keep secondary progress in sync with primary
256 updateSecondaryProgress(progress);
265 * The secondary progress is used to differentiate the background of a
266 * partially filled star. This method keeps the secondary progress in sync
267 * with the progress.
269 * @param progress Th
271 updateSecondaryProgress(int progress) argument
[all...]
H A DProgressBar.java69 * Visual indicator of progress in some operation. Displays a bar to the user
71 * change the amount of progress (modifying the length of the bar) as it moves
72 * forward. There is also a secondary progress displayable on a progress bar
73 * which is useful for displaying intermediate progress, such as the buffer
74 * level during a streaming playback progress bar.
78 * A progress bar can also be made indeterminate. In indeterminate mode, the
79 * progress bar shows a cyclic animation without an indication of progress. This mode is used by
80 * applications when the length of the task is unknown. The indeterminate progress ba
1290 public int progress; field in class:ProgressBar.RefreshData
1294 obtain(int id, int progress, boolean fromUser, boolean animate) argument
1311 doRefreshProgress(int id, int progress, boolean fromUser, boolean callBackToApp, boolean animate) argument
1331 onProgressRefresh(float scale, boolean fromUser, int progress) argument
1343 setVisualProgress(int id, float progress) argument
1375 onVisualProgressChanged(int id, float progress) argument
1379 refreshProgress(int id, int progress, boolean fromUser, boolean animate) argument
1413 setProgress(int progress) argument
1428 setProgress(int progress, boolean animate) argument
1433 setProgressInternal(int progress, boolean fromUser, boolean animate) argument
1856 int progress; field in class:ProgressBar.SavedState
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPrintContentView.java33 * arbitrary content such as preview, error message, progress indicator,
175 } // else in open/close progress do nothing.
311 private void onDragProgress(float progress) { argument
312 if (Float.compare(mDragProgress, progress) == 0) {
316 if ((mDragProgress == 0 && progress > 0)
317 || (mDragProgress == 1.0f && progress < 1.0f)) {
323 if ((mDragProgress > 0 && progress == 0)
324 || (mDragProgress < 1.0f && progress == 1.0f)) {
331 mDragProgress = progress;
333 mSummaryContent.setAlpha(progress);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardClockPositionAlgorithm.java124 float progress = distanceToScaleEnd / (startPadding - scaleEnd);
125 progress = Math.max(0.0f, Math.min(progress, 1.0f));
126 progress = mAccelerateInterpolator.getInterpolation(progress);
127 progress *= Math.pow(1 + mEmptyDragAmount / mDensity / 300, 0.3f);
128 return progress;
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DBlend.java105 public void onBar1Changed(int progress) { argument
106 image1Alpha = (short)progress;
116 public void onBar2Changed(int progress) { argument
117 image2Alpha = (short)progress;
H A DGrain.java43 public void onBar1Changed(int progress) { argument
44 float s = progress / 100.0f;
H A DBlur25.java53 public void onBar1Changed(int progress) { argument
54 mRadius = ((float)progress) / 100.0f * MAX_RADIUS;
H A DBlur25G.java54 public void onBar1Changed(int progress) { argument
55 mRadius = ((float)progress) / 100.0f * MAX_RADIUS;
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DBlend.java97 public void onBar1Changed(int progress) { argument
98 image1Alpha = (short)progress;
108 public void onBar2Changed(int progress) { argument
109 image2Alpha = (short)progress;
H A DBlur25.java49 public void onBar1Changed(int progress) { argument
50 mRadius = ((float)progress) / 100.0f * MAX_RADIUS;
H A DBlur25G.java48 public void onBar1Changed(int progress) { argument
49 mRadius = ((float)progress) / 100.0f * MAX_RADIUS;
H A DGrain.java38 public void onBar1Changed(int progress) { argument
39 float s = progress / 100.0f;
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DBlend.java104 public void onBar1Changed(int progress) { argument
105 image1Alpha = (short)progress;
115 public void onBar2Changed(int progress) { argument
116 image2Alpha = (short)progress;
H A DBlur25G.java54 public void onBar1Changed(int progress) { argument
55 mRadius = ((float)progress) / 100.0f * MAX_RADIUS;
H A DGrain.java43 public void onBar1Changed(int progress) { argument
44 float s = progress / 100.0f;
H A DBlur25.java53 public void onBar1Changed(int progress) { argument
54 mRadius = ((float)progress) / 100.0f * MAX_RADIUS;
/frameworks/support/compat/ics/android/support/v4/app/
H A DNotificationCompatIceCreamSandwich.java34 Bitmap largeIcon, int progressMax, int progress, boolean progressIndeterminate) {
56 .setProgress(progressMax, progress, progressIndeterminate);
31 Builder(Context context, Notification n, CharSequence contentTitle, CharSequence contentText, CharSequence contentInfo, RemoteViews tickerView, int number, PendingIntent contentIntent, PendingIntent fullScreenIntent, Bitmap largeIcon, int progressMax, int progress, boolean progressIndeterminate) argument
/frameworks/base/core/java/android/content/pm/
H A DPackageInstaller.java443 * changes. The installer may deliver periodic progress updates.
465 * progress being made, such as the installer holding an open
479 * Note that this progress may not directly correspond to the value
482 * system may carve out a portion of the overall progress to represent
485 public abstract void onProgressChanged(int sessionId, float progress); argument
551 public void onSessionProgressChanged(int sessionId, float progress) { argument
552 mHandler.obtainMessage(MSG_SESSION_PROGRESS_CHANGED, sessionId, 0, progress)
650 public void setProgress(float progress) { argument
651 setStagingProgress(progress);
655 * Set current progress o
663 setStagingProgress(float progress) argument
672 addProgress(float progress) argument
1135 public float progress; field in class:PackageInstaller.SessionInfo
[all...]
/frameworks/base/core/java/android/printservice/
H A DIPrintServiceClient.aidl40 * Set the progress of this print job
43 * @param progress The new progress
45 void setProgress(in PrintJobId printJobId, in float progress);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationTemplateViewWrapper.java123 final View progress = mView.findViewById(com.android.internal.R.id.progress);
124 if (progress instanceof ProgressBar) {
125 mProgressBar = (ProgressBar) progress;

Completed in 875 milliseconds

123456