Home | History | Annotate | Download | only in src

Lines Matching full:facets_vec

75   : _Refcount_Base(0), name(s), facets_vec() {
76 facets_vec.reserve( locale::id::_S_max );
81 : _Refcount_Base(0), name(locimpl.name), facets_vec() {
82 for_each( locimpl.facets_vec.begin(), locimpl.facets_vec.end(), _get_facet);
83 facets_vec = locimpl.facets_vec;
88 : _Refcount_Base(0), name(s), facets_vec(n, 0) {
94 for_each( facets_vec.begin(), facets_vec.end(), _release_facet);
122 this->insert(from->facets_vec[n._M_index], n);
130 if (n._M_index >= facets_vec.size()) {
131 facets_vec.resize(n._M_index + 1);
134 if (f != facets_vec[n._M_index])
136 _release_facet(facets_vec[n._M_index]);
137 facets_vec[n._M_index] = _get_facet(f);
664 classic->facets_vec.reserve(nb_classic_facets);
665 classic->facets_vec.assign(&classic_facets[0], &classic_facets[0] + nb_classic_facets);