Searched refs:lMin (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/ValidationKit/testmanager/core/
H A Dbase.py259 lMin = getattr(self, 'klMin_' + sAttr, 0),
503 def validateLong(sValue, lMin = 0, lMax = None, aoNilValues = tuple([long(-1), None, '']), fAllowNull = True):
520 if lMin is not None and lValue < lMin:
521 return (lValue, 'Value too small (min %d)' % (lMin,));
766 def _validateLong(dErrors, sName, sValue, lMin = 0, lMax = None, aoNilValues = tuple([long(-1), None, ''])):
768 (sValue, sError) = ModelDataBase.validateLong(sValue, lMin, lMax, aoNilValues, fAllowNull = False);
774 def _validateLongNN(dErrors, sName, sValue, lMin = 0, lMax = None, aoNilValues = tuple([long(-1), None, ''])):
776 (sValue, sError) = ModelDataBase.validateLong(sValue, lMin, lMax, aoNilValues, fAllowNull = True);
H A Dtestboxcontroller.py213 def _getLongParam(self, sName, lMin = None, lMax = None, lDefValue = None):
217 isn't in the range defined by lMin and lMax.
226 if (lMin is not None and lValue < lMin) \
229 % (self._sAction, sName, lValue, lMin, lMax));
359 lCpuRevision = self._getLongParam( constants.tbreq.SIGNON_PARAM_CPU_REVISION, lMin = 0, lDefValue = 0); # new
/vbox/src/VBox/ValidationKit/testmanager/webui/
H A Dwuibase.py354 def getLongParam(self, sName, lMin = None, lMax = None, lDefault = None):
358 or if outside the range defined by lMin and lMax.
370 if (lMin is not None and lValue < lMin) \
373 % (self._sAction, sName, lValue, lMin, lMax));
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Ddinput.h716 LONG lMin; member in struct:DIPROPRANGE
726 LONG lMin; member in struct:DIPROPCAL
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Ddinput.h859 LONG lMin; member in struct:DIPROPRANGE
869 LONG lMin; member in struct:DIPROPCAL

Completed in 85 milliseconds