Home | History | Annotate | Download | only in src

Lines Matching refs:__imp

133 class _LIBCPP_HIDDEN locale::__imp
147 explicit __imp(size_t refs = 0);
148 explicit __imp(const string& name, size_t refs = 0);
149 __imp(const __imp&);
150 __imp(const __imp&, const string&, locale::category c);
151 __imp(const __imp& other, const __imp& one, locale::category c);
152 __imp(const __imp&, facet* f, long id);
153 ~__imp();
165 template <class F> void install_from(const __imp& other);
172 locale::__imp::__imp(size_t refs)
208 locale::__imp::__imp(const string& name, size_t refs)
260 locale::__imp::__imp(const __imp& other)
274 locale::__imp::__imp(const __imp& other, const string& name, locale::category c)
339 locale::__imp::install_from(const locale::__imp& one)
345 locale::__imp::__imp(const __imp& other, const __imp& one, locale::category c)
415 locale::__imp::__imp(const __imp& other, facet* f, long id)
428 locale::__imp::~__imp()
436 locale::__imp::install(facet* f, long id)
448 locale::__imp::use_facet(long id) const
460 locale::__imp::make_classic()
465 c->__locale_ = &make<__imp>(1u);
472 static const locale& c = __imp::make_classic();
477 locale::__imp::make_global()
488 static locale& g = __imp::make_global();
520 : __locale_(name ? new __imp(name)
523 : __locale_(new __imp(name))
530 : __locale_(new __imp(name))
537 : __locale_(name ? new __imp(*other.__locale_, name, c)
540 : __locale_(new __imp(*other.__locale_, name, c))
547 : __locale_(new __imp(*other.__locale_, name, c))
553 : __locale_(new __imp(*other.__locale_, *one.__locale_, c))
568 __imp(*other.__locale_, f, id);