Home | History | Annotate | Download | only in locale.members

Lines Matching refs:locale

10 // <locale>
12 // template <class Facet> locale combine(const locale& other) const;
14 #include <locale>
32 void check(const std::locale& loc)
68 : public std::locale::facet
72 static std::locale::id id;
75 std::locale::id my_facet::id;
81 std::locale loc;
82 std::locale loc2(loc, new my_facet);
83 std::locale loc3 = loc.combine<my_facet>(loc2);
94 std::locale loc;
95 std::locale loc2;
98 std::locale loc3 = loc.combine<my_facet>(loc2);