Home
last modified time | relevance | path

Searched refs:facet (Results 1 – 25 of 47) sorted by relevance

12

/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/src/c++11/
H A Dcxx11-shim_facets.cc52 class locale::facet::__shim
55 const facet* _M_get() const { return _M_facet; } in _M_get()
62 __shim(const facet* __f) : _M_facet(__f) { __f->_M_add_reference(); } in __shim()
67 const facet* _M_facet;
165 using facet = locale::facet; typedef
174 __numpunct_fill_cache(other_abi, const facet*, __numpunct_cache<C>*);
178 __collate_compare(other_abi, const facet*, const C*, const C*,
183 __collate_transform(other_abi, const facet*, __any_string&,
188 __time_get_dateorder(other_abi, const facet* f);
192 __time_get(other_abi, const facet* f,
[all …]
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/src/c++98/
H A Dlocale.cc190 __c_locale locale::facet::_S_c_locale;
192 const char locale::facet::_S_c_name[2] = "C";
195 __gthread_once_t locale::facet::_S_once = __GTHREAD_ONCE_INIT;
199 locale::facet::_S_initialize_once() in _S_initialize_once()
206 locale::facet::_S_get_c_locale() in _S_get_c_locale()
221 locale::facet::_S_get_c_name() throw() in _S_get_c_name()
224 locale::facet::
225 ~facet() { } in ~facet()
257 _M_facets = new const facet*[_M_facets_size]; in _Impl()
264 _M_caches = new const facet*[_M_facets_size]; in _Impl()
[all …]
H A Dlocalename.cc186 locale::facet::_S_create_c_locale(__cloc, __s); in _Impl()
191 _M_facets = new const facet*[_M_facets_size](); in _Impl()
192 _M_caches = new const facet*[_M_facets_size](); in _Impl()
234 __clocm = locale::facet::_S_lc_ctype_c_locale(__cloc, in _Impl()
281 locale::facet::_S_destroy_c_locale(__cloc); in _Impl()
283 locale::facet::_S_destroy_c_locale(__clocm); in _Impl()
287 locale::facet::_S_destroy_c_locale(__cloc); in _Impl()
289 locale::facet::_S_destroy_c_locale(__clocm); in _Impl()
H A Dlocale_init.cc88 typedef char fake_facet_vec[sizeof(locale::facet*)]
89 __attribute__ ((aligned(__alignof__(locale::facet*))));
92 typedef char fake_cache_vec[sizeof(locale::facet*)]
93 __attribute__ ((aligned(__alignof__(locale::facet*))));
464 _M_facets = new (&facet_vec) const facet*[_M_facets_size](); in _Impl()
465 _M_caches = new (&cache_vec) const facet*[_M_facets_size](); in _Impl()
470 std::memcpy(_M_names[0], locale::facet::_S_get_c_name(), 2); in _Impl()
545 facet* extra[] = { __npc, __mpcf, __mpct in _Impl()
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dlocale_classes.h70 class facet; in _GLIBCXX_VISIBILITY() local
74 friend class facet; in _GLIBCXX_VISIBILITY() local
371 class locale::facet in _GLIBCXX_VISIBILITY()
403 facet(size_t __refs = 0) throw() : _M_refcount(__refs ? 1 : 0) in _GLIBCXX_VISIBILITY()
408 ~facet(); in _GLIBCXX_VISIBILITY()
433 facet(const facet&); // Not defined. in _GLIBCXX_VISIBILITY()
435 facet& in _GLIBCXX_VISIBILITY()
436 operator=(const facet&); // Not defined. in _GLIBCXX_VISIBILITY()
438 facet(const facet&) = delete; in _GLIBCXX_VISIBILITY()
440 facet& in _GLIBCXX_VISIBILITY()
[all …]
H A Dlocale_facets_nonio.h59 struct __timepunct_cache : public locale::facet in _GLIBCXX_VISIBILITY()
122 __timepunct_cache(size_t __refs = 0) : facet(__refs), in _GLIBCXX_VISIBILITY() function
174 class __timepunct : public locale::facet in _GLIBCXX_VISIBILITY()
368 class time_get : public locale::facet, public time_base in _GLIBCXX_VISIBILITY()
390 : facet (__refs) { } in _GLIBCXX_VISIBILITY()
797 class time_put : public locale::facet in _GLIBCXX_VISIBILITY()
819 : facet(__refs) { } in _GLIBCXX_VISIBILITY()
954 struct __moneypunct_cache : public locale::facet in _GLIBCXX_VISIBILITY()
978 __moneypunct_cache(size_t __refs = 0) : facet(__refs), in _GLIBCXX_VISIBILITY() function
1024 class moneypunct : public locale::facet, public money_base in _GLIBCXX_VISIBILITY()
[all …]
H A Dlocale_facets.h150 class __ctype_abstract_base : public locale::facet, public ctype_base in _GLIBCXX_VISIBILITY()
359 __ctype_abstract_base(size_t __refs = 0): facet(__refs) { } in _GLIBCXX_VISIBILITY()
681 class ctype<char> : public locale::facet, public ctype_base in _GLIBCXX_VISIBILITY()
1595 struct __numpunct_cache : public locale::facet in _GLIBCXX_VISIBILITY()
1622 : facet(__refs), _M_grouping(0), _M_grouping_size(0), in _GLIBCXX_VISIBILITY() function
1670 class numpunct : public locale::facet in _GLIBCXX_VISIBILITY()
1695 : facet(__refs), _M_data(0) in _GLIBCXX_VISIBILITY()
1709 : facet(__refs), _M_data(__cache) in _GLIBCXX_VISIBILITY()
1723 : facet(__refs), _M_data(0) in _GLIBCXX_VISIBILITY()
1952 class num_get : public locale::facet in _GLIBCXX_VISIBILITY()
[all …]
H A Dlocale_classes.tcc107 const locale::facet** __facets = __loc._M_impl->_M_facets; in has_facet()
135 const locale::facet** __facets = __loc._M_impl->_M_facets; in use_facet()
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/src/c++98/
H A Dlocale.cc191 __c_locale locale::facet::_S_c_locale;
193 const char locale::facet::_S_c_name[2] = "C";
196 __gthread_once_t locale::facet::_S_once = __GTHREAD_ONCE_INIT;
200 locale::facet::_S_initialize_once() in _S_initialize_once()
207 locale::facet::_S_get_c_locale() in _S_get_c_locale()
222 locale::facet::_S_get_c_name() throw() in _S_get_c_name()
225 locale::facet::
226 ~facet() { } in ~facet()
258 _M_facets = new const facet*[_M_facets_size]; in _Impl()
265 _M_caches = new const facet*[_M_facets_size]; in _Impl()
[all …]
H A Dlocalename.cc184 locale::facet::_S_create_c_locale(__cloc, __s); in _Impl()
189 _M_facets = new const facet*[_M_facets_size]; in _Impl()
192 _M_caches = new const facet*[_M_facets_size]; in _Impl()
238 __clocm = locale::facet::_S_lc_ctype_c_locale(__cloc, in _Impl()
275 locale::facet::_S_destroy_c_locale(__cloc); in _Impl()
277 locale::facet::_S_destroy_c_locale(__clocm); in _Impl()
281 locale::facet::_S_destroy_c_locale(__cloc); in _Impl()
283 locale::facet::_S_destroy_c_locale(__clocm); in _Impl()
H A Dlocale_init.cc60 typedef char fake_facet_vec[sizeof(locale::facet*)]
61 __attribute__ ((aligned(__alignof__(locale::facet*))));
64 typedef char fake_cache_vec[sizeof(locale::facet*)]
65 __attribute__ ((aligned(__alignof__(locale::facet*))));
380 _M_facets = new (&facet_vec) const facet*[_M_facets_size]; in _Impl()
381 _M_caches = new (&cache_vec) const facet*[_M_facets_size]; in _Impl()
388 std::memcpy(_M_names[0], locale::facet::_S_get_c_name(), 2); in _Impl()
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dlocale_classes.h72 class facet; in _GLIBCXX_VISIBILITY() local
76 friend class facet; in _GLIBCXX_VISIBILITY() local
340 class locale::facet in _GLIBCXX_VISIBILITY()
372 facet(size_t __refs = 0) throw() : _M_refcount(__refs ? 1 : 0) in _GLIBCXX_VISIBILITY()
377 ~facet(); in _GLIBCXX_VISIBILITY()
420 facet(const facet&); // Not defined. in _GLIBCXX_VISIBILITY()
422 facet& in _GLIBCXX_VISIBILITY()
423 operator=(const facet&); // Not defined. in _GLIBCXX_VISIBILITY()
482 friend class locale::facet; in _GLIBCXX_VISIBILITY()
498 const facet** _M_facets; in _GLIBCXX_VISIBILITY()
[all …]
H A Dlocale_facets_nonio.h59 struct __timepunct_cache : public locale::facet in _GLIBCXX_VISIBILITY()
122 __timepunct_cache(size_t __refs = 0) : facet(__refs), in _GLIBCXX_VISIBILITY() function
177 class __timepunct : public locale::facet in _GLIBCXX_VISIBILITY()
368 class time_get : public locale::facet, public time_base in _GLIBCXX_VISIBILITY()
391 : facet (__refs) { } in _GLIBCXX_VISIBILITY()
715 class time_put : public locale::facet in _GLIBCXX_VISIBILITY()
737 : facet(__refs) { } in _GLIBCXX_VISIBILITY()
866 struct __moneypunct_cache : public locale::facet in _GLIBCXX_VISIBILITY()
890 __moneypunct_cache(size_t __refs = 0) : facet(__refs), in _GLIBCXX_VISIBILITY() function
934 class moneypunct : public locale::facet, public money_base in _GLIBCXX_VISIBILITY()
[all …]
H A Dlocale_facets.h145 class __ctype_abstract_base : public locale::facet, public ctype_base in _GLIBCXX_VISIBILITY()
354 __ctype_abstract_base(size_t __refs = 0): facet(__refs) { } in _GLIBCXX_VISIBILITY()
676 class ctype<char> : public locale::facet, public ctype_base in _GLIBCXX_VISIBILITY()
1570 struct __numpunct_cache : public locale::facet in _GLIBCXX_VISIBILITY()
1597 : facet(__refs), _M_grouping(0), _M_grouping_size(0), in _GLIBCXX_VISIBILITY() function
1643 class numpunct : public locale::facet in _GLIBCXX_VISIBILITY()
1668 : facet(__refs), _M_data(0) in _GLIBCXX_VISIBILITY()
1682 : facet(__refs), _M_data(__cache) in _GLIBCXX_VISIBILITY()
1696 : facet(__refs), _M_data(0) in _GLIBCXX_VISIBILITY()
1917 class num_get : public locale::facet in _GLIBCXX_VISIBILITY()
[all …]
H A Dlocale_classes.tcc106 const locale::facet** __facets = __loc._M_impl->_M_facets; in has_facet()
133 const locale::facet** __facets = __loc._M_impl->_M_facets; in use_facet()
H A Dcodecvt.h70 : public locale::facet, public codecvt_base in _GLIBCXX_VISIBILITY()
225 __codecvt_abstract_base(size_t __refs = 0) : locale::facet(__refs) { } in _GLIBCXX_VISIBILITY()
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/config/locale/dragonfly/
H A Dc_locale.cc125 locale::facet::_S_create_c_locale(__c_locale& __cloc, const char* __s, in _S_create_c_locale()
138 locale::facet::_S_destroy_c_locale(__c_locale& __cloc) in _S_destroy_c_locale()
145 locale::facet::_S_clone_c_locale(__c_locale& __cloc) throw() in _S_clone_c_locale()
149 locale::facet::_S_lc_ctype_c_locale(__c_locale __cloc, const char* __s) in _S_lc_ctype_c_locale()
H A Dtime_members.h44 : facet(__refs), _M_data(0), _M_c_locale_timepunct(0), in _GLIBCXX_VISIBILITY()
50 : facet(__refs), _M_data(__cache), _M_c_locale_timepunct(0), in _GLIBCXX_VISIBILITY()
57 : facet(__refs), _M_data(0), _M_c_locale_timepunct(0), in _GLIBCXX_VISIBILITY()
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/config/locale/generic/
H A Dtime_members.h45 : facet(__refs), _M_data(0) in _GLIBCXX_VISIBILITY()
53 : facet(__refs), _M_data(__cache) in _GLIBCXX_VISIBILITY()
62 : facet(__refs), _M_data(0) in _GLIBCXX_VISIBILITY()
H A Dc_locale.cc211 locale::facet::_S_create_c_locale(__c_locale& __cloc, const char* __s, in _S_create_c_locale()
223 locale::facet::_S_destroy_c_locale(__c_locale& __cloc) in _S_destroy_c_locale()
227 locale::facet::_S_clone_c_locale(__c_locale&) throw() in _S_clone_c_locale()
231 locale::facet::_S_lc_ctype_c_locale(__c_locale, const char*) in _S_lc_ctype_c_locale()
H A Dmessages_members.h44 : facet(__refs) in _GLIBCXX_VISIBILITY()
49 : facet(__refs) in _GLIBCXX_VISIBILITY()
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/config/locale/dragonfly/
H A Dc_locale.cc225 locale::facet::_S_create_c_locale(__c_locale& __cloc, const char* __s, in _S_create_c_locale()
255 locale::facet::_S_destroy_c_locale(__c_locale& __cloc) in _S_destroy_c_locale()
259 locale::facet::_S_clone_c_locale(__c_locale&) throw() in _S_clone_c_locale()
263 locale::facet::_S_lc_ctype_c_locale(__c_locale, const char*) in _S_lc_ctype_c_locale()
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/config/os/bsd/dragonfly/
H A Dctype_configure_char.cc47 : facet(__refs), _M_del(__table != 0 && __del), in ctype()
58 : facet(__refs), _M_del(__table != 0 && __del), in ctype()
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/config/locale/generic/
H A Dmessages_members.h43 : facet(__refs) in _GLIBCXX_VISIBILITY()
48 : facet(__refs) in _GLIBCXX_VISIBILITY()
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/config/os/bsd/dragonfly/
H A Dctype_configure_char.cc47 : facet(__refs), _M_c_locale_ctype(_S_get_c_locale()), in ctype()
72 : facet(__refs), _M_c_locale_ctype(_S_get_c_locale()), in ctype()

12