Lines Matching refs:nm

148 @@ -1455,8 +1507,14 @@ codecvt<wchar_t, char, mbstate_t>::codecvt(const char* nm, size_t refs)
155 " failed to construct for " + string(nm));
163 @@ -4250,7 +4308,12 @@ numpunct_byname<char>::__init(const char* nm)
165 if (strcmp(nm, "C") != 0)
167 - __locale_unique_ptr loc(newlocale(LC_ALL_MASK, nm, 0), freelocale);
168 + locale_t l = newlocale(LC_ALL_MASK, nm, 0);
177 @@ -4293,7 +4356,12 @@ numpunct_byname<wchar_t>::__init(const char* nm)
179 if (strcmp(nm, "C") != 0)
181 - __locale_unique_ptr loc(newlocale(LC_ALL_MASK, nm, 0), freelocale);
182 + locale_t l = newlocale(LC_ALL_MASK, nm, 0);
191 @@ -4707,8 +4775,14 @@ __time_get::__time_get(const char* nm)
198 " failed to construct for " + string(nm));
206 @@ -4717,8 +4791,14 @@ __time_get::__time_get(const string& nm)
213 " failed to construct for " + nm);
221 @@ -5395,8 +5475,14 @@ __time_put::__time_put(const char* nm)
228 " failed to construct for " + string(nm));
236 @@ -5405,8 +5491,14 @@ __time_put::__time_put(const string& nm)
243 " failed to construct for " + nm);
252 moneypunct_byname<char, false>::init(const char* nm)
255 - __locale_unique_ptr loc(newlocale(LC_ALL_MASK, nm, 0), freelocale);
256 + locale_t l = newlocale(LC_ALL_MASK, nm, 0);
266 moneypunct_byname<char, true>::init(const char* nm)
269 - __locale_unique_ptr loc(newlocale(LC_ALL_MASK, nm, 0), freelocale);
270 + locale_t l = newlocale(LC_ALL_MASK, nm, 0);
280 moneypunct_byname<wchar_t, false>::init(const char* nm)
283 - __locale_unique_ptr loc(newlocale(LC_ALL_MASK, nm, 0), freelocale);
284 + locale_t l = newlocale(LC_ALL_MASK, nm, 0);
294 moneypunct_byname<wchar_t, true>::init(const char* nm)
297 - __locale_unique_ptr loc(newlocale(LC_ALL_MASK, nm, 0), freelocale);
298 + locale_t l = newlocale(LC_ALL_MASK, nm, 0);