Searched refs:CharPerfFunction (Results 1 – 2 of 2) sorted by relevance
/external/icu/icu4c/source/test/perf/charperf/ |
D | charperf.cpp | 133 return new CharPerfFunction(isAlpha, MIN_, MAX_); in TestIsAlpha() 138 return new CharPerfFunction(isUpper, MIN_, MAX_); in TestIsUpper() 143 return new CharPerfFunction(isLower, MIN_, MAX_); in TestIsLower() 148 return new CharPerfFunction(isDigit, MIN_, MAX_); in TestIsDigit() 153 return new CharPerfFunction(isSpace, MIN_, MAX_); in TestIsSpace() 158 return new CharPerfFunction(isAlphaNumeric, MIN_, MAX_); in TestIsAlphaNumeric() 168 return new CharPerfFunction(isPrint, MIN_, MAX_); in TestIsPrint() 173 return new CharPerfFunction(isControl, MIN_, MAX_); in TestIsControl() 178 return new CharPerfFunction(toLower, MIN_, MAX_); in TestToLower() 183 return new CharPerfFunction(toUpper, MIN_, MAX_); in TestToUpper() [all …]
|
D | charperf.h | 26 class CharPerfFunction : public UPerfFunction 40 CharPerfFunction(CharPerfFn func, UChar32 min, UChar32 max) in CharPerfFunction() function
|