Lines Matching defs:subKey
234 UResourceBundle* CalendarData::getByKey2(const char *key, const char *subKey, UErrorCode& 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));
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));
262 // uprv_strcmp(subKey,U_DEFAULT_KEY)) { // avoid recursion
278 // if(*kwBuf && uprv_strcmp(kwBuf,subKey)) {
296 UResourceBundle* CalendarData::getByKey3(const char *key, const char *contextKey, const char *subKey, UErrorCode& 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));
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));