Home | History | Annotate | Download | only in src

Lines Matching refs:__imp

137 class _LIBCPP_HIDDEN locale::__imp
151 explicit __imp(size_t refs = 0);
152 explicit __imp(const string& name, size_t refs = 0);
153 __imp(const __imp&);
154 __imp(const __imp&, const string&, locale::category c);
155 __imp(const __imp& other, const __imp& one, locale::category c);
156 __imp(const __imp&, facet* f, long id);
157 ~__imp();
169 template <class F> void install_from(const __imp& other);
176 locale::__imp::__imp(size_t refs)
212 locale::__imp::__imp(const string& name, size_t refs)
264 locale::__imp::__imp(const __imp& other)
278 locale::__imp::__imp(const __imp& other, const string& name, locale::category c)
343 locale::__imp::install_from(const locale::__imp& one)
349 locale::__imp::__imp(const __imp& other, const __imp& one, locale::category c)
419 locale::__imp::__imp(const __imp& other, facet* f, long id)
432 locale::__imp::~__imp()
440 locale::__imp::install(facet* f, long id)
452 locale::__imp::use_facet(long id) const
464 locale::__imp::make_classic()
469 c->__locale_ = &make<__imp>(1u);
476 static const locale& c = __imp::make_classic();
481 locale::__imp::make_global()
492 static locale& g = __imp::make_global();
524 : __locale_(name ? new __imp(name)
527 : __locale_(new __imp(name))
534 : __locale_(new __imp(name))
541 : __locale_(name ? new __imp(*other.__locale_, name, c)
544 : __locale_(new __imp(*other.__locale_, name, c))
551 : __locale_(new __imp(*other.__locale_, name, c))
557 : __locale_(new __imp(*other.__locale_, *one.__locale_, c))
572 __locale_ = new __imp(*other.__locale_, f, id);