Lines Matching defs:fn
94 Func fn;
102 CmdKeyGen(UErrorCode, UCollator * col,DWORD win_langid, int32_t count, DataIndex * data,Func fn,int32_t)
103 :col(col),win_langid(win_langid), count(count), data(data), fn(fn){}
109 (this->*fn)(i);
143 Func fn;
147 CmdIter(UErrorCode & status, UCollator * col, int32_t count, CA_uchar *data, Func fn, int32_t,int32_t)
148 :count(count), data(data), fn(fn){
163 (this->*fn)(status, i);
192 Func fn;
213 fn = &CmdIterAll::icu_forward_all;
215 fn = &CmdIterAll::icu_backward_all;
221 (this->*fn)(status);
350 Func fn;
357 CmdQsort(UErrorCode & status,void *theBase, int32_t num, int32_t width, Func fn, int32_t,int32_t)
358 :backup(theBase),num(num),width(width),fn(fn){
385 qsort(base, num, width, fn);
407 Func fn;
410 CmdBinSearch(UErrorCode, UCollator * col,DWORD win_langid,int32_t count,DataIndex * rnd,DataIndex * ord,Func fn)
411 :col(col),win_langid(win_langid), count(count), rnd(rnd), ord(ord), fn(fn),exec_count(0){}
432 r = (this->*fn)(random, guess);