Home | History | Annotate | Download | only in bits

Lines Matching defs:numpunct

1623    *  @brief  Numpunct facet.
1627 * template parameter specifying the char type. The numpunct facet is
1630 * The numpunct template uses protected virtual functions to provide the
1633 * implement the behavior they require from a numpunct facet.
1636 class numpunct : public locale::facet
1651 /// Numpunct facet id.
1655 * @brief Numpunct constructor.
1660 numpunct(size_t __refs = 0) : facet(__refs), _M_data(NULL)
1673 numpunct(__cache_type* __cache, size_t __refs = 0)
1687 numpunct(__c_locale __cloc, size_t __refs = 0)
1696 * numpunct<char_type>::do_decimal_point().
1709 * numpunct<char_type>::do_thousands_sep().
1740 * numpunct<char_type>::do_grouping().
1753 * numpunct<char_type>::do_truename().
1766 * numpunct<char_type>::do_falsename().
1777 ~numpunct();
1848 locale::id numpunct<_CharT>::id;
1851 numpunct<char>::~numpunct();
1855 numpunct<char>::_M_initialize_numpunct(__c_locale __cloc);
1859 numpunct<wchar_t>::~numpunct();
1863 numpunct<wchar_t>::_M_initialize_numpunct(__c_locale __cloc);
1868 class numpunct_byname : public numpunct<_CharT>
1876 : numpunct<_CharT>(__refs)
1918 /// Numpunct facet id.
1975 * Digit grouping is interpreted according to numpunct::grouping() and
1976 * numpunct::thousands_sep(). If the pattern of digit groups isn't
2033 * The decimal point character used is numpunct::decimal_point().
2034 * Digit grouping is interpreted according to numpunct::grouping() and
2035 * numpunct::thousands_sep(). If the pattern of digit groups isn't
2073 * Digit grouping is interpreted according to numpunct::grouping() and
2074 * numpunct::thousands_sep(). If the pattern of digit groups isn't
2255 /// Numpunct facet id.
2308 * Thousands separators are inserted according to numpunct::grouping()
2309 * and numpunct::thousands_sep(). The decimal point character used is
2310 * numpunct::decimal_point().
2371 * Thousands separators are inserted according to numpunct::grouping()
2372 * and numpunct::thousands_sep(). The decimal point character used is
2373 * numpunct::decimal_point().