Home | History | Annotate | Download | only in i18n

Lines Matching refs:uld

55    ULocaleData *uld;
61 uld = (ULocaleData *)uprv_malloc(sizeof(ULocaleData));
62 if (uld == NULL) {
67 uld->langBundle = NULL;
69 uld->noSubstitute = FALSE;
70 uld->bundle = ures_open(NULL, localeID, status);
71 uld->langBundle = ures_open(U_ICUDATA_LANG, localeID, status);
74 uprv_free(uld);
78 return uld;
82 ulocdata_close(ULocaleData *uld)
84 if ( uld != NULL ) {
85 ures_close(uld->langBundle);
86 ures_close(uld->bundle);
87 uprv_free(uld);
92 ulocdata_setNoSubstitute(ULocaleData *uld, UBool setting)
94 uld->noSubstitute = setting;
98 ulocdata_getNoSubstitute(ULocaleData *uld)
100 return uld->noSubstitute;
104 ulocdata_getExemplarSet(ULocaleData *uld, USet *fillIn,
118 exemplarChars = ures_getStringByKey(uld->bundle, exemplarSetTypes[extype], &len, &localStatus);
119 if ( (localStatus == U_USING_DEFAULT_WARNING) && uld->noSubstitute ) {
142 ulocdata_getDelimiter(ULocaleData *uld, ULocaleDataDelimiterType type,
160 delimiterBundle = ures_getByKey(uld->bundle, "delimiters", NULL, &localStatus);
162 if ( (localStatus == U_USING_DEFAULT_WARNING) && uld->noSubstitute ) {
178 if ( (localStatus == U_USING_DEFAULT_WARNING) && uld->noSubstitute ) {
276 ulocdata_getLocaleDisplayPattern(ULocaleData *uld,
288 patternBundle = ures_getByKey(uld->langBundle, "localeDisplayPattern", NULL, &localStatus);
290 if ( (localStatus == U_USING_DEFAULT_WARNING) && uld->noSubstitute ) {
306 if ( (localStatus == U_USING_DEFAULT_WARNING) && uld->noSubstitute ) {
324 ulocdata_getLocaleSeparator(ULocaleData *uld,
340 separatorBundle = ures_getByKey(uld->langBundle, "localeDisplayPattern", NULL, &localStatus);
342 if ( (localStatus == U_USING_DEFAULT_WARNING) && uld->noSubstitute ) {
358 if ( (localStatus == U_USING_DEFAULT_WARNING) && uld->noSubstitute ) {