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

123

/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DWeekPickerDialog.java22 long minValue, long maxValue) {
23 this(context, 0, callBack, year, weekOfYear, minValue, maxValue);
38 long minValue, long maxValue) {
39 super(context, theme, callBack, year, weekOfYear, minValue, maxValue);
44 protected TwoFieldDatePicker createPicker(Context context, long minValue, long maxValue) { argument
45 return new WeekPicker(context, minValue, maxValue);
19 WeekPickerDialog(Context context, OnValueSetListener callBack, int year, int weekOfYear, long minValue, long maxValue) argument
33 WeekPickerDialog(Context context, int theme, OnValueSetListener callBack, int year, int weekOfYear, long minValue, long maxValue) argument
H A DTwoFieldDatePickerDialog.java51 long maxValue) {
52 this(context, 0, callBack, year, positionInYear, minValue, maxValue);
68 long maxValue) {
79 mPicker = createPicker(context, minValue, maxValue);
84 protected TwoFieldDatePicker createPicker(Context context, long minValue, long maxValue) { argument
46 TwoFieldDatePickerDialog(Context context, OnValueSetListener callBack, int year, int positionInYear, long minValue, long maxValue) argument
62 TwoFieldDatePickerDialog(Context context, int theme, OnValueSetListener callBack, int year, int positionInYear, long minValue, long maxValue) argument
H A DMonthPickerDialog.java26 protected TwoFieldDatePicker createPicker(Context context, long minValue, long maxValue) { argument
27 return new MonthPicker(context, minValue, maxValue);
H A DTwoFieldDatePicker.java53 public TwoFieldDatePicker(Context context, long minValue, long maxValue) { argument
89 if (minValue >= maxValue) {
96 mMaxDate = createDateFromValue(maxValue);
H A DMonthPicker.java21 public MonthPicker(Context context, long minValue, long maxValue) { argument
22 super(context, minValue, maxValue);
H A DWeekPicker.java16 public WeekPicker(Context context, long minValue, long maxValue) { argument
17 super(context, minValue, maxValue);
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DCalculationValue.cpp38 float CalcExpressionBinaryOperation::evaluate(float maxValue) const
40 float left = m_leftSide->evaluate(maxValue);
41 float right = m_rightSide->evaluate(maxValue);
63 float CalculationValue::evaluate(float maxValue) const
65 float result = m_value->evaluate(maxValue);
H A DCalculationValue.h75 virtual float evaluate(float maxValue) const = 0;
87 float evaluate(float maxValue) const;
150 virtual float evaluate(float maxValue) const
152 return floatValueForLength(m_length, maxValue);
208 virtual float evaluate(float maxValue) const
210 return (1.0f - m_progress) * floatValueForLength(m_from, maxValue) + m_progress * floatValueForLength(m_to, 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/public/platform/mac/
H A DWebThemeEngine.h67 int maxValue; member in struct:WebKit::WebThemeEngine::ScrollbarInfo
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioParam.h51 static PassRefPtr<AudioParam> create(AudioContext* context, const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0) argument
53 return adoptRef(new AudioParam(context, name, defaultValue, minValue, maxValue, units));
71 float maxValue() const { return static_cast<float>(m_maxValue); } function in class:WebCore::AudioParam
107 AudioParam(AudioContext* context, const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0) argument
113 , m_maxValue(maxValue)
H A DAudioParam.idl34 readonly attribute float maxValue;
/external/chromium_org/content/browser/resources/media/
H A Dtimeline_graph_view.js346 * consideration. |maxValue| is the actual maximum value, and
348 * will be at least |maxValue|.
350 layoutLabels_: function(maxValue) {
351 if (maxValue < 1024) {
352 this.layoutLabelsBasic_(maxValue, 0);
361 maxValue /= 1024;
362 while (units[unit + 1] && maxValue >= 1024) {
363 maxValue /= 1024;
368 this.layoutLabelsBasic_(maxValue, 1);
383 layoutLabelsBasic_: function(maxValue, maxDecimalDigit
[all...]
/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/icu4c/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/third_party/WebKit/Source/devtools/front_end/
H A DDOMCountersGraph.js85 * @param {number} maxValue
87 setRange: function(minValue, maxValue)
89 this._range.textContent = WebInspector.UIString("[ %d - %d ]", minValue, maxValue);
275 var maxValue;
281 if (maxValue === undefined || value > maxValue)
282 maxValue = value;
285 counterUI.setRange(minValue, maxValue);
293 var maxYRange = maxValue - minValue;
/external/llvm/utils/lit/lit/
H A DUtil.py100 maxValue = max([v for _,v in items])
103 power = int(math.ceil(math.log(maxValue, 10)))
106 N = int(math.ceil(maxValue / barH))
114 bin = min(int(N * v/maxValue), N-1)
125 pDigits = int(math.ceil(math.log(maxValue, 10)))
/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/skia/src/core/
H A DSkAntiRun.h41 * middleCount pixels with value += maxValue
49 U8CPU maxValue, int offsetX);
/external/skia/src/core/
H A DSkAntiRun.h41 * middleCount pixels with value += maxValue
49 U8CPU maxValue, int offsetX);
/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/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
H A Daggregate_results.js157 var maxValue = 0;
159 maxValue = Math.max(maxValue, Math.max.apply(null, filteredValues(values[expectation], desiredNumberOfPoints)));
168 chartData += (chartData ? ',' : 'e:') + extendedEncode(filteredValues(values[expectation], desiredNumberOfPoints).reverse(), maxValue);
178 "|&chxr=0," + startRevision + "," + endRevision + "|2,0," + maxValue + "&chtt=" + title;
/external/chromium_org/third_party/skia/src/effects/
H A DSkColorFilterImageFilter.cpp39 SkScalar maxValue = row[4] / 255; local
43 maxValue += row[i];
47 return (maxValue > 1) || (minValue < 0);
/external/skia/src/effects/
H A DSkColorFilterImageFilter.cpp39 SkScalar maxValue = row[4] / 255; local
43 maxValue += row[i];
47 return (maxValue > 1) || (minValue < 0);

Completed in 294 milliseconds

123