Home | History | Annotate | Download | only in charperf

Lines Matching refs:MIN_

70     MIN_ = 0;
81 MIN_ = atoi(options[MIN_OPTION_].value);
128 return new CharPerfFunction(isAlpha, MIN_, MAX_);
133 return new CharPerfFunction(isUpper, MIN_, MAX_);
138 return new CharPerfFunction(isLower, MIN_, MAX_);
143 return new CharPerfFunction(isDigit, MIN_, MAX_);
148 return new CharPerfFunction(isSpace, MIN_, MAX_);
153 return new CharPerfFunction(isAlphaNumeric, MIN_, MAX_);
163 return new CharPerfFunction(isPrint, MIN_, MAX_);
168 return new CharPerfFunction(isControl, MIN_, MAX_);
173 return new CharPerfFunction(toLower, MIN_, MAX_);
178 return new CharPerfFunction(toUpper, MIN_, MAX_);
183 return new CharPerfFunction(isWhiteSpace, MIN_, MAX_);
188 return new StdLibCharPerfFunction(StdLibIsAlpha, (wchar_t)MIN_,
194 return new StdLibCharPerfFunction(StdLibIsUpper, (wchar_t)MIN_,
200 return new StdLibCharPerfFunction(StdLibIsLower, (wchar_t)MIN_,
206 return new StdLibCharPerfFunction(StdLibIsDigit, (wchar_t)MIN_,
212 return new StdLibCharPerfFunction(StdLibIsSpace, (wchar_t)MIN_,
218 return new StdLibCharPerfFunction(StdLibIsAlphaNumeric, (wchar_t)MIN_,
229 return new StdLibCharPerfFunction(StdLibIsPrint, (wchar_t)MIN_,
235 return new StdLibCharPerfFunction(StdLibIsControl, (wchar_t)MIN_,
241 return new StdLibCharPerfFunction(StdLibToLower, (wchar_t)MIN_,
247 return new StdLibCharPerfFunction(StdLibToUpper, (wchar_t)MIN_,
253 return new StdLibCharPerfFunction(StdLibIsWhiteSpace, (wchar_t)MIN_,