Home | History | Annotate | Download | only in bits

Lines Matching defs:numpunct

1641    *  @brief  Primary class template numpunct.
1646 * template parameter specifying the char type. The numpunct facet is
1649 * The numpunct template uses protected virtual functions to provide the
1652 * implement the behavior they require from a numpunct facet.
1655 class numpunct : public locale::facet
1670 /// Numpunct facet id.
1674 * @brief Numpunct constructor.
1679 numpunct(size_t __refs = 0)
1693 numpunct(__cache_type* __cache, size_t __refs = 0)
1707 numpunct(__c_locale __cloc, size_t __refs = 0)
1716 * numpunct<char_type>::do_decimal_point().
1729 * numpunct<char_type>::do_thousands_sep().
1760 * numpunct<char_type>::do_grouping().
1773 * numpunct<char_type>::do_truename().
1786 * numpunct<char_type>::do_falsename().
1797 ~numpunct();
1868 locale::id numpunct<_CharT>::id;
1871 numpunct<char>::~numpunct();
1875 numpunct<char>::_M_initialize_numpunct(__c_locale __cloc);
1879 numpunct<wchar_t>::~numpunct();
1883 numpunct<wchar_t>::_M_initialize_numpunct(__c_locale __cloc);
1888 class numpunct_byname : public numpunct<_CharT>
1896 : numpunct<_CharT>(__refs)
1939 /// Numpunct facet id.
1996 * Digit grouping is interpreted according to numpunct::grouping() and
1997 * numpunct::thousands_sep(). If the pattern of digit groups isn't
2054 * The decimal point character used is numpunct::decimal_point().
2055 * Digit grouping is interpreted according to numpunct::grouping() and
2056 * numpunct::thousands_sep(). If the pattern of digit groups isn't
2094 * Digit grouping is interpreted according to numpunct::grouping() and
2095 * numpunct::thousands_sep(). If the pattern of digit groups isn't
2277 /// Numpunct facet id.
2330 * Thousands separators are inserted according to numpunct::grouping()
2331 * and numpunct::thousands_sep(). The decimal point character used is
2332 * numpunct::decimal_point().
2393 * Thousands separators are inserted according to numpunct::grouping()
2394 * and numpunct::thousands_sep(). The decimal point character used is
2395 * numpunct::decimal_point().