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

/vbox/src/VBox/ValidationKit/testmanager/core/
H A Dbase.py260 lMax = getattr(self, 'klMax_' + sAttr, None));
503 def validateLong(sValue, lMin = 0, lMax = None, aoNilValues = tuple([long(-1), None, '']), fAllowNull = True):
522 elif lMax is not None and lValue > lMax:
523 return (lValue, 'Value too high (max %d)' % (lMax,));
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.
227 or (lMax is not None and lValue > lMax):
229 % (self._sAction, sName, lValue, lMin, lMax));
/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.
371 or (lMax is not None and lValue > lMax):
373 % (self._sAction, sName, lValue, lMin, lMax));
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Ddinput.h717 LONG lMax; member in struct:DIPROPRANGE
728 LONG lMax; member in struct:DIPROPCAL
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Ddinput.h860 LONG lMax; member in struct:DIPROPRANGE
871 LONG lMax; member in struct:DIPROPCAL

Completed in 85 milliseconds