Home
last modified time | relevance | path

Searched refs:__loc (Results 1 – 23 of 23) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
Dbasic_ios.tcc114 basic_ios<_CharT, _Traits>::imbue(const locale& __loc) in imbue() argument
117 ios_base::imbue(__loc); in imbue()
118 _M_cache_locale(__loc); in imbue()
120 this->rdbuf()->pubimbue(__loc); in imbue()
157 basic_ios<_CharT, _Traits>::_M_cache_locale(const locale& __loc) in _M_cache_locale() argument
159 if (__builtin_expect(has_facet<__ctype_type>(__loc), true)) in _M_cache_locale()
160 _M_ctype = std::__addressof(use_facet<__ctype_type>(__loc)); in _M_cache_locale()
164 if (__builtin_expect(has_facet<__num_put_type>(__loc), true)) in _M_cache_locale()
165 _M_num_put = std::__addressof(use_facet<__num_put_type>(__loc)); in _M_cache_locale()
169 if (__builtin_expect(has_facet<__num_get_type>(__loc), true)) in _M_cache_locale()
[all …]
Dlocale_facets_nonio.tcc43 operator() (const locale& __loc) const in operator ()()
46 const locale::facet** __caches = __loc._M_impl->_M_caches; in operator ()()
53 __tmp->_M_cache(__loc); in operator ()()
60 __loc._M_impl->_M_install_cache(__tmp, __i); in operator ()()
69 __moneypunct_cache<_CharT, _Intl>::_M_cache(const locale& __loc) in _M_cache() argument
72 use_facet<moneypunct<_CharT, _Intl> >(__loc); in _M_cache()
124 const ctype<_CharT>& __ct = use_facet<ctype<_CharT> >(__loc); in _M_cache()
145 const locale& __loc = __io._M_getloc(); in _M_extract() local
146 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc); in _M_extract()
149 const __cache_type* __lc = __uc(__loc); in _M_extract()
[all …]
Dlocale_facets.h1640 _M_cache(const locale& __loc); in _GLIBCXX_VISIBILITY()
2601 isspace(_CharT __c, const locale& __loc) in _GLIBCXX_VISIBILITY()
2602 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c); } in _GLIBCXX_VISIBILITY()
2607 isprint(_CharT __c, const locale& __loc) in _GLIBCXX_VISIBILITY()
2608 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c); } in _GLIBCXX_VISIBILITY()
2613 iscntrl(_CharT __c, const locale& __loc) in _GLIBCXX_VISIBILITY()
2614 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c); } in _GLIBCXX_VISIBILITY()
2619 isupper(_CharT __c, const locale& __loc) in _GLIBCXX_VISIBILITY()
2620 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::upper, __c); } in _GLIBCXX_VISIBILITY()
2625 islower(_CharT __c, const locale& __loc) in _GLIBCXX_VISIBILITY()
[all …]
Dlocale_facets.tcc45 operator() (const locale& __loc) const;
53 operator() (const locale& __loc) const in operator ()()
56 const locale::facet** __caches = __loc._M_impl->_M_caches; in operator ()()
63 __tmp->_M_cache(__loc); in operator ()()
70 __loc._M_impl->_M_install_cache(__tmp, __i); in operator ()()
78 __numpunct_cache<_CharT>::_M_cache(const locale& __loc) in _M_cache() argument
80 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc); in _M_cache()
109 const ctype<_CharT>& __ct = use_facet<ctype<_CharT> >(__loc); in _M_cache()
155 const locale& __loc = __io._M_getloc(); in _M_extract_float() local
156 const __cache_type* __lc = __uc(__loc); in _M_extract_float()
[all …]
Dlocale_classes.tcc104 has_facet(const locale& __loc) throw() in has_facet() argument
118 const locale::facet** __facets = __loc._M_impl->_M_facets; in has_facet()
119 return (__i < __loc._M_impl->_M_facets_size in has_facet()
143 use_facet(const locale& __loc) in use_facet() argument
146 const locale::facet** __facets = __loc._M_impl->_M_facets; in use_facet()
159 if (__i >= __loc._M_impl->_M_facets_size || !__facets[__i]) in use_facet()
Dregex_compiler.tcc67 const typename _TraitsT::locale_type& __loc, _FlagT __flags) in _Compiler() argument
69 _M_scanner(__b, __e, _M_flags, __loc), in _Compiler()
70 _M_nfa(make_shared<_RegexT>(__loc, _M_flags)), in _Compiler()
72 _M_ctype(std::use_facet<_CtypeT>(__loc)) in _Compiler()
Dfs_path.h343 path(_Source const& __src, const locale& __loc, format = auto_format) in _GLIBCXX_VISIBILITY()
344 : _M_pathname(_S_convert_loc(__detail::__effective_range(__src), __loc)) in _GLIBCXX_VISIBILITY()
350 path(_InputIterator __first, _InputIterator __last, const locale& __loc, in _GLIBCXX_VISIBILITY()
352 : _M_pathname(_S_convert_loc(__first, __last, __loc)) in _GLIBCXX_VISIBILITY()
644 const std::locale& __loc); in _GLIBCXX_VISIBILITY()
648 _S_convert_loc(_Iter __first, _Iter __last, const std::locale& __loc) in _GLIBCXX_VISIBILITY()
651 return _S_convert_loc(__s.data(), __s.data() + __s.size(), __loc); in _GLIBCXX_VISIBILITY()
656 _S_convert_loc(const _Tp& __s, const std::locale& __loc) in _GLIBCXX_VISIBILITY()
658 return _S_convert_loc(__s.data(), __s.data() + __s.size(), __loc); in _GLIBCXX_VISIBILITY()
Dbasic_ios.h410 imbue(const locale& __loc); in _GLIBCXX_VISIBILITY()
510 _M_cache_locale(const locale& __loc); in _GLIBCXX_VISIBILITY()
Dregex_automaton.h227 _NFA(const typename _TraitsT::locale_type& __loc, _FlagT __flags) in _GLIBCXX_VISIBILITY()
229 { _M_traits.imbue(__loc); } in _GLIBCXX_VISIBILITY()
Dregex_scanner.tcc58 _FlagT __flags, std::locale __loc) in _Scanner() argument
61 _M_ctype(std::use_facet<_CtypeT>(__loc)), in _Scanner()
Dregex_scanner.h219 _FlagT __flags, std::locale __loc); in _GLIBCXX_VISIBILITY()
Dfstream.tcc1030 imbue(const locale& __loc) in imbue() argument
1035 if (__builtin_expect(has_facet<__codecvt_type>(__loc), true)) in imbue()
1036 _M_codecvt_tmp = &use_facet<__codecvt_type>(__loc); in imbue()
Dregex.h378 imbue(locale_type __loc) in _GLIBCXX_VISIBILITY()
380 std::swap(_M_locale, __loc); in _GLIBCXX_VISIBILITY()
381 return __loc; in _GLIBCXX_VISIBILITY()
767 imbue(locale_type __loc) in _GLIBCXX_VISIBILITY()
769 std::swap(__loc, _M_loc); in _GLIBCXX_VISIBILITY()
771 return __loc; in _GLIBCXX_VISIBILITY()
Dlocale_facets_nonio.h1032 _M_cache(const locale& __loc); in _GLIBCXX_VISIBILITY()
1910 open(const basic_string<char>& __s, const locale& __loc) const in _GLIBCXX_VISIBILITY()
1911 { return this->do_open(__s, __loc); } in _GLIBCXX_VISIBILITY()
Dlocale_classes.h301 global(const locale& __loc); in _GLIBCXX_VISIBILITY()
Dios_base.h795 imbue(const locale& __loc) throw(); in _GLIBCXX_VISIBILITY()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/ieee_1003.1-2001/
Dmessages_members.h43 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc, in _GLIBCXX_VISIBILITY()
45 { return this->do_open(__s, __loc); } in _GLIBCXX_VISIBILITY()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/generic/
Dmessages_members.h53 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc, in _GLIBCXX_VISIBILITY()
55 { return this->do_open(__s, __loc); } in _GLIBCXX_VISIBILITY()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/gnu/
Dc++locale_internal.h77 locale __loc) in _GLIBCXX_VISIBILITY()
78 : _M_id(__id), _M_domain(strdup(__domain)), _M_locale(__loc) in _GLIBCXX_VISIBILITY()
Dmessages_members.h70 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc, in _GLIBCXX_VISIBILITY()
74 return this->do_open(__s, __loc); in _GLIBCXX_VISIBILITY()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
Dstreambuf208 * @param __loc The new locale.
211 * Calls the derived imbue(__loc).
214 pubimbue(const locale& __loc)
217 this->imbue(__loc);
218 _M_buf_locale = __loc;
570 * @param __loc A new locale.
581 imbue(const locale& __loc _IsUnused)
Dfstream439 imbue(const locale& __loc);
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
Dregex649 imbue(locale_type __loc)
651 std::swap(_M_locale, __loc);
652 return __loc;
1027 imbue(locale_type __loc)
1028 { return _M_traits.imbue(__loc); }