Lines Matching refs:fFillin
175 : fFillin(NULL), fOtherFillin(NULL), fBundle(NULL), fFallback(NULL) { in CalendarData()
181 fFillin = ures_getByKey(fOtherFillin, U_CALENDAR_KEY, fFillin, &status); in initData()
187 fBundle = ures_getByKeyWithFallback(fFillin, type, NULL, &status); in initData()
188 fFallback = ures_getByKeyWithFallback(fFillin, U_GREGORIAN_KEY, NULL, &status); in initData()
197 fBundle = ures_getByKeyWithFallback(fFillin, U_GREGORIAN_KEY, NULL, &status); in initData()
206 ures_close(fFillin); in ~CalendarData()
219 fFillin = ures_getByKeyWithFallback(fBundle, key, fFillin, &status); in getByKey()
221 …: get %s -> %s - from MAIN %s\n",this, key, u_errorName(status), ures_getLocale(fFillin, &status)); in getByKey()
226 fFillin = ures_getByKeyWithFallback(fFallback, key, fFillin, &status); in getByKey()
228 …t %s -> %s - from FALLBACK %s\n",this, key, u_errorName(status), ures_getLocale(fFillin, &status)); in getByKey()
231 return fFillin; in getByKey()
243 fFillin = ures_getByKeyWithFallback(fBundle, key, fFillin, &status); in getByKey2()
244 fOtherFillin = ures_getByKeyWithFallback(fFillin, U_FORMAT_KEY, fOtherFillin, &status); in getByKey2()
245 fFillin = ures_getByKeyWithFallback(fOtherFillin, subKey, fFillin, &status); in getByKey2()
247 …-> %s - from MAIN %s\n", this, key, subKey, u_errorName(status), ures_getLocale(fFillin, &status)); in getByKey2()
252 fFillin = ures_getByKeyWithFallback(fFallback, key, fFillin, &status); in getByKey2()
253 fOtherFillin = ures_getByKeyWithFallback(fFillin, U_FORMAT_KEY, fOtherFillin, &status); in getByKey2()
254 fFillin = ures_getByKeyWithFallback(fOtherFillin, subKey, fFillin, &status); in getByKey2()
256 … %s - from FALLBACK %s\n",this, key, subKey, u_errorName(status), ures_getLocale(fFillin,&status)); in getByKey2()
293 return fFillin; in getByKey2()
305 fFillin = ures_getByKeyWithFallback(fBundle, key, fFillin, &status); in getByKey3()
306 fOtherFillin = ures_getByKeyWithFallback(fFillin, contextKey, fOtherFillin, &status); in getByKey3()
307 fFillin = ures_getByKeyWithFallback(fOtherFillin, subKey, fFillin, &status); in getByKey3()
309 … MAIN %s\n", this, key, contextKey, subKey, u_errorName(status), ures_getLocale(fFillin, &status)); in getByKey3()
314 fFillin = ures_getByKeyWithFallback(fFallback, key, fFillin, &status); in getByKey3()
315 fOtherFillin = ures_getByKeyWithFallback(fFillin, contextKey, fOtherFillin, &status); in getByKey3()
316 fFillin = ures_getByKeyWithFallback(fOtherFillin, subKey, fFillin, &status); in getByKey3()
318 …ALLBACK %s\n",this, key, contextKey, subKey, u_errorName(status), ures_getLocale(fFillin,&status)); in getByKey3()
322 return fFillin; in getByKey3()