Home | History | Annotate | Download | only in common

Lines Matching defs:UInitOnce

32 struct UInitOnce;
182 * UInitOnce Definitions.
189 struct UInitOnce {
201 U_COMMON_API UBool U_EXPORT2 umtx_initImplPreInit(UInitOnce &);
202 U_COMMON_API void U_EXPORT2 umtx_initImplPostInit(UInitOnce &);
204 template<class T> void umtx_initOnce(UInitOnce &uio, T *obj, void (T::*fp)()) {
217 inline void umtx_initOnce(UInitOnce &uio, void (*fp)()) {
229 inline void umtx_initOnce(UInitOnce &uio, void (*fp)(UErrorCode &), UErrorCode &errCode) {
248 template<class T> void umtx_initOnce(UInitOnce &uio, void (*fp)(T), T context) {
260 template<class T> void umtx_initOnce(UInitOnce &uio, void (*fp)(T, UErrorCode &), T context, UErrorCode &errCode) {
323 icu::UInitOnce fInitOnce;