Home
last modified time | relevance | path

Searched refs:CharPerfFunction (Results 1 – 2 of 2) sorted by relevance

/external/icu4c/test/perf/charperf/
Dcharperf.cpp128 return new CharPerfFunction(isAlpha, MIN_, MAX_); in TestIsAlpha()
133 return new CharPerfFunction(isUpper, MIN_, MAX_); in TestIsUpper()
138 return new CharPerfFunction(isLower, MIN_, MAX_); in TestIsLower()
143 return new CharPerfFunction(isDigit, MIN_, MAX_); in TestIsDigit()
148 return new CharPerfFunction(isSpace, MIN_, MAX_); in TestIsSpace()
153 return new CharPerfFunction(isAlphaNumeric, MIN_, MAX_); in TestIsAlphaNumeric()
163 return new CharPerfFunction(isPrint, MIN_, MAX_); in TestIsPrint()
168 return new CharPerfFunction(isControl, MIN_, MAX_); in TestIsControl()
173 return new CharPerfFunction(toLower, MIN_, MAX_); in TestToLower()
178 return new CharPerfFunction(toUpper, MIN_, MAX_); in TestToUpper()
[all …]
Dcharperf.h22 class CharPerfFunction : public UPerfFunction
36 CharPerfFunction(CharPerfFn func, UChar32 min, UChar32 max) in CharPerfFunction() function