HomeSort by relevance Sort by last modified time
    Searched refs:minValue (Results 1 - 25 of 113) 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);
MonthPickerDialog.java 26 protected TwoFieldDatePicker createPicker(Context context, double minValue, double maxValue) {
27 return new MonthPicker(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) {
TwoFieldDatePicker.java 55 public TwoFieldDatePicker(Context context, double minValue, double maxValue) {
91 if (minValue >= maxValue) {
97 mMinDate = getDateForValue(minValue);
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);
  /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...]
  /frameworks/base/media/java/android/media/
AudioGain.java 73 int minValue, int maxValue, int defaultValue, int stepValue,
78 mMinValue = minValue;
104 public int minValue() {
  /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)
AudioParam.idl 34 readonly attribute float minValue;
  /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...]
  /external/guava/guava/src/com/google/common/collect/
DiscreteDomain.java 28 * to their specifications. The methods {@link #minValue} and {@link #maxValue}
63 * {@code value} is {@code minValue()}
95 public C minValue() {
DiscreteDomains.java 61 @Override public Integer minValue() {
108 @Override public Long minValue() {
  /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/deqp/modules/gles31/functional/
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...]
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);
es31fAtomicCounterTests.cpp 673 deUint32 minValue = (deUint32)-1;
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;
727 minValue = std::min(minValue, increments[valueNdx]);
736 minValue = std::min(minValue, decrements[valueNdx])
    [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/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;
  /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);
  /packages/apps/Exchange/src/com/android/exchange/adapter/
PingParser.java 155 * @param minValue The minimum value for the property we're parsing.
160 private int getValue(final String name, final int currentValue, final int minValue,
166 if (value < minValue || (maxValue > 0 && value > maxValue)) {
  /external/deqp/modules/gles3/functional/
es3fInteger64StateQueryTests.cpp 199 ConstantMinimumValue64TestCase (Context& context, StateVerifier* verifier, const char* name, const char* description, GLenum targetName, GLuint64 minValue)
202 , m_minValue (minValue)
294 GLuint64 minValue;
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)));
  /frameworks/av/media/libstagefright/yuv/
YUVImage.cpp 367 uint8_t clamp(uint8_t v, uint8_t minValue, uint8_t maxValue) {
368 CHECK(maxValue >= minValue);
370 if (v < minValue) return minValue;

Completed in 539 milliseconds

1 2 3 4 5