/external/chromium_org/third_party/skia/include/views/animated/ |
SkProgressBarView.h | 30 int getMax() const { return fMax; }
|
/external/skia/include/views/animated/ |
SkProgressBarView.h | 30 int getMax() const { return fMax; }
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
BitIntSet.java | 50 if (value >= Bits.getMax(bits)) { 52 Math.max(value + 1, 2 * Bits.getMax(bits))); 60 if (value < Bits.getMax(bits)) { 67 return (value < Bits.getMax(bits)) && Bits.get(bits, value); 74 ensureCapacity(Bits.getMax(o.bits) + 1);
|
Bits.java | 47 public static int getMax(int[] bits) { 55 * @param idx {@code >= 0, < getMax(set);} which bit 68 * @param idx {@code >= 0, < getMax(set);} which bit 86 * @param idx {@code >= 0, < getMax(set);} which bit 98 * @param idx {@code >= 0, < getMax(set);} which bit
|
/dalvik/dx/src/com/android/dx/util/ |
BitIntSet.java | 50 if (value >= Bits.getMax(bits)) { 52 Math.max(value + 1, 2 * Bits.getMax(bits))); 60 if (value < Bits.getMax(bits)) { 67 return (value < Bits.getMax(bits)) && Bits.get(bits, value); 74 ensureCapacity(Bits.getMax(o.bits) + 1);
|
Bits.java | 47 public static int getMax(int[] bits) { 55 * @param idx {@code >= 0, < getMax(set);} which bit 68 * @param idx {@code >= 0, < getMax(set);} which bit 86 * @param idx {@code >= 0, < getMax(set);} which bit 98 * @param idx {@code >= 0, < getMax(set);} which bit
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
BitIntSet.java | 50 if (value >= Bits.getMax(bits)) { 52 Math.max(value + 1, 2 * Bits.getMax(bits))); 60 if (value < Bits.getMax(bits)) { 67 return (value < Bits.getMax(bits)) && Bits.get(bits, value); 74 ensureCapacity(Bits.getMax(o.bits) + 1);
|
Bits.java | 47 public static int getMax(int[] bits) { 55 * @param idx {@code >= 0, < getMax(set);} which bit 68 * @param idx {@code >= 0, < getMax(set);} which bit 86 * @param idx {@code >= 0, < getMax(set);} which bit 98 * @param idx {@code >= 0, < getMax(set);} which bit
|
/cts/tests/tests/widget/src/android/widget/cts/ |
RatingBarTest.java | 136 assertEquals(10, ratingBar.getMax()); 142 assertEquals(10, ratingBar.getMax()); 146 assertEquals(Integer.MAX_VALUE, ratingBar.getMax()); 155 float expectedProgress = expectedMax / ratingBar.getMax() * ratingBar.getProgress(); 156 assertEquals((int) expectedMax, ratingBar.getMax()); 161 int currentMax = ratingBar.getMax(); 166 assertEquals(currentMax, ratingBar.getMax()); 171 assertEquals(currentMax, ratingBar.getMax()); 176 assertEquals(currentMax, ratingBar.getMax()); 181 assertEquals(currentMax, ratingBar.getMax()); [all...] |
ProgressBarTest.java | 113 final int maxProgress = progressBar.getMax(); 140 final int maxProgress = progressBar.getMax(); 172 increment = progressBar.getMax() >> 1; 180 assertEquals(progressBar.getMax(), progressBar.getProgress()); 197 increment = progressBar.getMax() >> 1; 205 assertEquals(progressBar.getMax(), progressBar.getSecondaryProgress()); 295 assertEquals(max, progressBar.getMax()); 300 assertEquals(max, progressBar.getMax()); 305 assertEquals(0, progressBar.getMax()); 309 assertEquals(Integer.MAX_VALUE, progressBar.getMax()); [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowRatingBar.java | 83 final int newProgress = (int) (newMax / getMax() * getProgress()); 90 return (float) getNumStars() / getMax(); 95 return 1f * getMax() / mNumStars;
|
ShadowProgressBar.java | 35 public int getMax() {
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
EdgeSwipeDetector.java | 44 float edgeGutter = event.getDevice().getMotionRange(MotionEvent.AXIS_X).getMax() 61 float enough = event.getDevice().getMotionRange(MotionEvent.AXIS_X).getMax()
|
/frameworks/base/core/java/android/widget/ |
AbsSeekBar.java | 193 if ((mKeyProgressIncrement == 0) || (getMax() / mKeyProgressIncrement > 20)) { 196 setKeyProgressIncrement(Math.max(1, Math.round((float) getMax() / 20))); 256 int max = getMax(); 448 final int max = getMax(); 497 if (progress >= getMax()) break; 523 if (progress < getMax()) { 538 final int increment = Math.max(1, Math.round((float) getMax() / 5)); 549 if (progress >= getMax()) { 564 int max = getMax();
|
RatingBar.java | 218 final int newProgress = (int) (newMax / getMax() * getProgress()); 229 return (float) getNumStars() / getMax(); 237 return 1f * getMax() / mNumStars;
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
ProgressBarTest.java | 28 assertThat(progressBar.getMax(), equalTo(100)); 35 assertThat(progressBar.getMax(), equalTo(max));
|
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/ |
AbsSeekBar.java | 183 if ((mKeyProgressIncrement == 0) || (getMax() / mKeyProgressIncrement > 20)) { 186 setKeyProgressIncrement(Math.max(1, Math.round((float) getMax() / 20))); 246 int max = getMax(); 277 int max = getMax(); 483 final int max = getMax(); 499 final int max = getMax(); 550 if (progress < getMax()) {
|
/frameworks/base/core/java/android/app/ |
ProgressDialog.java | 138 int max = mProgress.getMax(); 245 public int getMax() { 247 return mProgress.getMax();
|
/cts/libs/commonutil/src/com/android/cts/util/ |
Stat.java | 148 public static double getMax(double[] data) {
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
FragmentRetainInstance.java | 135 max = mProgressBar.getMax();
|
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
FragmentRetainInstanceSupport.java | 136 max = mProgressBar.getMax();
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
DictionaryDownloadProgressBar.java | 143 updateHelper.setProgressFromAnotherThread(getMax());
|
/external/jmonkeyengine/engine/src/core/com/jme3/shadow/ |
ShadowUtil.java | 293 Vector3f splitMax = splitBB.getMax(null);
428 Vector3f casterMax = casterBB.getMax(null);
431 Vector3f receiverMax = receiverBB.getMax(null);
434 Vector3f splitMax = splitBB.getMax(null);
|
/frameworks/base/core/java/com/android/internal/widget/ |
TextProgressBar.java | 153 mProgressBar.getMax()) + params.leftMargin;
|
/cts/tests/tests/app/src/android/app/cts/ |
ProgressDialogTest.java | 183 assertEquals(2008, mProgressDialog.getMax()); 188 assertEquals(2009, mProgressDialog.getMax());
|