Home | History | Annotate | Download | only in io

Lines Matching refs:ULocaleBundle

30 typedef struct ULocaleBundle {
35 } ULocaleBundle;
39 * Initialize a ULocaleBundle, initializing all formatters to 0.
40 * @param result A ULocaleBundle to initialize.
41 * @param loc The locale of the ULocaleBundle.
42 * @return A pointer to a ULocaleBundle, or 0 if <TT>loc</TT> was invalid.
44 U_CAPI ULocaleBundle *
45 u_locbund_init(ULocaleBundle *result, const char *loc);
48 * Create a new ULocaleBundle, initializing all formatters to 0.
49 * @param loc The locale of the ULocaleBundle.
50 * @return A pointer to a ULocaleBundle, or 0 if <TT>loc</TT> was invalid.
52 /*U_CAPI ULocaleBundle *
56 * Create a deep copy of this ULocaleBundle;
57 * @param bundle The ULocaleBundle to clone.
58 * @return A new ULocaleBundle.
60 /*U_CAPI ULocaleBundle *
61 u_locbund_clone(const ULocaleBundle *bundle);*/
64 * Delete the specified ULocaleBundle, freeing all associated memory.
65 * @param bundle The ULocaleBundle to delete
68 u_locbund_close(ULocaleBundle *bundle);
71 * Get the NumberFormat used to format and parse numbers in a ULocaleBundle.
72 * @param bundle The ULocaleBundle to use
76 u_locbund_getNumberFormat(ULocaleBundle *bundle, UNumberFormatStyle style);