Lines Matching refs:fallbackList
2480 char **fallbackList; in uloc_acceptLanguage() local
2484 …fallbackList = static_cast<char **>(uprv_malloc((size_t)(sizeof(fallbackList[0])*acceptListCount))… in uloc_acceptLanguage()
2485 if(fallbackList==NULL) { in uloc_acceptLanguage()
2509 uprv_free(fallbackList[j]); in uloc_acceptLanguage()
2511 uprv_free(fallbackList); in uloc_acceptLanguage()
2521 fallbackList[i] = uprv_strdup(tmp); in uloc_acceptLanguage()
2523 fallbackList[i]=0; in uloc_acceptLanguage()
2529 if(fallbackList[i] && ((int32_t)uprv_strlen(fallbackList[i])==maxLen)) { in uloc_acceptLanguage()
2531 fprintf(stderr,"Try: [%s]", fallbackList[i]); in uloc_acceptLanguage()
2538 if(!uprv_strcmp(fallbackList[i], l)) { in uloc_acceptLanguage()
2549 uprv_free(fallbackList[j]); in uloc_acceptLanguage()
2551 uprv_free(fallbackList); in uloc_acceptLanguage()
2557 if(uloc_getParent(fallbackList[i], tmp, UPRV_LENGTHOF(tmp), status)!=0) { in uloc_acceptLanguage()
2558 uprv_free(fallbackList[i]); in uloc_acceptLanguage()
2559 fallbackList[i] = uprv_strdup(tmp); in uloc_acceptLanguage()
2561 uprv_free(fallbackList[i]); in uloc_acceptLanguage()
2562 fallbackList[i]=0; in uloc_acceptLanguage()
2571 uprv_free(fallbackList[i]); in uloc_acceptLanguage()
2573 uprv_free(fallbackList); in uloc_acceptLanguage()