Searched refs:item (Results 1 – 5 of 5) sorted by relevance
/locale/ |
A D | localeinfo.h | 258 #define _NL_CURRENT(category, item) \ argument 259 ((*_nl_current_##category)->values[_NL_ITEM_INDEX (item)].string) 262 #define _NL_CURRENT_WSTR(category, item) \ argument 266 #define _NL_CURRENT_WORD(category, item) \ argument 294 # define _NL_CURRENT(category, item) \ 298 # define _NL_CURRENT_WSTR(category, item) \ 302 # define _NL_CURRENT_WORD(category, item) \ 313 _nl_lookup (locale_t l, int category, int item) 320 _nl_lookup_wstr (locale_t l, int category, int item) in _nl_lookup_wstr() argument 323 ->values[_NL_ITEM_INDEX (item)].wstr; in _nl_lookup_wstr() [all …]
|
A D | nl_langinfo_l.c | 30 __nl_langinfo_l (nl_item item, locale_t l) in __nl_langinfo_l() argument 32 int category = _NL_ITEM_CATEGORY (item); in __nl_langinfo_l() 33 unsigned int index = _NL_ITEM_INDEX (item); in __nl_langinfo_l()
|
A D | nl_langinfo.c | 29 nl_langinfo (nl_item item) in nl_langinfo() argument 31 return __nl_langinfo_l (item, _NL_CURRENT_LOCALE); in nl_langinfo()
|
A D | langinfo.h | 37 #define _NL_ITEM_CATEGORY(item) ((int) (item) >> 16) argument 38 #define _NL_ITEM_INDEX(item) ((int) (item) & 0xffff) argument
|
/locale/programs/ |
A D | locale.c | 829 print_item (struct cat_item *item) in print_item() argument 831 switch (item->value_type) in print_item() 835 printf ("%s=\"", item->name); in print_item() 847 printf ("%s=\"", item->name); in print_item() 849 for (cnt = 0; cnt < item->max - 1; ++cnt) in print_item() 857 val = nl_langinfo (item->item_id + cnt); in print_item() 872 printf ("%s=", item->name); in print_item() 890 printf ("%s=", item->name); in print_item() 903 printf ("%s=", item->name); in print_item() 920 printf ("%s=", item->name); in print_item() [all …]
|
Completed in 14 milliseconds