HomeSort by relevance Sort by last modified time
    Searched refs:getProgress (Results 1 - 25 of 249) sorted by null

1 2 3 4 5 6 7 8 910

  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ProgressBarTest.java 43 assertThat(progressBar.getProgress(), equalTo(progress));
67 assertEquals(0, progressBar.getProgress());
71 assertEquals(10, progressBar.getProgress());
82 assertEquals(0, progressBar.getProgress());
88 assertEquals(0, progressBar.getProgress());
90 assertEquals(1, progressBar.getProgress());
92 assertEquals(2, progressBar.getProgress());
105 assertEquals(20, progressBar.getProgress());
  /packages/apps/Gallery2/src_pd/com/android/gallery3d/app/
StitchingProgressManager.java 31 public Integer getProgress(Uri uri) {
  /development/samples/Support7Demos/src/com/example/android/supportv7/view/
CardViewActivity.java 70 mElevationSeekBar.setMax(mMaxElevationSeekBar.getProgress());
71 if (mCornerRadiusSeekBar.getProgress() != mCardView.getRadius()) {
72 mCardView.setRadius(mCornerRadiusSeekBar.getProgress());
74 if (mElevationSeekBar.getProgress() != mCardView.getCardElevation()) {
75 mCardView.setCardElevation(mElevationSeekBar.getProgress());
77 if (mMaxElevationSeekBar.getProgress() != mCardView.getMaxCardElevation()) {
78 mCardView.setMaxCardElevation(mMaxElevationSeekBar.getProgress());
80 ViewCompat.setAlpha(mCardView, mAlphaSeekBar.getProgress() / 255f);
87 mInfoText.setText("radius: " + mCornerRadiusSeekBar.getProgress()
88 + ", alpha: " + mAlphaSeekBar.getProgress()
    [all...]
  /external/skia/include/views/animated/
SkProgressBarView.h 29 int getProgress() const { return fProgress; }
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ProgressBar1.java 44 setProgress(progressHorizontal.getProgress() * 100);
52 setProgress(100 * progressHorizontal.getProgress());
61 setProgress(100 * progressHorizontal.getProgress());
  /cts/tests/tests/widget/src/android/widget/cts/
RatingBarTest.java 142 assertEquals(10, ratingBar.getProgress());
154 float expectedProgress = expectedMax / ratingBar.getMax() * ratingBar.getProgress();
156 assertEquals((int) expectedProgress, ratingBar.getProgress());
161 int currentProgress = ratingBar.getProgress();
166 assertEquals(currentProgress, ratingBar.getProgress());
171 assertEquals(currentProgress, ratingBar.getProgress());
176 assertEquals(currentProgress, ratingBar.getProgress());
181 assertEquals(currentProgress, ratingBar.getProgress());
ProgressBarTest.java 116 assertEquals(0, progressBar.getProgress());
122 assertEquals(maxProgress >> 1, progressBar.getProgress());
126 assertEquals(0, progressBar.getProgress());
129 assertEquals(maxProgress, progressBar.getProgress());
132 assertEquals(maxProgress, progressBar.getProgress());
137 assertEquals(0, progressBar.getProgress());
173 int oldProgress = progressBar.getProgress();
175 assertEquals(oldProgress + increment, progressBar.getProgress());
178 oldProgress = progressBar.getProgress();
180 assertEquals(oldProgress + increment, progressBar.getProgress());
    [all...]
AbsSeekBarTest.java 189 int oldProgress = seekBar.getProgress();
192 assertEquals(oldProgress + keyProgressIncrement, seekBar.getProgress());
193 oldProgress = seekBar.getProgress();
196 assertEquals(oldProgress - keyProgressIncrement, seekBar.getProgress());
207 assertEquals(progress, myAbsSeekBar.getProgress());
213 assertEquals(max, myAbsSeekBar.getProgress());
  /developers/build/prebuilts/gradle/DrawableTinting/Application/src/main/java/com/example/android/drawabletinting/
DrawableTintingFragment.java 219 outState.putInt(STATE_ALPHA, mAlphaBar.getProgress());
220 outState.putInt(STATE_RED, mRedBar.getProgress());
221 outState.putInt(STATE_GREEN, mGreenBar.getProgress());
222 outState.putInt(STATE_BLUE, mBlueBar.getProgress());
231 final int alpha = mAlphaBar.getProgress();
232 final int red = mRedBar.getProgress();
233 final int green = mGreenBar.getProgress();
234 final int blue = mBlueBar.getProgress();
  /developers/samples/android/ui/DrawableTinting/Application/src/main/java/com/example/android/drawabletinting/
DrawableTintingFragment.java 219 outState.putInt(STATE_ALPHA, mAlphaBar.getProgress());
220 outState.putInt(STATE_RED, mRedBar.getProgress());
221 outState.putInt(STATE_GREEN, mGreenBar.getProgress());
222 outState.putInt(STATE_BLUE, mBlueBar.getProgress());
231 final int alpha = mAlphaBar.getProgress();
232 final int red = mRedBar.getProgress();
233 final int green = mGreenBar.getProgress();
234 final int blue = mBlueBar.getProgress();
  /development/samples/browseable/DrawableTinting/src/com.example.android.drawabletinting/
DrawableTintingFragment.java 219 outState.putInt(STATE_ALPHA, mAlphaBar.getProgress());
220 outState.putInt(STATE_RED, mRedBar.getProgress());
221 outState.putInt(STATE_GREEN, mGreenBar.getProgress());
222 outState.putInt(STATE_BLUE, mBlueBar.getProgress());
231 final int alpha = mAlphaBar.getProgress();
232 final int red = mRedBar.getProgress();
233 final int green = mGreenBar.getProgress();
234 final int blue = mBlueBar.getProgress();
  /system/weaved/brillo/android/weave/
IWeaveCommand.aidl 26 String getProgress();
  /developers/samples/android/ui/DrawableTinting/Application/src/test/
SampleTests.java 87 assertEquals(255, mAlpha.getProgress());
88 assertEquals(0, mRed.getProgress());
89 assertEquals(0, mGreen.getProgress());
90 assertEquals(0, mBlue.getProgress());
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
SeekBarDialogTask.java 86 result.put("progress", mSeekBar.getProgress());
117 result.put("progress", mSeekBar.getProgress());
136 result.put("progress", mSeekBar.getProgress());
144 result.put("progress", mSeekBar.getProgress());
  /frameworks/base/core/java/android/widget/
RatingBar.java 205 return getProgress() / getProgressPerStar();
220 final int newProgress = (int) (newMax / getMax() * getProgress());
295 mProgressOnStartTracking = getProgress();
304 if (getProgress() != mProgressOnStartTracking) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
ToggleSlider.java 88 mMirror.setValue(mSlider.getProgress());
147 ToggleSlider.this, mTracking, checked, mSlider.getProgress(), false);
171 mSlider.getProgress(), false);
188 mSlider.getProgress(), true);
  /libcore/ojluni/src/main/java/sun/net/
ProgressEvent.java 90 public long getProgress()
ProgressMonitor.java 129 ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getState(), pi.getProgress(), pi.getExpected());
166 ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getState(), pi.getProgress(), pi.getExpected());
198 ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getState(), pi.getProgress(), pi.getExpected());
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowRatingBar.java 62 return getProgress() / getProgressPerStar();
83 final int newProgress = (int) (newMax / getMax() * getProgress());
ShadowProgressBar.java 45 public int getProgress() {
  /packages/apps/Settings/src/com/android/settings/
PointerSpeedPreference.java 87 mIm.tryPointerSpeed(seekBar.getProgress() + InputManager.MIN_POINTER_SPEED);
103 mSeekBar.getProgress() + InputManager.MIN_POINTER_SPEED);
125 myState.progress = mSeekBar.getProgress();
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
SimplePieChartActivity.java 67 pie.getRenderer(PieRenderer.class).setDonutSize(seekBar.getProgress()/100f,
115 donutSizeTextView.setText(donutSizeSeekBar.getProgress() + "%");
  /development/samples/devbytes/graphics/ImagePixelization/src/com/example/android/imagepixelization/
ImagePixelization.java 87 if (Math.abs(mSeekBar.getProgress() - mLastProgress) > SEEKBAR_STOP_CHANGE_DELTA) {
263 mLastProgress = mSeekBar.getProgress();
266 asyncPixelateTask.execute(mSeekBar.getProgress() / PROGRESS_TO_PIXELIZATION_FACTOR,
269 mImageView.setImageDrawable(pixelizeImage(mSeekBar.getProgress()
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
ProgressReporterTest.java 31 assertEquals(expected, r.getProgress());
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
SeekBarBindingAdapter.java 32 if (progress != view.getProgress()) {

Completed in 543 milliseconds

1 2 3 4 5 6 7 8 910