Searched refs:cchMin (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/ValidationKit/testmanager/core/
H A Dbase.py275 cchMin = getattr(self, 'kcchMin_' + sAttr, 0),
284 cchMin = getattr(self, 'kcchMin_' + sAttr, 0 if fAllowNull else 1),
622 def validateWord(sValue, cchMin = 1, cchMax = 64, asValid = None, aoNilValues = tuple([None, '']), fAllowNull = True):
629 elif cchMin is not None and len(sValue) < cchMin:
630 sError = 'Too short, min %s chars' % (cchMin,);
640 def validateStr(sValue, cchMin = 0, cchMax = 4096, aoNilValues = tuple([None, '']), fAllowNull = True, fAllowUnicodeSymbols = False): # pylint: disable=C0301
645 if cchMin is not None and len(sValue) < cchMin:
646 sError = 'Too short, min %s chars' % (cchMin,);
[all...]
/vbox/src/VBox/Runtime/common/misc/
H A Dgetoptargv.cpp363 * @param cchMin The minimum size to grow with, kind of.
365 static int rtGetOptArgvToStringGrow(char **ppszCmdLine, size_t *pcbCmdLineAlloc, size_t cchMin) argument
368 while (cb < cchMin)

Completed in 45 milliseconds