Searched refs:lValue (Results 1 - 12 of 12) sorted by relevance
/vbox/src/VBox/ValidationKit/testmanager/core/ |
H A D | base.py | 511 lValue = long(sValue, 0); 513 lValue = long(sValue); 517 if lValue in aoNilValues: 520 if lMin is not None and lValue < lMin: 521 return (lValue, 'Value too small (min %d)' % (lMin,)); 522 elif lMax is not None and lValue > lMax: 523 return (lValue, 'Value too high (max %d)' % (lMax,)); 524 return (lValue, None);
|
H A D | testboxcontroller.py | 221 lValue = long(sValue, 0); 226 if (lMin is not None and lValue < lMin) \ 227 or (lMax is not None and lValue > lMax): 229 % (self._sAction, sName, lValue, lMin, lMax)); 230 return lValue;
|
H A D | testresults.py | 194 self.lValue = None; 210 self.lValue = aoRow[5]; 1104 def _newTestValue(self, idTestResult, idTestSet, sName, lValue, sUnit, dCounts, tsCreated = None, fCommit = False): 1150 ' lValue,\n' 1153 , ( idTestResult, idTestSet, idStrName, lValue, iUnit,) ); 1160 ' lValue,\n' 1163 , ( idTestResult, idTestSet, tsCreated, idStrName, lValue, iUnit,) ); 1443 sName = dAttribs['name'], sUnit = dAttribs['unit'], lValue = long(dAttribs['value']),
|
/vbox/src/VBox/ValidationKit/testmanager/webui/ |
H A D | wuibase.py | 365 lValue = long(sValue); 370 if (lMin is not None and lValue < lMin) \ 371 or (lMax is not None and lValue > lMax): 373 % (self._sAction, sName, lValue, lMin, lMax)); 374 return lValue;
|
H A D | wuihlpform.py | 179 def addLong(self, sName, lValue, sLabel, sExtraAttribs = ''): 181 return self.addText(sName, str(lValue), sLabel, 'long', sExtraAttribs); 183 def addLongRO(self, sName, lValue, sLabel, sExtraAttribs = ''): 185 return self.addTextRO(sName, str(lValue), sLabel, 'long', sExtraAttribs);
|
H A D | wuitestresult.py | 224 utils.formatNumber(oValue.lValue).replace(' ', ' '),
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/ |
H A D | axextend.idl | 881 HRESULT Set( [in] LONG Property, [in] LONG lValue, [in] LONG Flags); 882 HRESULT Get( [in] LONG Property, [out] LONG *lValue, [out] LONG *Flags);
|
H A D | mmsystem.h | 1484 LONG lValue; member in struct:__anon13686
|
H A D | dmusici.h | 1684 STDMETHOD(SetVariableNumber)(THIS_ WCHAR *pwszVariableName, LONG lValue, DMUS_SCRIPT_ERRORINFO *pErrorInfo) PURE;
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/ |
H A D | axextend.idl | 843 HRESULT Set( [in] LONG Property, [in] LONG lValue, [in] LONG Flags); 844 HRESULT Get( [in] LONG Property, [out] LONG *lValue, [out] LONG *Flags);
|
H A D | mmsystem.h | 1482 LONG lValue; member in struct:__anon1063
|
H A D | dmusici.h | 1688 STDMETHOD(SetVariableNumber)(THIS_ WCHAR *pwszVariableName, LONG lValue, DMUS_SCRIPT_ERRORINFO *pErrorInfo) PURE;
|
Completed in 2822 milliseconds