Home | History | Annotate | Download | only in common

Lines Matching refs:fp

202 template<class T> void umtx_initOnce(UInitOnce &uio, T *obj, void (T::*fp)()) {
207 (obj->*fp)();
215 inline void umtx_initOnce(UInitOnce &uio, void (*fp)()) {
220 (*fp)();
227 inline void umtx_initOnce(UInitOnce &uio, void (*fp)(UErrorCode &), UErrorCode &errCode) {
233 (*fp)(errCode);
246 template<class T> void umtx_initOnce(UInitOnce &uio, void (*fp)(T), T context) {
251 (*fp)(context);
258 template<class T> void umtx_initOnce(UInitOnce &uio, void (*fp)(T, UErrorCode &), T context, UErrorCode &errCode) {
264 (*fp)(context, errCode);