OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:use_facet
(Results
1 - 25
of
36
) sorted by relevancy
1
2
/src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
compatibility-ldbl.cc
43
template const num_put<C>&
use_facet
<num_put<C> >(const locale&);
44
template const num_get<C>&
use_facet
<num_get<C> >(const locale&);
45
template const money_put<C>&
use_facet
<money_put<C> >(const locale&);
46
template const money_get<C>&
use_facet
<money_get<C> >(const locale&);
58
template const num_put<C>&
use_facet
<num_put<C> >(const locale&);
59
template const num_get<C>&
use_facet
<num_get<C> >(const locale&);
60
template const money_put<C>&
use_facet
<money_put<C> >(const locale&);
61
template const money_get<C>&
use_facet
<money_get<C> >(const locale&);
istream-string.cc
64
const __ctype_type& __ct =
use_facet
<__ctype_type>(__in.getloc());
/src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
compatibility-ldbl.cc
43
template const num_put<C>&
use_facet
<num_put<C> >(const locale&);
44
template const num_get<C>&
use_facet
<num_get<C> >(const locale&);
45
template const money_put<C>&
use_facet
<money_put<C> >(const locale&);
46
template const money_get<C>&
use_facet
<money_get<C> >(const locale&);
62
template const num_put<C>&
use_facet
<num_put<C> >(const locale&);
63
template const num_get<C>&
use_facet
<num_get<C> >(const locale&);
64
template const money_put<C>&
use_facet
<money_put<C> >(const locale&);
65
template const money_get<C>&
use_facet
<money_get<C> >(const locale&);
istream-string.cc
64
const __ctype_type& __ct =
use_facet
<__ctype_type>(__in.getloc());
istream.cc
238
const __ctype_type& __ct =
use_facet
<__ctype_type>(__in.getloc());
/src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
facet_inst_macros.h
10
use_facet
<__VA_ARGS__>(const locale&)
/src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
locale-inst.cc
119
//
use_facet
123
use_facet
<ctype<C> >(const locale&);
127
use_facet
<codecvt<C, char, mbstate_t> >(const locale&);
132
use_facet
<collate<C> >(const locale&);
136
use_facet
<numpunct<C> >(const locale&);
140
use_facet
<moneypunct<C, true> >(const locale&);
144
use_facet
<moneypunct<C, false> >(const locale&);
149
use_facet
<__timepunct<C> >(const locale&);
153
use_facet
<time_put<C> >(const locale&);
158
use_facet
<time_get<C> >(const locale&)
[
all
...]
locale-inst-monetary.h
35
template const money_put<C>&
use_facet
<money_put<C> >(const locale&);
36
template const money_get<C>&
use_facet
<money_get<C> >(const locale&);
locale-inst-numeric.h
32
template const num_get<C>&
use_facet
<num_get<C> >(const locale&);
33
template const num_put<C>&
use_facet
<num_put<C> >(const locale&);
/src/external/lgpl3/gmp/dist/cxx/
ismpz.cc
51
const ctype<char>& ct =
use_facet
< ctype<char> >(i.getloc());
osmpf.cc
57
point[0] =
use_facet
< numpunct<char> >(o.getloc()).decimal_point();
ismpf.cc
63
char point_char =
use_facet
< numpunct<char> >(loc).decimal_point();
75
const ctype<char>& ct =
use_facet
< ctype<char> >(loc);
/src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/gnu/
messages_members.cc
77
const __codecvt_t& __codecvt =
use_facet
<__codecvt_t>(__l);
114
const __codecvt_t& __codecvt =
use_facet
<__codecvt_t>(__l);
142
use_facet
<__codecvt_t>(__cat_info->_M_locale);
/src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/gnu/
messages_members.cc
77
const __codecvt_t& __codecvt =
use_facet
<__codecvt_t>(__l);
114
const __codecvt_t& __codecvt =
use_facet
<__codecvt_t>(__l);
142
use_facet
<__codecvt_t>(__cat_info->_M_locale);
/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
locale_facets.h
2614
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::space, __c); }
2620
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::print, __c); }
2626
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c); }
2632
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::upper, __c); }
2638
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::lower, __c); }
2644
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::alpha, __c); }
2650
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::digit, __c); }
2656
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::punct, __c); }
2662
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::xdigit, __c); }
2668
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::alnum, __c);
[
all
...]
locale_classes.h
87
use_facet
(const locale&);
516
use_facet
(const locale&);
564
use_facet
(const locale&);
localefwd.h
63
use_facet
(const locale&);
regex_executor.h
214
const auto& __ct =
use_facet
<ctype<_CharT>>(__traits.getloc());
codecvt.h
809
use_facet
<codecvt<char, char, mbstate_t> >(const locale&);
820
use_facet
<codecvt<wchar_t, char, mbstate_t> >(const locale&);
chrono_io.h
757
const auto& __tp =
use_facet
<__timepunct<_CharT>>(__loc);
778
const auto& __tp =
use_facet
<__timepunct<_CharT>>(__loc);
799
const auto& __tp =
use_facet
<__timepunct<_CharT>>(__loc);
1061
const auto& __tp =
use_facet
<__timepunct<_CharT>>(__loc);
1094
const auto& __tp =
use_facet
<__timepunct<_CharT>>(__loc);
1166
=
use_facet
<numpunct<_CharT>>(__loc);
1274
const auto& __tp =
use_facet
<__timepunct<_CharT>>(__loc);
1297
const auto& __tp =
use_facet
<__timepunct<_CharT>>(__loc);
1379
auto& __ct =
use_facet
<ctype<_CharT>>(_M_locale(__ctx));
1582
const auto& __tp =
use_facet
<time_put<_CharT>>(__loc)
[
all
...]
/src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
locale_facets.h
2602
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::space, __c); }
2608
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::print, __c); }
2614
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c); }
2620
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::upper, __c); }
2626
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::lower, __c); }
2632
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::alpha, __c); }
2638
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::digit, __c); }
2644
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::punct, __c); }
2650
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::xdigit, __c); }
2656
{ return
use_facet
<ctype<_CharT> >(__loc).is(ctype_base::alnum, __c);
[
all
...]
locale_classes.h
83
use_facet
(const locale&);
493
use_facet
(const locale&);
537
use_facet
(const locale&);
localefwd.h
63
use_facet
(const locale&);
regex_executor.h
214
const auto& __ct =
use_facet
<ctype<_CharT>>(__traits.getloc());
codecvt.h
809
use_facet
<codecvt<char, char, mbstate_t> >(const locale&);
820
use_facet
<codecvt<wchar_t, char, mbstate_t> >(const locale&);
Completed in 31 milliseconds
1
2
Indexes created Tue Sep 15 00:24:42 UTC 2026