strsrchperf.h | 20 typedef void (*StrSrchFn) (BoyerMooreSearch * bms, const UChar *src, int32_t srcLen, const UChar *pttrn, int32_t pttrnLen, UErrorCode *status); 33 BoyerMooreSearch *bms; member in class:StringSearchPerfFunction 41 (*fn)(bms, src, srcLen, pttrn, pttrnLen, status); 62 bms = search; 84 BoyerMooreSearch *bms; member in class:StringSearchPerformanceTest 101 void ICUForwardSearch(BoyerMooreSearch *bms, const UChar *source, int32_t sourceLen, const UChar *pattern, int32_t patternLen, UErrorCode * /*status*/) { 104 while (bms->search(offset, start, end)) { 109 void ICUBackwardSearch(BoyerMooreSearch *bms, const UChar *source, int32_t sourceLen, const UChar *pattern, int32_t patternLen, UErrorCode * /*status*/) { 113 while (bms->search(offset, start, end)) {
|