[go: nahoru, domu]

Searched defs:progress (Results 1 - 25 of 86) sorted by relevance

1234

/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DSeekBarBindingAdapter.java26 @InverseBindingMethod(type = SeekBar.class, attribute = "android:progress"),
30 @BindingAdapter("android:progress")
31 public static void setProgress(SeekBar view, int progress) { argument
32 if (progress != view.getProgress()) {
33 view.setProgress(progress);
47 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
49 progressChanged.onProgressChanged(seekBar, progress, fromUser);
82 void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser); argument
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DProgressBarWrapper.java24 * This class wraps around two progress bars and is solely designed to fix
25 * a bug in the framework (b/6928449) that prevents a progress bar from
65 public void setProgress(int progress) { argument
66 mDeterminate.setProgress(progress);
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DGrain.java43 public void onBar1Changed(int progress) { argument
44 float s = progress / 100.0f;
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 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;
H A DFisheye.java61 public void onBar1Changed(int progress) { argument
62 scale = progress / 50.0f;
65 public void onBar2Changed(int progress) { argument
66 center_x = progress / 100.0f;
69 public void onBar3Changed(int progress) { argument
70 center_y = progress / 100.0f;
H A DMandelbrot.java45 public void onBar1Changed(int progress) { argument
46 int iters = progress * 3 + 50;
56 public void onBar2Changed(int progress) { argument
59 float lowerBoundX = -2.f + ((progress / scaleFactor) / 50.f);
69 public void onBar3Changed(int progress) { argument
72 float lowerBoundY = -2.f + ((progress / scaleFactor) / 50.f);
82 public void onBar4Changed(int progress) { argument
83 float scaleFactor = 4.f - (3.96f * (progress / 100.f));
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
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;
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 DMandelbrot.java39 public void onBar1Changed(int progress) { argument
40 int iters = progress * 3 + 50;
50 public void onBar2Changed(int progress) { argument
53 float lowerBoundX = -2.f + ((progress / scaleFactor) / 50.f);
63 public void onBar3Changed(int progress) { argument
66 float lowerBoundY = -2.f + ((progress / scaleFactor) / 50.f);
76 public void onBar4Changed(int progress) { argument
77 float scaleFactor = 4.f - (3.96f * (progress / 100.f));
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
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 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 DBlur25.java53 public void onBar1Changed(int progress) { argument
54 mRadius = ((float)progress) / 100.0f * MAX_RADIUS;
H A DMandelbrot.java39 public void onBar1Changed(int progress) { argument
40 int iters = progress * 3 + 50;
50 public void onBar2Changed(int progress) { argument
53 float lowerBoundX = -2.f + ((progress / scaleFactor) / 50.f);
63 public void onBar3Changed(int progress) { argument
66 float lowerBoundY = -2.f + ((progress / scaleFactor) / 50.f);
76 public void onBar4Changed(int progress) { argument
77 float scaleFactor = 4.f - (3.96f * (progress / 100.f));
/frameworks/base/core/java/android/widget/
H A DSeekBar.java26 * the thumb and drag left or right to set the current progress level or use the arrow keys.
37 * A callback that notifies clients when the progress level has been
45 * Notification that the progress level has changed. Clients can use the fromUser parameter
48 * @param seekBar The SeekBar whose progress has changed
49 * @param progress The current progress level. This will be in the range 0..max where max
51 * @param fromUser True if the progress change was initiated by the user.
53 void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser); argument
89 void onProgressRefresh(float scale, boolean fromUser, int progress) { argument
90 super.onProgressRefresh(scale, fromUser, progress);
[all...]
/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/services/core/java/com/android/server/am/
H A DPreBootBroadcaster.java54 ProgressReporter progress) {
57 mProgress = progress;
53 PreBootBroadcaster(ActivityManagerService service, int userId, ProgressReporter progress) argument
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/
H A DVolumeLoader.java127 public void progress(int n, int total); method in interface:VolumeLoader.ProgressListener
/frameworks/support/v4/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/com/android/internal/util/
H A DProgressReporter.java30 * Tracks and reports progress of a single task to a {@link IProgressListener}.
31 * The reported progress of a task ranges from 0-100, but the task can be
35 * Here's an example in action; when finished the overall task progress will be
70 * Current segment range: first element is starting progress of this
77 * Create a new task with the given identifier whose progress will be
85 * Add given listener to watch for progress events. The current state will
114 * Set the progress of the currently active segment.
116 * @param progress Segment progress between 0-100.
118 public void setProgress(int progress) { argument
127 setProgress(int progress, @Nullable CharSequence title) argument
218 notifyProgress(int id, int progress, Bundle extras) argument
[all...]
/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;

Completed in 428 milliseconds

1234