Home
last modified time | relevance | path

Searched refs:_maxValue (Results 1 – 25 of 138) sorted by relevance

123456

/dports/audio/muse-sequencer/muse-4.0.0/src/awl/
H A Dfloatentry.cpp52 _maxValue = 1.0; in FloatEntry()
72 if(_maxValue - _minValue > 0) in calcIncrement()
73 dif = _maxValue - _minValue; in calcIncrement()
75 dif = _minValue - _maxValue; in calcIncrement()
128 if (v > _maxValue) in setSValue()
129 v = _maxValue; in setSValue()
151 if(_value >= _maxValue) in incValue()
154 if(_value + inc >= _maxValue) in incValue()
156 _value = _maxValue; in incValue()
364 if (_value > _maxValue) in updateValue()
[all …]
H A Daslider.cpp43 _maxValue = 1.0; in AbstractSlider()
138 else if (_value > _maxValue) in wheelEvent()
139 _value = _maxValue; in wheelEvent()
154 case Qt::Key_End: _value = _maxValue; break; in keyPressEvent()
166 else if (_value > _maxValue) in keyPressEvent()
167 _value = _maxValue; in keyPressEvent()
255 _maxValue = fast_log10(val) * 20.0f; in setMaxLogValue()
257 else _maxValue = val; in setMaxLogValue()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Metadata/Edm/
H A DFacetDescription.cs39 _maxValue = maxValue; in FacetDescription()
55 … UpdateMinMaxValueForConstant(_facetName, _facetType, ref _minValue, ref _maxValue, _defaultValue); in FacetDescription()
90 _maxValue = maxValue; in FacetDescription()
100 private readonly int? _maxValue; field in System.Data.Metadata.Edm.FacetDescription
158 return _maxValue;
322 if ((_minValue.HasValue != _maxValue.HasValue) || in Validate()
323 (_minValue.HasValue && _minValue.Value != _maxValue.Value)) in Validate()
330 else if (!_minValue.HasValue || !_maxValue.HasValue) in Validate()
334 else if (_minValue.Value == _maxValue) in Validate()
338 else if (_minValue < 0 || _maxValue < 0) in Validate()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/bladerunner/ui/
H A Dui_slider.cpp57 _maxValue = MAX(0, maxValue); in UISlider()
58 _value = CLIP(value, 0, _maxValue - 1); in UISlider()
93 if (_maxValue <= 1) { in draw()
96 sliderX = _rect.left + ((_value * _rect.width()) / (_maxValue - 1)); in draw()
100 int sliderValue = ((_maxValue - 1) * (_mouseX - _rect.left)) / _rect.width(); in draw()
101 sliderX = _rect.left + ((sliderValue * _rect.width()) / (_maxValue - 1)); in draw()
156 _value = ((_maxValue - 1) * (_mouseX - _rect.left)) / _rect.width(); in handleMouseUp()
158 _value = CLIP(_value, 0, _maxValue - 1); in handleMouseUp()
169 _value = CLIP(value, 0, _maxValue - 1); in setValue()
/dports/games/scummvm/scummvm-2.5.1/engines/bladerunner/ui/
H A Dui_slider.cpp57 _maxValue = MAX(0, maxValue); in UISlider()
58 _value = CLIP(value, 0, _maxValue - 1); in UISlider()
95 if (_maxValue <= 1) { in draw()
98 sliderX = _rect.left + ((_value * _rect.width()) / (_maxValue - 1)); in draw()
102 int sliderValue = ((_maxValue - 1) * (_mouseX - _rect.left)) / _rect.width(); in draw()
103 sliderX = _rect.left + ((sliderValue * _rect.width()) / (_maxValue - 1)); in draw()
158 _value = ((_maxValue - 1) * (_mouseX - _rect.left)) / _rect.width(); in handleMouseUp()
160 _value = CLIP(_value, 0, _maxValue - 1); in handleMouseUp()
171 _value = CLIP(value, 0, _maxValue - 1); in setValue()
/dports/x11-toolkits/ctk/CTK-2018-10-29/Plugins/org.commontk.metatype/
H A DctkAttributeDefinitionImpl.cpp38 _dataType(type), _minValue(min), _maxValue(max), _isRequired(isRequired), in ctkAttributeDefinitionImpl()
185 _maxValue = maxValue; in setMaxValue()
200 if ((_minValue.isNull()) && (_maxValue.isNull())) in validate()
266 else if (!_maxValue.isNull() && value.length() > _maxValue.toInt()) in validateRange()
279 else if (!_maxValue.isNull() && longVal > _maxValue.toLongLong()) in validateRange()
292 else if (!_maxValue.isNull() && intVal > _maxValue.toInt()) in validateRange()
305 else if (!_maxValue.isNull() && charVal > _maxValue.toChar()) in validateRange()
318 else if (!_maxValue.isNull() && doubleVal > _maxValue.toDouble()) in validateRange()
/dports/games/scummvm/scummvm-2.5.1/engines/gob/minigames/geisha/
H A Dmeter.cpp36 _backColor(backColor), _value(0), _maxValue(maxValue), _direction(direction), in Meter()
46 return _maxValue; in getMaxValue()
54 value = CLIP<int32>(value, 0, _maxValue); in setValue()
63 setValue(_maxValue); in setMaxValue()
70 int32 overflow = MAX<int32>(0, (_value + n) - _maxValue); in increase()
72 int32 value = CLIP<int32>(_value + n, 0, _maxValue); in increase()
88 int32 value = CLIP<int32>(_value - n, 0, _maxValue); in decrease()
122 int32 n = (int32)floor((((float) _width) / _maxValue * _value) + 0.5); in update()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/gob/minigames/geisha/
H A Dmeter.cpp36 _backColor(backColor), _value(0), _maxValue(maxValue), _direction(direction), in Meter()
46 return _maxValue; in getMaxValue()
54 value = CLIP<int32>(value, 0, _maxValue); in setValue()
63 setValue(_maxValue); in setMaxValue()
70 int32 overflow = MAX<int32>(0, (_value + n) - _maxValue); in increase()
72 int32 value = CLIP<int32>(_value + n, 0, _maxValue); in increase()
88 int32 value = CLIP<int32>(_value - n, 0, _maxValue); in decrease()
122 int32 n = (int32)floor((((float) _width) / _maxValue * _value) + 0.5); in update()
/dports/audio/musescore/MuseScore-3.6.1/awl/
H A Daslider.cpp35 _maxValue = 1.0; in AbstractSlider()
133 else if (_value > _maxValue) in wheelEvent()
134 _value = _maxValue; in wheelEvent()
148 case Qt::Key_End: _value = _maxValue; break; in keyPressEvent()
162 else if (_value > _maxValue) in keyPressEvent()
163 _value = _maxValue; in keyPressEvent()
280 _maxValue = fast_log10(val) * 20.0f; in setMaxLogValue()
283 _maxValue = val; in setMaxLogValue()
294 _maxValue = f.max();
296 _lineStep = (_maxValue - _minValue) * 0.1;
H A Dstyledslider.cpp57 value = qBound(_minValue, value, _maxValue); in wheelEvent()
111 double dy = dPixY * (_maxValue - _minValue) / barLength; in mouseMoveEvent()
113 double val = qBound(_minValue, mouseDownVal - dy, _maxValue); in mouseMoveEvent()
137 double span = (_value - _minValue) / (_maxValue - _minValue); in paintEvent()
244 if (v == _maxValue) in setMaxValue()
246 _maxValue = v; in setMaxValue()
/dports/graphics/py-pandana/pandana-0.6.1/src/contraction_hierarchies/src/DataStructures/
H A DPercent.h43 _maxValue = maxValue;
45 _intervalPercent = _maxValue / 100;
55 printPercent( currentValue / (double)_maxValue * 100 ); in printStatus()
57 if (currentValue + 1 == _maxValue) in printStatus()
69 unsigned _maxValue; variable
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/orm/lib/Doctrine/ORM/Id/
H A DSequenceGenerator.php55 private $_maxValue = null; variable in Doctrine\\ORM\\Id\\SequenceGenerator
74 if ($this->_maxValue === null || $this->_nextValue == $this->_maxValue) {
81 $this->_maxValue = $this->_nextValue + $this->_allocationSize;
94 return $this->_maxValue;
H A DTableGenerator.php58 private $_maxValue; variable in Doctrine\\ORM\\Id\\TableGenerator
78 if ($this->_maxValue === null || $this->_nextValue == $this->_maxValue) {
89 $this->_maxValue = $this->_nextValue + $this->_allocationSize;
/dports/finance/prestashop/prestashop/vendor/doctrine/orm/lib/Doctrine/ORM/Id/
H A DSequenceGenerator.php55 private $_maxValue = null; variable in Doctrine\\ORM\\Id\\SequenceGenerator
74 if ($this->_maxValue === null || $this->_nextValue == $this->_maxValue) {
81 $this->_maxValue = $this->_nextValue + $this->_allocationSize;
94 return $this->_maxValue;
H A DTableGenerator.php58 private $_maxValue; variable in Doctrine\\ORM\\Id\\TableGenerator
78 if ($this->_maxValue === null || $this->_nextValue == $this->_maxValue) {
89 $this->_maxValue = $this->_nextValue + $this->_allocationSize;
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/JEGA/Utilities/include/inline/
H A DDesignValueMap.hpp.inl115 return this->_maxValue;
243 if(val > this->_maxValue) this->_maxValue = val;
277 const bool wasMax = (value == this->_maxValue);
289 this->_maxValue = value;
309 if(value > this->_maxValue) this->_maxValue = value;
327 bool wasMax = (val == this->_maxValue);
362 this->_maxValue = MIN_POSSIBLE;
370 if(value > this->_maxValue) this->_maxValue = value;
395 _maxValue(MIN_POSSIBLE),
407 _maxValue(copy._maxValue),
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/wx/lib/agw/
H A Dpeakmeter.py341 self._maxValue = 100 # Max Range 80-100
391 pm = PeakMeterData(self._maxValue, self._maxValue, self._speed)
476 self._maxValue = maxVal
482 return self._minValue, self._medValue, self._maxValue
615 decValue = self._maxValue//self._ledBands
729 minHorzLimit = self._minValue*horzBands//self._maxValue
730 medHorzLimit = self._medValue*horzBands//self._maxValue
745 horzLimit = self._value*horzBands//self._maxValue
807 minVertLimit = self._minValue*vertBands//self._maxValue
822 vertLimit = self._value*vertBands//self._maxValue
[all …]
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/textLayout/src/flashx/textLayout/property/
H A DNumberPropertyHandler.as24 private var _maxValue:Number;
30 _maxValue = maxValue;
37 { return _maxValue; }
55 if (checkUpperLimit() && newNumber > _maxValue)
64 if (checkUpperLimit() && val > _maxValue)
65 return _maxValue;
/dports/biology/canu/canu-2.2/src/meryl/src/meryl-analyze/
H A Dmeryl-analyze.C36 _maxValue = maxValue; in denseHistogram()
38 _smallestV = _maxValue; in denseHistogram()
54 (value <= _maxValue)) { in insert()
64 (value <= _maxValue)) in report()
72 V _maxValue; variable
98 _maxValue = maxValue; in initialize()
100 _smallestV = _maxValue; in initialize()
109 (value <= _maxValue)) { in insert()
119 (value <= _maxValue) && in report()
128 V _maxValue; variable
/dports/devel/libpololu-avr/libpololu-avr-151002/src/PololuQTRSensors/
H A DPololuQTRSensors.cpp204 sensor_values[i] += _maxValue - off_values[i]; in read()
241 calibratedMinimumOn[i] = _maxValue; in resetCalibration()
243 calibratedMinimumOff[i] = _maxValue; in resetCalibration()
306 (*calibratedMinimum)[i] = _maxValue; in calibrateOnOrOff()
376 calmin = _maxValue; in readCalibrated()
378 …calmin = calibratedMinimumOn[i] + _maxValue - calibratedMinimumOff[i]; // this won't go past _maxV… in readCalibrated()
381 calmax = _maxValue; in readCalibrated()
528 _maxValue = timeout; in init()
612 while (time < _maxValue) in readPrivate()
648 sensor_values[i] = _maxValue; in readPrivate()
[all …]
/dports/cad/openfpgaloader/openFPGALoader-0.6.1/src/
H A DprogressBar.cpp14 bool quiet): _mess(mess), _maxValue(maxValue), in ProgressBar()
38 float percent = ((float)value * 100.0f)/(float)_maxValue; in display()
55 display(_maxValue, true); in done()
64 display(_maxValue, true); in fail()
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/include/osgTerrain/
H A DValidDataOperator37 _maxValue(maxValue) {}
42 _maxValue = maxValue;
48 void setMaxValue(float maxValue) { _maxValue = maxValue; }
49 float getMaxValue() const { return _maxValue; }
51 virtual bool operator() (float value) const { return value>=_minValue && value<=_maxValue; }
53 float _minValue, _maxValue;
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/include/osgTerrain/
H A DValidDataOperator37 _maxValue(maxValue) {}
42 _maxValue = maxValue;
48 void setMaxValue(float maxValue) { _maxValue = maxValue; }
49 float getMaxValue() const { return _maxValue; }
51 virtual bool operator() (float value) const { return value>=_minValue && value<=_maxValue; }
53 float _minValue, _maxValue;
/dports/x11-toolkits/gnustep-gui/libs-gui-gui-0_28_0/Source/
H A DNSProgressIndicator.m63 _maxValue = 100.0;
210 if (aValue > _maxValue)
211 aValue = _maxValue;
240 return _maxValue;
245 if (_maxValue != newMaximum)
247 _maxValue = newMaximum;
248 if (_maxValue < _doubleValue)
249 _doubleValue = _maxValue;
349 else if (_doubleValue > _maxValue)
375 [newInd setMaxValue:_maxValue];
[all …]
/dports/multimedia/avidemux-qt5/avidemux_2.7.6/avidemux_plugins/ADM_scriptEngines/qtScript/src/
H A DSpinBoxControl.cpp9 this->_maxValue = maxValue; in SpinBoxControl()
40 …diaElemInteger(&this->_value, this->_title.toUtf8().constData(), this->_minValue, this->_maxValue); in createControl()
50 return this->_maxValue; in getMaximumValue()
65 this->_maxValue = value; in setMaximumValue()

123456