| /external/lzma/CPP/Windows/Control/ | 
| ProgressBar.h | 21   LRESULT SetRange(unsigned short minValue, unsigned short maxValue) { return SendMsg(PBM_SETRANGE, 0, MAKELPARAM(minValue, maxValue)); } 22   DWORD SetRange32(int minValue, int maxValue) { return (DWORD)SendMsg(PBM_SETRANGE32, minValue, maxValue); }
 
 | 
| /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ | 
| ShadowNumberPicker.java | 15   private int maxValue; 46   public void setMaxValue(int maxValue) {
 47     this.maxValue = maxValue;
 57     return this.maxValue;
 
 | 
| /frameworks/support/leanback/src/main/java/androidx/leanback/widget/picker/ | 
| PickerColumn.java | 19  * labels.  A PickerColumn has a minValue and maxValue to choose between.  The Picker column has 39      * @param labelFormat String format to display label for value between minValue and maxValue.
 55      * Set static labels for each value, minValue maps to labels[0], maxValue maps to
 57      * @param labels Static labels for each value between minValue and maxValue.
 64      * Returns static labels for each value, minValue maps to labels[0], maxValue maps to
 75      * @param value Value between minValue and maxValue.
 101      * Get total items count between minValue and maxValue.
 102      * @return Total items count between minValue and maxValue.
 134      * @param maxValue New maximum value to set.
 136     public void setMaxValue(int maxValue) {
 [all...]
 | 
| /cts/tests/tests/media/libndkaudio/ | 
| WaveTableGenerator.cpp | 29 float* WaveTableGenerator::genSinWave(int size, float maxValue) { 30     return genSinWave(size, maxValue, new float[size]);
 33 float* WaveTableGenerator::genSinWave(int size, float maxValue, float* tbl) {
 37         tbl[index] = (float) sin(val) * maxValue;
 
 | 
| WaveTableGenerator.h | 25     static float* genSinWave(int size, float maxValue); 26     static float* genSinWave(int size, float maxValue, float* tbl);
 
 | 
| /cts/tests/app/src/android/app/cts/android/app/cts/tools/ | 
| UidImportanceListener.java | 66     public int waitForValue(int minValue, int maxValue) { 67         return waitForValue(minValue, maxValue, mDefaultWaitTime);
 70     public int waitForValue(int minValue, int maxValue, long timeout) {
 74             while (mLastValue < minValue || mLastValue > maxValue) {
 78                             + minValue + "-" + maxValue + " (cut "
 86             Log.d("XXXX", "waitForValue " + minValue + "-" + maxValue + " (cut "
 
 | 
| /external/walt/android/WALT/app/src/main/res/values/ | 
| attrs.xml | 5         <attr name="maxValue" format="integer" /> 
 | 
| /packages/inputmethods/LatinIME/java/res/xml/ | 
| prefs_screen_debug.xml | 53         latin:maxValue="100" /> <!-- percent --> 58         latin:maxValue="100" /> <!-- percent -->
 63         latin:maxValue="100" /> <!-- percent -->
 68         latin:maxValue="100" /> <!-- percent -->
 73         latin:maxValue="100" /> <!-- milliseconds -->
 78         latin:maxValue="100" /> <!-- milliseconds -->
 89         latin:maxValue="120" /> <!-- percentage -->
 
 | 
| prefs_screen_advanced.xml | 29         latin:maxValue="@integer/config_max_vibration_duration" /> 33         latin:maxValue="100" /> <!-- percent -->
 38         latin:maxValue="@integer/config_max_longpress_timeout"
 
 | 
| /developers/build/prebuilts/gradle/WearComplicationProvidersTestSuite/Wearable/src/main/java/com/example/android/wearable/wear/wearcomplicationproviderstestsuite/ | 
| RangedValueProviderService.java | 58         float maxValue = MAX_VALUES[caseValue]; 59         float value = (float) Math.random() * (maxValue - minValue) + minValue;
 66                                 .setMaxValue(maxValue)
 78                                 .setMaxValue(maxValue)
 94                                 .setMaxValue(maxValue)
 108                                 .setMaxValue(maxValue)
 
 | 
| /developers/samples/android/wearable/wear/WearComplicationProvidersTestSuite/Wearable/src/main/java/com/example/android/wearable/wear/wearcomplicationproviderstestsuite/ | 
| RangedValueProviderService.java | 58         float maxValue = MAX_VALUES[caseValue]; 59         float value = (float) Math.random() * (maxValue - minValue) + minValue;
 66                                 .setMaxValue(maxValue)
 78                                 .setMaxValue(maxValue)
 94                                 .setMaxValue(maxValue)
 108                                 .setMaxValue(maxValue)
 
 | 
| /cts/tests/autofillservice/src/android/autofillservice/cts/ | 
| Timeout.java | 45      * @param maxValue max timeout value (in ms) set by {@link #increase()}. 48      * {@code initialValue}, {@code multiplir} or {@code maxValue} are less than {@code 1},
 49      * or if {@code initialValue} is higher than {@code maxValue}
 51     public Timeout(String name, long initialValue, float multiplier, long maxValue) {
 52         if (initialValue < 1 || maxValue < 1 || initialValue > maxValue) {
 54                     "invalid initial and/or max values: " + initialValue + " and " + maxValue);
 65         mMaxValue = maxValue;
 
 | 
| /external/clang/test/CodeGenObjC/ | 
| protocols.m | 6 +(int) maxValue; 56   return [P1Object maxValue];
 
 | 
| /external/icu/icu4c/source/tools/toolutil/ | 
| denseranges.cpp | 108     int32_t maxValue=values[length-1];  // Assume minValue<=maxValue. 110     // signed-int32_t overflow of maxValue-minValue.
 111     int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1;
 115         ranges[0][1]=maxValue;
 121     // See if we can split [minValue, maxValue] into 2..capacity ranges,
 135     // the length of the [minValue..maxValue] range (maxLength).
 158     ranges[num-1][1]=maxValue;
 
 | 
| /external/opencv/cv/src/ | 
| cvadapthresh.cpp | 46                             int maxValue, int type, int size, double delta ) 60     if( maxValue < 0 )
 76     if( maxValue > 255 )
 77         maxValue = 255;
 81             tab[i] = (uchar)(i - 255 > -idelta ? maxValue : 0);
 84             tab[i] = (uchar)(i - 255 <= -idelta ? maxValue : 0);
 104 cvAdaptiveThreshold( const void *srcIm, void *dstIm, double maxValue,
 134         CV_CALL( icvAdaptiveThreshold_MeanC( src, dst, method, cvRound(maxValue),type,
 
 | 
| /frameworks/minikin/tests/unittest/ | 
| FontUtilsTest.cpp | 47     Fvar(uint32_t tag, float minValue, float defaultValue, float maxValue) 48             : tag(tag), minValue(minValue), defaultValue(defaultValue), maxValue(maxValue) {}
 53     float maxValue;
 74         head = writeU32(floatToFixed(fvar.maxValue), out.data(), head);
 
 | 
| /external/python/cpython2/Modules/_multiprocessing/ | 
| semaphore.c | 18     int maxvalue;  member in struct:__anon32729 359         /* We will only check properly the maxvalue == 1 case */
 360         if (self->maxvalue == 1) {
 384            does not rise above maxvalue. */
 387         } else if (sval >= self->maxvalue) {
 409 newsemlockobject(PyTypeObject *type, SEM_HANDLE handle, int kind, int maxvalue)
 420     self->maxvalue = maxvalue;
 429     int kind, maxvalue, value;  local
 431     static char *kwlist[] = {"kind", "value", "maxvalue", NULL}
 479  int kind, maxvalue;  local
 [all...]
 | 
| /external/python/cpython3/Modules/_multiprocessing/ | 
| semaphore.c | 19     int maxvalue;  member in struct:__anon33337 354         /* We will only check properly the maxvalue == 1 case */
 355         if (self->maxvalue == 1) {
 379            does not rise above maxvalue. */
 382         } else if (sval >= self->maxvalue) {
 404 newsemlockobject(PyTypeObject *type, SEM_HANDLE handle, int kind, int maxvalue,
 416     self->maxvalue = maxvalue;
 425     int kind, maxvalue, value, unlink;  local
 428     static char *kwlist[] = {"kind", "value", "maxvalue", "name", "unlink"
 474  int kind, maxvalue;  local
 [all...]
 | 
| /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/ | 
| VfrFormPkg.h | 386     mMinMaxStepData->u64.MaxValue = 0; 392   VOID SetMinMaxStepData (IN UINT64 MinValue, IN UINT64 MaxValue, IN UINT64 Step) {
 395       mMinMaxStepData->u64.MaxValue = MaxValue;
 401       if (MaxValue > mMinMaxStepData->u64.MaxValue) {
 402         mMinMaxStepData->u64.MaxValue = MaxValue;
 408   VOID SetMinMaxStepData (IN UINT32 MinValue, IN UINT32 MaxValue, IN UINT32 Step) {
 411       mMinMaxStepData->u32.MaxValue = MaxValue;
 [all...]
 | 
| /packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/test/ | 
| VehiclePropConfigBuilder.java | 98     public VehiclePropConfigBuilder addAreaConfig(int areaId, int minValue, int maxValue) { 102         area.maxInt32Value = maxValue;
 108     public VehiclePropConfigBuilder addAreaConfig(int areaId, float minValue, float maxValue) {
 112         area.maxFloatValue = maxValue;
 
 | 
| /cts/tests/tests/widget/assets/ | 
| multiaxis.ttx | 168       <MaxValue>1.0</MaxValue> 175       <MaxValue>1.0</MaxValue>
 182       <MaxValue>1.0</MaxValue>
 189       <MaxValue>1.0</MaxValue>
 
 | 
| /frameworks/av/services/audiopolicy/common/managerdefinitions/include/ | 
| AudioGain.h | 40     void setMaxValueInMb(int maxValue) { mGain.max_value = maxValue; } 
 | 
| /external/walt/android/WALT/app/src/main/res/xml/ | 
| preferences.xml | 56             walt:maxValue="1000" 87             walt:maxValue="1000"
 96             walt:maxValue="1000"
 105             walt:maxValue="100000"
 121             walt:maxValue="1000"
 130             walt:maxValue="1000"
 
 | 
| /external/python/cpython2/Lib/lib-tk/ | 
| tkSimpleDialog.py | 176                  minvalue = None, maxvalue = None, 185         self.maxvalue = maxvalue
 232         if self.maxvalue is not None and result > self.maxvalue:
 236                 "Please try again." % self.maxvalue,
 322     print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
 
 | 
| /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/ | 
| tkSimpleDialog.py | 176                  minvalue = None, maxvalue = None, 185         self.maxvalue = maxvalue
 232         if self.maxvalue is not None and result > self.maxvalue:
 236                 "Please try again." % self.maxvalue,
 322     print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
 
 |