Searched defs:minValue (Results 1 - 25 of 49) sorted by relevance

12

/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
H A DMonthPickerDialog.java26 protected TwoFieldDatePicker createPicker(Context context, double minValue, double maxValue) { argument
27 return new MonthPicker(context, minValue, maxValue);
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 DMonthPicker.java22 public MonthPicker(Context context, double minValue, double maxValue) { argument
23 super(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 DWeekPicker.java17 public WeekPicker(Context context, double minValue, double maxValue) { argument
18 super(context, minValue, maxValue);
H A DTwoFieldDatePicker.java55 public TwoFieldDatePicker(Context context, double minValue, double maxValue) { argument
91 if (minValue >= maxValue) {
97 mMinDate = getDateForValue(minValue);
/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/deqp/modules/gles31/functional/
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 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...]
/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;
/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/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/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/skia/src/effects/
H A DSkColorFilterImageFilter.cpp41 SkScalar minValue = row[4] / 255; local
46 minValue += row[i];
48 return (maxValue > 1) || (minValue < 0);
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_cocoa.h85 @property(nonatomic, readonly) NSNumber* minValue; variable
/external/chromium_org/third_party/WebKit/Source/core/animation/
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;
H A DCompositorAnimationsTest.cpp118 bool getAnimationBounds(FloatBox& boundingBox, const AnimationEffect& effect, double minValue, double maxValue) argument
120 return CompositorAnimations::instance()->getAnimatedBoundingBox(boundingBox, effect, minValue, maxValue);
/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)));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DFingerPrintGraph.java98 double minValue = Double.MAX_VALUE; field in class:FingerPrintGraph
433 long value = 0; // TODO use minValue instead
466 long value = 0; // TODO use minValue instead
577 this.minValue = Double.MAX_VALUE;
586 if (value < this.minValue) {
587 this.minValue = value;
596 if (value < this.minValue) {
597 this.minValue = value;
600 this.minValue = 0; // do not use minValue fo
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DMinMaxPriorityQueueTest.java808 int minValue) {
810 assertEquals(replicatedMinValue, (Integer) minValue);
806 removeMinFromReplica( SortedMap<Integer, AtomicInteger> replica, int minValue) argument
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DNormalizeAlgorithm.cpp333 bool getOptionalInteger(const Dictionary& raw, const char* propertyName, bool& hasProperty, double& value, double minValue, double maxValue, const ErrorContext& context, AlgorithmError* error) argument
348 if (std::isinf(number) || number < minValue || number > maxValue) {
357 bool getInteger(const Dictionary& raw, const char* propertyName, double& value, double minValue, double maxValue, const ErrorContext& context, AlgorithmError* error) argument
360 if (!getOptionalInteger(raw, propertyName, hasProperty, value, minValue, maxValue, context, error))
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttgxvar.c580 FT_ULong minValue; member in struct:fvar_axis_
650 FT_FRAME_ULONG ( minValue ),
745 a->minimum = axis_rec.minValue; /* A Fixed */
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dimage.c814 GLint minValue)
818 if (*dstX0 < minValue) {
820 ASSERT(*dstX1 > minValue); /* X1 should be inside left edge */
821 t = (GLfloat) (minValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0);
824 *dstX0 = minValue;
828 else if (*dstX1 < minValue) {
830 ASSERT(*dstX0 > minValue); /* X0 should be inside left edge */
831 t = (GLfloat) (minValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1);
834 *dstX1 = minValue;
812 clip_left_or_bottom(GLint *srcX0, GLint *srcX1, GLint *dstX0, GLint *dstX1, GLint minValue) argument
/external/freetype/src/truetype/
H A Dttgxvar.c580 FT_ULong minValue; member in struct:fvar_axis_
650 FT_FRAME_ULONG ( minValue ),
745 a->minimum = axis_rec.minValue; /* A Fixed */

Completed in 447 milliseconds

12