Lines Matching defs:__imp
142 class _LIBCPP_HIDDEN locale::__imp
156 explicit __imp(size_t refs = 0);
157 explicit __imp(const string& name, size_t refs = 0);
158 __imp(const __imp&);
159 __imp(const __imp&, const string&, locale::category c);
160 __imp(const __imp& other, const __imp& one, locale::category c);
161 __imp(const __imp&, facet* f, long id);
162 ~__imp();
174 template <class F> void install_from(const __imp& other);
177 locale::__imp::__imp(size_t refs)
213 locale::__imp::__imp(const string& name, size_t refs)
265 locale::__imp::__imp(const __imp& other)
279 locale::__imp::__imp(const __imp& other, const string& name, locale::category c)
344 locale::__imp::install_from(const locale::__imp& one)
350 locale::__imp::__imp(const __imp& other, const __imp& one, locale::category c)
420 locale::__imp::__imp(const __imp& other, facet* f, long id)
433 locale::__imp::~__imp()
441 locale::__imp::install(facet* f, long id)
453 locale::__imp::use_facet(long id) const
465 locale::__imp::make_classic()
470 c->__locale_ = &make<__imp>(1u);
477 static const locale& c = __imp::make_classic();
482 locale::__imp::make_global()
493 static locale& g = __imp::make_global();
525 : __locale_(name ? new __imp(name)
528 : __locale_(new __imp(name))
535 : __locale_(new __imp(name))
542 : __locale_(name ? new __imp(*other.__locale_, name, c)
545 : __locale_(new __imp(*other.__locale_, name, c))
552 : __locale_(new __imp(*other.__locale_, name, c))
558 : __locale_(new __imp(*other.__locale_, *one.__locale_, c))
573 __locale_ = new __imp(*other.__locale_, f, id);