Home | History | Annotate | Download | only in stl

Lines Matching refs:collate

39 template <class _CharT> class collate {};
43 class _STLP_CLASS_DECLSPEC collate<char> : public locale::facet {
48 explicit collate(size_t __refs = 0) : locale::facet(__refs) {}
65 ~collate();
72 collate(const collate<char>&);
73 collate<char>& operator =(const collate<char>&);
79 class _STLP_CLASS_DECLSPEC collate<wchar_t> : public locale::facet {
84 explicit collate(size_t __refs = 0) : locale::facet(__refs) {}
101 ~collate();
108 collate(const collate<wchar_t>&);
109 collate<wchar_t>& operator = (const collate<wchar_t>&);
115 class _STLP_CLASS_DECLSPEC collate_byname<char>: public collate<char> {
138 class _STLP_CLASS_DECLSPEC collate_byname<wchar_t>: public collate<wchar_t> {
165 collate<_CharT> const& __coll = use_facet<collate<_CharT> >(__loc);