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

12

/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DWeekPickerDialog.java22 long minValue, long maxValue) {
23 this(context, 0, callBack, year, weekOfYear, minValue, maxValue);
38 long minValue, long maxValue) {
39 super(context, theme, callBack, year, weekOfYear, minValue, maxValue);
44 protected TwoFieldDatePicker createPicker(Context context, long minValue, long maxValue) { argument
45 return new WeekPicker(context, minValue, maxValue);
19 WeekPickerDialog(Context context, OnValueSetListener callBack, int year, int weekOfYear, long minValue, long maxValue) argument
33 WeekPickerDialog(Context context, int theme, OnValueSetListener callBack, int year, int weekOfYear, long minValue, long maxValue) argument
H A DMonthPickerDialog.java26 protected TwoFieldDatePicker createPicker(Context context, long minValue, long maxValue) { argument
27 return new MonthPicker(context, minValue, maxValue);
H A DMonthPicker.java21 public MonthPicker(Context context, long minValue, long maxValue) { argument
22 super(context, minValue, maxValue);
H A DWeekPicker.java16 public WeekPicker(Context context, long minValue, long maxValue) { argument
17 super(context, minValue, maxValue);
H A DTwoFieldDatePickerDialog.java50 long minValue,
52 this(context, 0, callBack, year, positionInYear, minValue, maxValue);
67 long minValue,
79 mPicker = createPicker(context, minValue, maxValue);
84 protected TwoFieldDatePicker createPicker(Context context, long minValue, long maxValue) { argument
46 TwoFieldDatePickerDialog(Context context, OnValueSetListener callBack, int year, int positionInYear, long minValue, long maxValue) argument
62 TwoFieldDatePickerDialog(Context context, int theme, OnValueSetListener callBack, int year, int positionInYear, long minValue, long maxValue) argument
H A DTwoFieldDatePicker.java53 public TwoFieldDatePicker(Context context, long minValue, long maxValue) { argument
89 if (minValue >= maxValue) {
95 mMinDate = createDateFromValue(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/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioParam.h51 static PassRefPtr<AudioParam> create(AudioContext* context, const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0) argument
53 return adoptRef(new AudioParam(context, name, defaultValue, minValue, maxValue, units));
70 float minValue() const { return static_cast<float>(m_minValue); } function in class:WebCore::AudioParam
107 AudioParam(AudioContext* context, const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0) argument
112 , m_minValue(minValue)
/external/chromium_org/third_party/skia/src/effects/
H A DSkColorFilterImageFilter.cpp40 SkScalar minValue = row[4] / 255; local
45 minValue += row[i];
47 return (maxValue > 1) || (minValue < 0);
/external/icu4c/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.cpp40 SkScalar minValue = row[4] / 255; local
45 minValue += row[i];
47 return (maxValue > 1) || (minValue < 0);
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_cocoa.h79 @property(nonatomic, readonly) NSNumber* minValue; variable
/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/freetype/src/truetype/
H A Dttgxvar.c587 FT_ULong minValue; member in struct:fvar_axis_
657 FT_FRAME_ULONG ( minValue ),
752 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 */
/external/mesa3d/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/chromium_org/third_party/WebKit/Source/core/svg/animation/
H A DSVGSMILElement.cpp690 SMILTime SVGSMILElement::minValue() const function in class:WebCore::SVGSMILElement
792 SMILTime minValue = this->minValue(); local
794 if (minValue > maxValue) {
797 minValue = 0;
800 return resolvedBegin + min(maxValue, max(minValue, preliminaryActiveDuration));
/external/chromium_org/third_party/icu/source/common/
H A Ducnvmbcs.c735 uint16_t minValue; local
746 minValue=0xf00;
749 minValue=0x800;
762 if(*stage3++>=minValue) {
3503 uint16_t value, minValue; local
3523 minValue=0x800;
3526 minValue=0xc00;
3598 if(value>=minValue) {
3680 uint16_t value, minValue; local
3700 minValue
4876 uint16_t value, minValue; local
5180 uint16_t value, minValue; local
[all...]
/external/icu4c/common/
H A Ducnvmbcs.c738 uint16_t minValue; local
749 minValue=0xf00;
752 minValue=0x800;
765 if(*stage3++>=minValue) {
3505 uint16_t value, minValue; local
3525 minValue=0x800;
3528 minValue=0xc00;
3600 if(value>=minValue) {
3682 uint16_t value, minValue; local
3702 minValue
4879 uint16_t value, minValue; local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp2404 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue(); local
2406 APInt cmpRange = maxValue - minValue;
2409 << "Low bound: " << minValue << '\n'
2422 // word without having to subtract minValue. In this case,
2427 lowBound = minValue;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.databinding_1.3.100.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...

Completed in 3226 milliseconds

12