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

1 2 3 4 5 6 7

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
PKIFailureInfo.java 97 private static int maxValue;
114 if (maxValue == 0) {
116 if (cur.value > maxValue) {
117 maxValue = cur.value;
120 return maxValue;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
WeekPickerDialog.java 22 double minValue, double maxValue) {
23 this(context, 0, callBack, year, weekOfYear, minValue, maxValue);
38 double minValue, double maxValue) {
39 super(context, theme, callBack, year, weekOfYear, minValue, maxValue);
44 protected TwoFieldDatePicker createPicker(Context context, double minValue, double maxValue) {
45 return new WeekPicker(context, minValue, maxValue);
MonthPickerDialog.java 26 protected TwoFieldDatePicker createPicker(Context context, double minValue, double maxValue) {
27 return new MonthPicker(context, minValue, maxValue);
TwoFieldDatePickerDialog.java 47 double maxValue) {
48 this(context, 0, callBack, year, positionInYear, minValue, maxValue);
64 double maxValue) {
75 mPicker = createPicker(context, minValue, maxValue);
80 protected TwoFieldDatePicker createPicker(Context context, double minValue, double maxValue) {
TwoFieldDatePicker.java 55 public TwoFieldDatePicker(Context context, double minValue, double maxValue) {
91 if (minValue >= maxValue) {
98 mMaxDate = getDateForValue(maxValue);
MonthPicker.java 22 public MonthPicker(Context context, double minValue, double maxValue) {
23 super(context, minValue, maxValue);
WeekPicker.java 17 public WeekPicker(Context context, double minValue, double maxValue) {
18 super(context, minValue, maxValue);
  /frameworks/base/media/java/android/media/
AudioGain.java 73 int minValue, int maxValue, int defaultValue, int stepValue,
79 mMaxValue = maxValue;
111 public int maxValue() {
  /external/chromium_org/third_party/WebKit/Source/platform/
CalculationValue.h 50 float evaluate(float maxValue) const { return pixels() + percent() / 100 * maxValue; }
  /external/opencv/cv/src/
cvadapthresh.cpp 46 int maxValue, int type, int size, double delta )
60 if( maxValue < 0 )
76 if( maxValue > 255 )
77 maxValue = 255;
81 tab[i] = (uchar)(i - 255 > -idelta ? maxValue : 0);
84 tab[i] = (uchar)(i - 255 <= -idelta ? maxValue : 0);
104 cvAdaptiveThreshold( const void *srcIm, void *dstIm, double maxValue,
134 CV_CALL( icvAdaptiveThreshold_MeanC( src, dst, method, cvRound(maxValue),type,
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioParam.h 51 static PassRefPtrWillBeRawPtr<AudioParam> create(AudioContext* context, const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0)
53 return adoptRefWillBeNoop(new AudioParam(context, name, defaultValue, minValue, maxValue, units));
71 float maxValue() const { return static_cast<float>(m_maxValue); }
108 AudioParam(AudioContext* context, const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0)
114 , m_maxValue(maxValue)
AudioParam.idl 35 readonly attribute float maxValue;
  /external/guava/guava/src/com/google/common/collect/
DiscreteDomain.java 28 * to their specifications. The methods {@link #minValue} and {@link #maxValue}
52 * {@code value} is {@code maxValue()}
110 public C maxValue() {
  /external/icu/icu4c/source/tools/toolutil/
denseranges.cpp 106 int32_t maxValue=values[length-1]; // Assume minValue<=maxValue.
108 // signed-int32_t overflow of maxValue-minValue.
109 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1;
113 ranges[0][1]=maxValue;
119 // See if we can split [minValue, maxValue] into 2..capacity ranges,
133 // the length of the [minValue..maxValue] range (maxLength).
156 ranges[num-1][1]=maxValue;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
CountersGraph.js 311 var maxValue;
317 if (maxValue === undefined || value > maxValue)
318 maxValue = value;
321 maxValue = maxValue || 1;
323 if (maxValue > this._limitValue * 0.5)
324 maxValue = Math.max(maxValue, this._limitValue);
327 return { min: minValue, max: maxValue };
    [all...]
  /frameworks/base/libs/hwui/utils/
MathUtils.h 80 static inline T clamp(T a, T minValue, T maxValue) {
81 return min(max(a, minValue), maxValue);
  /packages/apps/Exchange/src/com/android/exchange/adapter/
PingParser.java 156 * @param maxValue The maximum value for the property we're parsing.
161 final int maxValue) throws IOException {
166 if (value < minValue || (maxValue > 0 && value > maxValue)) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
Preconditions.java 144 public static void checkValueArg(int valueArg, int maxValue) {
145 if (valueArg > maxValue) {
146 if (maxValue == 0) {
153 valueArg, maxValue));
  /external/deqp/modules/glshared/
glsLongStressCase.hpp 67 Value maxValue;
79 maxValue.f[0] = maxValue_;
87 vecToArr(maxValue_, maxValue.f);
95 matToArr(maxValue_, maxValue.f);
102 maxValue.i[0] = maxValue_;
110 vecToArr(maxValue_, maxValue.i);
147 tcu::Vec4 maxValue;
176 , maxValue (maxValue_)
  /external/smali/smali/src/main/java/org/jf/smali/
LiteralTools.java 75 byte maxValue = (byte)(Byte.MAX_VALUE / (radix / 2));
83 if (result > maxValue) {
145 short maxValue = (short)(Short.MAX_VALUE / (radix / 2));
153 if (result > maxValue) {
209 int maxValue = Integer.MAX_VALUE / (radix / 2);
217 if (result > maxValue) {
279 long maxValue = Long.MAX_VALUE / (radix / 2);
287 if (result > maxValue) {
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/
Card.java 469 public Builder setProgressMaxValue(int maxValue) {
474 mCard.mCardProgress.maxValue = maxValue;
595 progressBar.setMax(mCard.mCardProgress.maxValue);
640 private int maxValue = 100;
650 progressClone.maxValue = maxValue;
676 maxValue = max;
679 bar.setMax(maxValue);
  /development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
Card.java 472 public Builder setProgressMaxValue(int maxValue) {
477 mCard.mCardProgress.maxValue = maxValue;
598 progressBar.setMax(mCard.mCardProgress.maxValue);
643 private int maxValue = 100;
653 progressClone.maxValue = maxValue;
679 maxValue = max;
682 bar.setMax(maxValue);
  /external/llvm/utils/lit/lit/
util.py 102 maxValue = max([v for _,v in items])
105 power = int(math.ceil(math.log(maxValue, 10)))
108 N = int(math.ceil(maxValue / barH))
116 bin = min(int(N * v/maxValue), N-1)
127 pDigits = int(math.ceil(math.log(maxValue, 10)))
  /external/chromium_org/third_party/skia/src/effects/
SkColorFilterImageFilter.cpp 40 SkScalar maxValue = row[4] / 255;
44 maxValue += row[i];
48 return (maxValue > 1) || (minValue < 0);
  /external/skia/src/effects/
SkColorFilterImageFilter.cpp 40 SkScalar maxValue = row[4] / 255;
44 maxValue += row[i];
48 return (maxValue > 1) || (minValue < 0);

Completed in 1084 milliseconds

1 2 3 4 5 6 7