/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 | 47 double minValue, 49 this(context, 0, callBack, year, positionInYear, minValue, maxValue); 64 double minValue, 76 mPicker = createPicker(context, minValue, maxValue); 81 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/icu4c/common/unicode/ |
enumset.h | 29 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/icu4c/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/third_party/WebKit/Source/modules/webaudio/ |
AudioParam.h | 51 static PassRefPtr<AudioParam> create(AudioContext* context, const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0) 53 return adoptRef(new AudioParam(context, name, defaultValue, minValue, maxValue, units)); 70 float minValue() const { return static_cast<float>(m_minValue); } 107 AudioParam(AudioContext* context, const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0) 112 , m_minValue(minValue)
|
AudioParam.idl | 33 readonly attribute float minValue;
|
/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() {
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
DOMCountersGraph.js | 83 * @param {number} minValue 86 setRange: function(minValue, maxValue) 88 this._range.textContent = WebInspector.UIString("[%d:%d]", minValue, maxValue); 340 var minValue; 343 if (minValue === undefined || value < minValue) 344 minValue = value; 349 counterUI.setRange(minValue, maxValue); 357 var maxYRange = maxValue - minValue; 363 var currentY = Math.round(originY + (height - (valueGetter(this._counters[this._minimumIndex]) - minValue) * yFactor)) [all...] |
/external/chromium_org/third_party/skia/src/effects/ |
SkColorFilterImageFilter.cpp | 40 SkScalar minValue = row[4] / 255; 45 minValue += row[i]; 47 return (maxValue > 1) || (minValue < 0);
|
/external/skia/src/effects/ |
SkColorFilterImageFilter.cpp | 40 SkScalar minValue = row[4] / 255; 45 minValue += row[i]; 47 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)) {
|
/packages/apps/Camera2/src/com/android/camera/ |
CameraSettings.java | 247 int minValue = Math.max(-3, (int) Math.ceil(min * step)); 249 CharSequence entries[] = new CharSequence[maxValue - minValue + 1]; 250 CharSequence entryValues[] = new CharSequence[maxValue - minValue + 1]; 251 CharSequence labels[] = new CharSequence[maxValue - minValue + 1]; 252 int[] icons = new int[maxValue - minValue + 1]; 255 for (int i = minValue; i <= maxValue; ++i) { 256 entryValues[i - minValue] = Integer.toString(Math.round(i / step)); 259 entries[i - minValue] = builder.append(i).toString(); 260 labels[i - minValue] = explabel + " " + builder.toString(); 261 icons[i - minValue] = iconIds.getResourceId(3 + i, 0) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
image.c | 814 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;
|
/external/mesa3d/src/mesa/main/ |
image.c | 814 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;
|
/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;
|
/packages/apps/Camera/src/com/android/camera/ |
CameraSettings.java | 247 int minValue = (int) FloatMath.ceil(min * step); 248 CharSequence entries[] = new CharSequence[maxValue - minValue + 1]; 249 CharSequence entryValues[] = new CharSequence[maxValue - minValue + 1]; 250 int[] icons = new int[maxValue - minValue + 1]; 253 for (int i = minValue; i <= maxValue; ++i) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
FingerPrintGraph.java | 98 double minValue = Double.MAX_VALUE; 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 for now.. [all...] |
/external/chromium_org/content/browser/accessibility/ |
browser_accessibility_cocoa.h | 79 @property(nonatomic, readonly) NSNumber* minValue;
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
V8Binding.cpp | 165 static const int8_t minValue = -128; 178 static const short minValue = -32768; 198 if (result >= LimitsTrait::minValue && result <= LimitsTrait::maxValue) 216 return enforceRange(numberObject->Value(), LimitsTrait::minValue, LimitsTrait::maxValue, ok);
|
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
NormalizeAlgorithm.cpp | 286 bool getOptionalInteger(const Dictionary& raw, const char* propertyName, bool& hasProperty, double& value, double minValue, double maxValue, const ExceptionContext& context, ExceptionState& exceptionState) 301 if (std::isinf(number) || number < minValue || number > maxValue) { 310 bool getInteger(const Dictionary& raw, const char* propertyName, double& value, double minValue, double maxValue, const ExceptionContext& context, ExceptionState& exceptionState) 313 if (!getOptionalInteger(raw, propertyName, hasProperty, value, minValue, maxValue, context, exceptionState))
|