HomeSort by relevance Sort by last modified time
    Searched refs:newMax (Results 1 - 11 of 11) sorted by null

  /dalvik/libcore/luni-kernel/src/main/java/java/lang/
ThreadGroup.java 710 * @param newMax the new maximum priority to be set
719 public final void setMaxPriority(int newMax) {
722 if (newMax <= this.maxPriority) {
723 if (newMax < Thread.MIN_PRIORITY) {
724 newMax = Thread.MIN_PRIORITY;
727 int parentPriority = parent == null ? newMax : parent.getMaxPriority();
728 this.maxPriority = parentPriority <= newMax ? parentPriority : newMax;
733 this.childrenGroups[i].setMaxPriority(newMax);
  /frameworks/base/core/java/android/widget/
RatingBar.java 211 final float newMax = mNumStars / stepSize;
212 final int newProgress = (int) (newMax / getMax() * getProgress());
213 setMax((int) newMax);
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
NamespaceMappings.java 399 int newMax = 2*max + 1;
400 Object[] newArray = new Object[newMax];
402 max = newMax;
  /external/qemu/android/utils/
ini.c 72 int newMax = oldMax + (oldMax >> 1) + 4;
74 AARRAY_RENEW(i->pairs, newMax);
75 i->maxPairs = newMax;
  /external/icu4c/i18n/
colldata.cpp 132 int32_t newMax = listMax + CELIST_BUFFER_SIZE;
138 uint32_t *newCEs = NEW_ARRAY(uint32_t, newMax);
152 listMax = newMax;
236 int32_t newMax = listMax + STRING_LIST_BUFFER_SIZE;
238 UnicodeString *newStrings = new UnicodeString[newMax];
254 listMax = newMax;
  /sdk/traceview/src/com/android/traceview/
TimeLineView.java     [all...]
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 751 milliseconds