HomeSort by relevance Sort by last modified time
    Searched full:minvalue (Results 1 - 25 of 119) sorted by null

1 2 3 4 5

  /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);
TwoFieldDatePickerDialog.java 46 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) {
MonthPickerDialog.java 26 protected TwoFieldDatePicker createPicker(Context context, double minValue, double maxValue) {
27 return new MonthPicker(context, minValue, 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);
TwoFieldDatePicker.java 55 public TwoFieldDatePicker(Context context, double minValue, double maxValue) {
91 if (minValue >= maxValue) {
97 mMinDate = getDateForValue(minValue);
  /external/icu/icu4c/source/common/unicode/
enumset.h 30 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/icu/icu4c/source/tools/toolutil/
denseranges.cpp 64 int32_t minValue=0;
67 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) {
68 minValue=gapStarts[i];
105 int32_t minValue=values[0];
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/ipc/
param_traits_macros.h 40 // range-checked by the IPC system to be in the range of minvalue..maxvalue
42 #define IPC_ENUM_TRAITS_MIN_MAX_VALUE(type, minvalue, maxvalue) \
43 IPC_ENUM_TRAITS_VALIDATE(type, (value >= (minvalue) && value <= (maxvalue)))
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
CountersGraph.js 312 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...]
  /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);
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
copyvertex.h 143 const int minValue = 0xFFFFFE01; // Inverse of maxValue
145 // A 10-bit two's complement number has the possibility of being minValue - 1 but
146 // OpenGL's normalization rules dictate that it should be clamped to minValue in this
148 if (finalValue < minValue)
150 finalValue = minValue;
153 const int halfRange = (maxValue - minValue) >> 1;
154 *floatOutput = ((finalValue - minValue) / halfRange) - 1.0f;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkSimpleDialog.py 176 minvalue = None, maxvalue = None,
184 self.minvalue = minvalue
223 if self.minvalue is not None and result < self.minvalue:
227 "Please try again." % self.minvalue,
322 print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkSimpleDialog.py 176 minvalue = None, maxvalue = None,
184 self.minvalue = minvalue
223 if self.minvalue is not None and result < self.minvalue:
227 "Please try again." % self.minvalue,
322 print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
  /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));
70 float minValue() const { return static_cast<float>(m_minValue); }
108 AudioParam(AudioContext* context, const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0)
113 , m_minValue(minValue)
  /external/chromium_org/third_party/angle/src/third_party/compiler/
ArrayBoundsClamper.cpp 39 const char* kIntClampDefinition = "int webgl_int_clamp(int value, int minValue, int maxValue) { return ((value < minValue) ? minValue : ((value > maxValue) ? maxValue : value)); }\n\n";
  /external/deqp/modules/gles31/functional/
es31fShaderMultisampleInterpolationStateQueryTests.cpp 51 static void verifyGreaterOrEqual (VerifierType verifier, glw::GLenum target, float minValue, Context& context)
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)
182 const glw::GLint refValue = (glw::GLint)deFloatCeil(minValue);
202 const float refValue = minValue;
222 const glw::GLint64 refValue = (glw::GLint64)deFloatCeil(minValue);
es31fIntegerStateQueryTests.cpp 161 static bool verifyMinValue (glu::CallLogWrapper& gl, glw::GLenum target, int minValue, VerifierType type)
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, VerifierType verifierType
    [all...]
  /external/chromium_org/content/browser/resources/media/
timeline_graph_view.js 359 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 / stepSize) * stepSize
    [all...]
  /external/deqp/modules/glshared/
glsLongStressCase.hpp 66 Value minValue;
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;
175 , minValue (minValue_)
  /external/guava/guava/src/com/google/common/collect/
DiscreteDomains.java 61 @Override public Integer minValue() {
108 @Override public Long minValue() {
DiscreteDomain.java 28 * to their specifications. The methods {@link #minValue} and {@link #maxValue}
63 * {@code value} is {@code minValue()}
95 public C minValue() {
  /external/chromium_org/third_party/skia/src/effects/
SkColorFilterImageFilter.cpp 41 SkScalar minValue = row[4] / 255;
46 minValue += row[i];
48 return (maxValue > 1) || (minValue < 0);
  /external/skia/src/effects/
SkColorFilterImageFilter.cpp 41 SkScalar minValue = row[4] / 255;
46 minValue += row[i];
48 return (maxValue > 1) || (minValue < 0);
  /frameworks/base/media/java/android/media/
AudioGain.java 73 int minValue, int maxValue, int defaultValue, int stepValue,
78 mMinValue = minValue;
104 public int minValue() {

Completed in 1766 milliseconds

1 2 3 4 5