Searched refs:minValue (Results 1 - 25 of 70) sorted by relevance

123

/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.java46 double minValue,
48 this(context, 0, callBack, year, positionInYear, minValue, maxValue);
63 double minValue,
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) {
97 mMinDate = getDateForValue(minValue);
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/chromium_org/third_party/icu/source/common/unicode/
H A Denumset.h29 template<typename T, uint32_t minValue, uint32_t limitValue>
33 inline EnumSet(const EnumSet<T,minValue,limitValue>& other) : fBools(other.fBools) {}
41 inline UBool isValidEnum(T toCheck) const { return (toCheck>=minValue&&toCheck<limitValue); }
43 inline const EnumSet<T,minValue,limitValue>& operator=(const EnumSet<T,minValue,limitValue>& other) {
53 inline uint32_t flag(T toCheck) const { return (1<<(toCheck-minValue)); }
/external/icu/icu4c/source/common/unicode/
H A Denumset.h30 template<typename T, uint32_t minValue, uint32_t limitValue>
34 inline EnumSet(const EnumSet<T,minValue,limitValue>& other) : fBools(other.fBools) {}
43 inline UBool isValidEnum(T toCheck) const { return (toCheck>=minValue&&toCheck<limitValue); }
45 inline const EnumSet<T,minValue,limitValue>& operator=(const EnumSet<T,minValue,limitValue>& other) {
56 inline uint32_t flag(T toCheck) const { return (1<<(toCheck-minValue)); }
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Ddenseranges.cpp64 int32_t minValue=0; local
67 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) {
68 minValue=gapStarts[i];
105 int32_t minValue=values[0]; local
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;
112 ranges[0][0]=minValue;
119 // See if we can split [minValue, maxValue] into 2..capacity ranges,
123 int32_t expectedValue=minValue;
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Ddenseranges.cpp64 int32_t minValue=0; local
67 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) {
68 minValue=gapStarts[i];
105 int32_t minValue=values[0]; local
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;
112 ranges[0][0]=minValue;
119 // See if we can split [minValue, maxValue] into 2..capacity ranges,
123 int32_t expectedValue=minValue;
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DCountersGraph.js312 var minValue;
315 if (minValue === undefined || value < minValue)
316 minValue = value;
320 minValue = minValue || 0;
325 minValue = Math.min(minValue, this._limitValue);
327 return { min: minValue, max: maxValue };
404 * @param {number} minValue
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DDiscreteDomain.java28 * to their specifications. The methods {@link #minValue} and {@link #maxValue}
63 * {@code value} is {@code minValue()}
95 public C minValue() { method in class:DiscreteDomain
H A DDiscreteDomains.java61 @Override public Integer minValue() { method in class:DiscreteDomains.IntegerDomain
108 @Override public Long minValue() { method in class:DiscreteDomains.LongDomain
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DTimingFunction.cpp22 void LinearTimingFunction::range(double* minValue, double* maxValue) const argument
58 void CubicBezierTimingFunction::range(double* minValue, double* maxValue) const argument
106 double solutionMin = m_bezier->solve(*minValue, std::numeric_limits<double>::epsilon());
108 *minValue = std::min(std::min(solutionMin, solutionMax), 0.0);
110 *minValue = std::min(std::min(*minValue, solution1), solution2);
141 void StepsTimingFunction::range(double* minValue, double* maxValue) const argument
143 *minValue = 0;
H A DTimingFunction.h60 virtual void range(double* minValue, double* maxValue) const = 0;
86 virtual void range(double* minValue, double* maxValue) const OVERRIDE;
143 virtual void range(double* minValue, double* maxValue) const OVERRIDE;
209 virtual void range(double* minValue, double* maxValue) const OVERRIDE;
/external/chromium_org/content/browser/resources/media/
H A Dtimeline_graph_view.js359 layoutLabels_: function(minValue, maxValue) {
360 if (maxValue - minValue < 1024) {
361 this.layoutLabelsBasic_(minValue, maxValue, MAX_DECIMAL_PRECISION);
370 minValue /= 1024;
372 while (units[unit + 1] && maxValue - minValue >= 1024) {
373 minValue /= 1024;
379 this.layoutLabelsBasic_(minValue, maxValue, MAX_DECIMAL_PRECISION);
395 layoutLabelsBasic_: function(minValue, maxValue, maxDecimalDigits) {
397 var range = maxValue - minValue;
452 this.min_ = Math.floor(minValue / stepSiz
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fIntegerStateQueryTests.cpp161 static bool verifyMinValue (glu::CallLogWrapper& gl, glw::GLenum target, int minValue, VerifierType type) argument
177 else if (minValue > 0 && value == GL_FALSE)
198 else if (value < minValue)
200 gl.getLog() << tcu::TestLog::Message << "Expected greater or equal to " << minValue << ", got " << value << tcu::TestLog::EndMessage;
219 else if (value < minValue)
221 gl.getLog() << tcu::TestLog::Message << "Expected greater or equal to " << minValue << ", got " << value << tcu::TestLog::EndMessage;
240 else if (value < minValue)
242 gl.getLog() << tcu::TestLog::Message << "Expected greater or equal to " << minValue << ", got " << value << tcu::TestLog::EndMessage;
441 MaxSamplesCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, VerifierType verifierType);
450 MaxSamplesCase::MaxSamplesCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, VerifierTyp argument
553 MinimumValueCase(Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, VerifierType verifierType) argument
586 AlignmentCase(Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, VerifierType verifierType) argument
[all...]
H A Des31fShaderMultisampleInterpolationStateQueryTests.cpp51 static void verifyGreaterOrEqual (VerifierType verifier, glw::GLenum target, float minValue, Context& context) argument
85 const glw::GLint refValue = (glw::GLint)deFloatFloor(minValue);
105 const float refValue = minValue;
125 const glw::GLint64 refValue = (glw::GLint64)deFloatFloor(minValue);
148 static void verifyLessOrEqual (VerifierType verifier, glw::GLenum target, float minValue, Context& context) argument
182 const glw::GLint refValue = (glw::GLint)deFloatCeil(minValue);
202 const float refValue = minValue;
222 const glw::GLint64 refValue = (glw::GLint64)deFloatCeil(minValue);
H A Des31fAtomicCounterTests.cpp673 deUint32 minValue = (deUint32)-1; local
682 minValue = std::min(minValue, values[valueNdx]);
687 counts.resize(maxValue - minValue + 1, 0);
692 counts[values[valueNdx] - minValue]++;
700 log << TestLog::Message << "Value " << (minValue + countNdx) << " is not unique. Returned " << counts[countNdx] << " times." << TestLog::EndMessage;
720 deUint32 minValue = 0xFFFFFFFFu; local
727 minValue = std::min(minValue, increments[valueNdx]);
736 minValue
[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;
H A DCompositorAnimations.cpp76 bool CompositorAnimations::getAnimatedBoundingBox(FloatBox& box, const AnimationEffect& effect, double minValue, double maxValue) const argument
85 minValue = std::min(minValue, 0.0);
112 min = minValue / frameLength;
/external/deqp/modules/glshared/
H A DglsLongStressCase.hpp66 Value minValue; member in struct:deqp::gls::VarSpec
78 minValue.f[0] = minValue_;
86 vecToArr(minValue_, minValue.f);
94 matToArr(minValue_, minValue.f);
101 minValue.i[0] = minValue_;
109 vecToArr(minValue_, minValue.i);
146 tcu::Vec4 minValue; member in struct:deqp::gls::TextureSpec
175 , minValue (minValue_)
/external/chromium_org/third_party/skia/src/effects/
H A DSkColorFilterImageFilter.cpp41 SkScalar minValue = row[4] / 255; local
46 minValue += row[i];
48 return (maxValue > 1) || (minValue < 0);
/external/skia/src/effects/
H A DSkColorFilterImageFilter.cpp41 SkScalar minValue = row[4] / 255; local
46 minValue += row[i];
48 return (maxValue > 1) || (minValue < 0);
/external/deqp/modules/gles3/functional/
H A Des3fInteger64StateQueryTests.cpp199 ConstantMinimumValue64TestCase (Context& context, StateVerifier* verifier, const char* name, const char* description, GLenum targetName, GLuint64 minValue) argument
202 , m_minValue (minValue)
294 GLuint64 minValue; member in struct:deqp::gles3::Functional::LimitedStateInteger64
306 FOR_EACH_VERIFIER(verifiers, addChild(new ConstantMinimumValue64TestCase(m_context, verifier, (std::string(implementationLimits[testNdx].name) + verifier->getTestNamePostfix()).c_str(), implementationLimits[testNdx].description, implementationLimits[testNdx].targetName, implementationLimits[testNdx].minValue)));

Completed in 7697 milliseconds

123