Lines Matching defs:loc

49 nl_langinfo_l(nl_item item, locale_t loc)
53 FIX_LOCALE(loc);
58 if ((s = querylocale(LC_CTYPE_MASK, loc)) != NULL) {
67 ret = (char *) __get_current_time_locale(loc)->c_fmt;
70 ret = (char *) __get_current_time_locale(loc)->x_fmt;
73 ret = (char *) __get_current_time_locale(loc)->X_fmt;
76 ret = (char *) __get_current_time_locale(loc)->ampm_fmt;
79 ret = (char *) __get_current_time_locale(loc)->am;
82 ret = (char *) __get_current_time_locale(loc)->pm;
86 ret = (char*) __get_current_time_locale(loc)->weekday[_REL(DAY_1)];
90 ret = (char*) __get_current_time_locale(loc)->wday[_REL(ABDAY_1)];
95 ret = (char*) __get_current_time_locale(loc)->month[_REL(MON_1)];
100 ret = (char*) __get_current_time_locale(loc)->mon[_REL(ABMON_1)];
106 __get_current_time_locale(loc)->alt_month[_REL(ALTMON_1)];
129 ret = (char*) __get_current_numeric_locale(loc)->decimal_point;
132 ret = (char*) __get_current_numeric_locale(loc)->thousands_sep;
135 ret = (char*) __get_current_messages_locale(loc)->yesexpr;
138 ret = (char*) __get_current_messages_locale(loc)->noexpr;
146 ret = (char*) __get_current_messages_locale(loc)->yesstr;
149 ret = (char*) __get_current_messages_locale(loc)->nostr;
156 cs = (char*) __get_current_monetary_locale(loc)->currency_symbol;
158 char pos = localeconv_l(loc)->p_cs_precedes;
160 if (pos == localeconv_l(loc)->n_cs_precedes) {
164 if (strcmp(cs, __get_current_monetary_locale(loc)->mon_decimal_point) == 0)
171 if ((loc->csym = reallocf(loc->csym, clen + 2)) != NULL) {
172 *loc->csym = psn;
173 strcpy(loc->csym + 1, cs);
174 ret = loc->csym;
181 ret = (char *) __get_current_time_locale(loc)->md_order;