Searched refs:maxValue (Results 1 - 25 of 94) sorted by relevance

1234

/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
H A DWeekPickerDialog.java22 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) { argument
45 return new WeekPicker(context, minValue, maxValue);
19 WeekPickerDialog(Context context, OnValueSetListener callBack, int year, int weekOfYear, double minValue, double maxValue) argument
33 WeekPickerDialog(Context context, int theme, OnValueSetListener callBack, int year, int weekOfYear, double minValue, double maxValue) argument
H A DMonthPickerDialog.java26 protected TwoFieldDatePicker createPicker(Context context, double minValue, double maxValue) { argument
27 return new MonthPicker(context, minValue, maxValue);
H A DTwoFieldDatePickerDialog.java47 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) { argument
42 TwoFieldDatePickerDialog(Context context, OnValueSetListener callBack, int year, int positionInYear, double minValue, double maxValue) argument
58 TwoFieldDatePickerDialog(Context context, int theme, OnValueSetListener callBack, int year, int positionInYear, double minValue, double maxValue) argument
H A DTwoFieldDatePicker.java55 public TwoFieldDatePicker(Context context, double minValue, double maxValue) { argument
91 if (minValue >= maxValue) {
98 mMaxDate = getDateForValue(maxValue);
H A DMonthPicker.java22 public MonthPicker(Context context, double minValue, double maxValue) { argument
23 super(context, minValue, maxValue);
H A DWeekPicker.java17 public WeekPicker(Context context, double minValue, double maxValue) { argument
18 super(context, minValue, maxValue);
/external/opencv/cv/src/
H A Dcvadapthresh.cpp46 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, argument
134 CV_CALL( icvAdaptiveThreshold_MeanC( src, dst, method, cvRound(maxValue),type,
45 icvAdaptiveThreshold_MeanC( const CvMat* src, CvMat* dst, int method, int maxValue, int type, int size, double delta ) argument
/external/chromium_org/third_party/WebKit/Source/platform/
H A DCalculationValue.h49 float evaluate(float maxValue) const { return pixels() + percent() / 100 * maxValue; }
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Ddenseranges.cpp106 int32_t maxValue=values[length-1]; // Assume minValue<=maxValue. local
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/guava/guava/src/com/google/common/collect/
H A DDiscreteDomain.java28 * to their specifications. The methods {@link #minValue} and {@link #maxValue}
52 * {@code value} is {@code maxValue()}
110 public C maxValue() { method in class:DiscreteDomain
H A DDiscreteDomains.java65 @Override public Integer maxValue() { method in class:DiscreteDomains.IntegerDomain
112 @Override public Long maxValue() { method in class:DiscreteDomains.LongDomain
/external/icu/icu4c/source/tools/toolutil/
H A Ddenseranges.cpp106 int32_t maxValue=values[length-1]; // Assume minValue<=maxValue. local
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/content/browser/resources/media/
H A Dtimeline_graph_view.js355 * consideration. |maxValue| is the actual maximum value, and
357 * will be at least |maxValue|. Similar for |min_|.
359 layoutLabels_: function(minValue, maxValue) {
360 if (maxValue - minValue < 1024) {
361 this.layoutLabelsBasic_(minValue, maxValue, MAX_DECIMAL_PRECISION);
371 maxValue /= 1024;
372 while (units[unit + 1] && maxValue - minValue >= 1024) {
374 maxValue /= 1024;
379 this.layoutLabelsBasic_(minValue, maxValue, MAX_DECIMAL_PRECISION);
395 layoutLabelsBasic_: function(minValue, maxValue, maxDecimalDigit
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DCountersGraph.js311 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...]
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DTimingFunction.cpp22 void LinearTimingFunction::range(double* minValue, double* maxValue) const
58 void CubicBezierTimingFunction::range(double* minValue, double* maxValue) const
107 double solutionMax = m_bezier->solve(*maxValue, std::numeric_limits<double>::epsilon());
109 *maxValue = std::max(std::max(solutionMin, solutionMax), 1.0);
111 *maxValue = std::max(std::max(*maxValue, solution1), solution2);
141 void StepsTimingFunction::range(double* minValue, double* maxValue) const
144 *maxValue = 1;
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dtimeline_graph_view.js536 * consideration. |maxValue| is the actual maximum value, and
538 * will be at least |maxValue|.
540 layoutLabels_: function(maxValue) {
542 this.layoutLabelsBasic_(maxValue, 0);
553 // Update |maxValue| to be in the right units.
554 maxValue = maxValue / 1024;
555 while (units[unit + 1] && maxValue >= 999) {
556 maxValue /= 1024;
561 this.layoutLabelsBasic_(maxValue,
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DCompositorAnimations.h56 virtual bool getAnimatedBoundingBox(FloatBox&, const AnimationEffect&, double minValue, double maxValue) const;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DPreconditions.java144 public static void checkValueArg(int valueArg, int maxValue) { argument
145 if (valueArg > maxValue) {
146 if (maxValue == 0) {
153 valueArg, maxValue));
/external/deqp/modules/glshared/
H A DglsLongStressCase.hpp67 Value maxValue; member in struct:deqp::gls::VarSpec
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; member in struct:deqp::gls::TextureSpec
176 , maxValue (maxValue_)
/external/smali/smali/src/main/java/org/jf/smali/
H A DLiteralTools.java75 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) {
/external/llvm/utils/lit/lit/
H A Dutil.py102 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/
H A DSkColorFilterImageFilter.cpp40 SkScalar maxValue = row[4] / 255; local
44 maxValue += row[i];
48 return (maxValue > 1) || (minValue < 0);
/external/skia/src/effects/
H A DSkColorFilterImageFilter.cpp40 SkScalar maxValue = row[4] / 255; local
44 maxValue += row[i];
48 return (maxValue > 1) || (minValue < 0);
/external/chromium_org/content/child/
H A Dwebthemeengine_impl_mac.cc42 trackInfo.max = scrollbarInfo.maxValue;
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DPeriodicWave.cpp209 float maxValue; local
210 vmaxmgv(data, 1, &maxValue, m_periodicWaveSize);
212 if (maxValue)
213 normalizationScale = 1.0f / maxValue;

Completed in 2005 milliseconds

1234