Home
last modified time | relevance | path

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

123

/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A 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 …]
H A 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()
111 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 …]
H A Dlocale_facets.h1632 _M_cache(const locale& __loc); in _GLIBCXX_VISIBILITY()
2569 isspace(_CharT __c, const locale& __loc) in _GLIBCXX_VISIBILITY()
2570 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c); } in _GLIBCXX_VISIBILITY()
2575 isprint(_CharT __c, const locale& __loc) in _GLIBCXX_VISIBILITY()
2576 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c); } in _GLIBCXX_VISIBILITY()
2581 iscntrl(_CharT __c, const locale& __loc) in _GLIBCXX_VISIBILITY()
2582 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c); } in _GLIBCXX_VISIBILITY()
2587 isupper(_CharT __c, const locale& __loc) in _GLIBCXX_VISIBILITY()
2588 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::upper, __c); } in _GLIBCXX_VISIBILITY()
2593 islower(_CharT __c, const locale& __loc) in _GLIBCXX_VISIBILITY()
[all …]
H A 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 …]
H A Dlocale_classes.tcc104 has_facet(const locale& __loc) throw() in has_facet() argument
107 const locale::facet** __facets = __loc._M_impl->_M_facets; in has_facet()
108 return (__i < __loc._M_impl->_M_facets_size in has_facet()
132 use_facet(const locale& __loc) in use_facet() argument
135 const locale::facet** __facets = __loc._M_impl->_M_facets; in use_facet()
136 if (__i >= __loc._M_impl->_M_facets_size || !__facets[__i]) in use_facet()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A 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 …]
H A 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 …]
H A 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 …]
H A 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 …]
H A 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()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__support/solaris/
H A Dxlocale.h37 int __base, locale_t __loc) { in strtoll_l() argument
42 int __base, locale_t __loc) { in strtol_l() argument
47 int __base, locale_t __loc) { in strtoull_l() argument
52 int __base, locale_t __loc) { in strtoul_l() argument
57 locale_t __loc) { in strtof_l() argument
62 locale_t __loc) { in strtod_l() argument
67 locale_t __loc) { in strtold_l() argument
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/
H A Dsource_location58 source_location __loc;
59 __loc._M_file = __file;
60 __loc._M_func = __func;
61 __loc._M_line = __line;
62 __loc._M_col = __col;
63 return __loc;
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/
H A Dsource_location58 source_location __loc;
59 __loc._M_file = __file;
60 __loc._M_func = __func;
61 __loc._M_line = __line;
62 __loc._M_col = __col;
63 return __loc;
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__memory/
H A Dconstruct_at.h47 void destroy_at(_Tp* __loc) { in destroy_at() argument
48 _LIBCPP_ASSERT(__loc, "null pointer given to destroy_at"); in destroy_at()
49 __loc->~_Tp(); in destroy_at()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
H A Dios_locale.cc49 ios_base::imbue(const locale& __loc) throw() in imbue() argument
52 _M_ios_locale = __loc; in imbue()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
H A Dios_locale.cc49 ios_base::imbue(const locale& __loc) throw() in imbue() argument
52 _M_ios_locale = __loc; in imbue()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A D__locale59 __libcpp_locale_guard(locale_t& __loc) : __old_loc_(uselocale(__loc)) {}
795 isspace(_CharT __c, const locale& __loc)
797 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c);
803 isprint(_CharT __c, const locale& __loc)
805 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c);
811 iscntrl(_CharT __c, const locale& __loc)
813 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c);
819 isupper(_CharT __c, const locale& __loc)
821 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::upper, __c);
827 islower(_CharT __c, const locale& __loc)
[all …]
H A D__std_stream51 virtual void imbue(const locale& __loc);
81 __stdinbuf<_CharT>::imbue(const locale& __loc)
83 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc);
239 virtual void imbue(const locale& __loc);
350 __stdoutbuf<_CharT>::imbue(const locale& __loc)
353 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc);
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/ieee_1003.1-2001/
H A 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/ieee_1003.1-2001/
H A 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.old/dist/libstdc++-v3/config/locale/generic/
H A 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/generic/
H A 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.old/dist/libstdc++-v3/config/locale/gnu/
H A Dc++locale_internal.h77 locale __loc) in _GLIBCXX_VISIBILITY()
78 : _M_id(__id), _M_domain(strdup(__domain)), _M_locale(__loc) in _GLIBCXX_VISIBILITY()
H A 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/config/locale/gnu/
H A Dc++locale_internal.h77 locale __loc) in _GLIBCXX_VISIBILITY()
78 : _M_id(__id), _M_domain(strdup(__domain)), _M_locale(__loc) in _GLIBCXX_VISIBILITY()

123