Home | History | Annotate | Download | only in i18n

Lines Matching refs:fFillin

170 //   : fFillin(NULL), fBundle(NULL), fFallback(NULL) {
175 : fFillin(NULL), fOtherFillin(NULL), fBundle(NULL), fFallback(NULL) {
181 fFillin = ures_getByKey(fOtherFillin, U_CALENDAR_KEY, fFillin, &status);
187 fBundle = ures_getByKeyWithFallback(fFillin, type, NULL, &status);
188 fFallback = ures_getByKeyWithFallback(fFillin, U_GREGORIAN_KEY, NULL, &status);
197 fBundle = ures_getByKeyWithFallback(fFillin, U_GREGORIAN_KEY, NULL, &status);
206 ures_close(fFillin);
219 fFillin = ures_getByKeyWithFallback(fBundle, key, fFillin, &status);
221 fprintf(stderr, "%p: get %s -> %s - from MAIN %s\n",this, key, u_errorName(status), ures_getLocale(fFillin, &status));
226 fFillin = ures_getByKeyWithFallback(fFallback, key, fFillin, &status);
228 fprintf(stderr, "%p: get %s -> %s - from FALLBACK %s\n",this, key, u_errorName(status), ures_getLocale(fFillin, &status));
231 return fFillin;
243 fFillin = ures_getByKeyWithFallback(fBundle, key, fFillin, &status);
244 fOtherFillin = ures_getByKeyWithFallback(fFillin, U_FORMAT_KEY, fOtherFillin, &status);
245 fFillin = ures_getByKeyWithFallback(fOtherFillin, subKey, fFillin, &status);
247 fprintf(stderr, "%p: get %s/format/%s -> %s - from MAIN %s\n", this, key, subKey, u_errorName(status), ures_getLocale(fFillin, &status));
252 fFillin = ures_getByKeyWithFallback(fFallback, key, fFillin, &status);
253 fOtherFillin = ures_getByKeyWithFallback(fFillin, U_FORMAT_KEY, fOtherFillin, &status);
254 fFillin = ures_getByKeyWithFallback(fOtherFillin, subKey, fFillin, &status);
256 fprintf(stderr, "%p: get %s/format/%s -> %s - from FALLBACK %s\n",this, key, subKey, u_errorName(status), ures_getLocale(fFillin,&status));
271 // /* fFillin = */ getByKey2(key, U_DEFAULT_KEY, subStatus);
272 // kw = ures_getString(fFillin, &len, &subStatus);
284 // /* fFillin = */ getByKey2(key, kwBuf, status);
293 return fFillin;
305 fFillin = ures_getByKeyWithFallback(fBundle, key, fFillin, &status);
306 fOtherFillin = ures_getByKeyWithFallback(fFillin, contextKey, fOtherFillin, &status);
307 fFillin = ures_getByKeyWithFallback(fOtherFillin, subKey, fFillin, &status);
309 fprintf(stderr, "%p: get %s/%s/%s -> %s - from MAIN %s\n", this, key, contextKey, subKey, u_errorName(status), ures_getLocale(fFillin, &status));
314 fFillin = ures_getByKeyWithFallback(fFallback, key, fFillin, &status);
315 fOtherFillin = ures_getByKeyWithFallback(fFillin, contextKey, fOtherFillin, &status);
316 fFillin = ures_getByKeyWithFallback(fOtherFillin, subKey, fFillin, &status);
318 fprintf(stderr, "%p: get %s/%s/%s -> %s - from FALLBACK %s\n",this, key, contextKey, subKey, u_errorName(status), ures_getLocale(fFillin,&status));
322 return fFillin;