Home
last modified time | relevance | path

Searched refs:time_get (Results 1 – 13 of 13) sorted by relevance

/external/stlport/stlport/stl/
D_time_facets.h131 class time_get : public locale::facet, public time_base, public _STLP_PRIV time_init<_Ch> {
136 explicit time_get(size_t __refs = 0) : locale::facet(__refs) in facet()
159 time_get(const char* __name, size_t __refs) in time_get() function
162 time_get(_Locale_time *__time) in time_get() function
166 ~time_get() {} in ~time_get()
197 class time_get_byname : public time_get<_Ch, _InIt> {
204 : time_get<_Ch, _InIt>(__name, __refs) {}
212 : time_get<_Ch, _InIt>(__time) in time_get_byname()
310 _STLP_EXPORT_TEMPLATE_CLASS time_get<char, istreambuf_iterator<char, char_traits<char> > >; variable
313 _STLP_EXPORT_TEMPLATE_CLASS time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >; variable
D_time_facets.c39 locale::id time_get<_CharT, _InputIterator>::id;
305 time_get<_Ch, _InIt>::do_get_date(_InIt __s, _InIt __end, in do_get_date()
329 time_get<_Ch, _InIt>::do_get_time(_InIt __s, _InIt __end, in do_get_time()
349 time_get<_Ch, _InIt>::do_get_year(_InIt __s, _InIt __end, in do_get_year()
368 time_get<_Ch, _InIt>::do_get_weekday(_InIt __s, _InIt __end, in do_get_weekday()
385 time_get<_Ch, _InIt>::do_get_monthname(_InIt __s, _InIt __end, in do_get_monthname()
D_facets_fwd.h42 class time_get; variable
D_locale.h333 _STLP_DECLSPEC locale::id& _STLP_CALL _GetFacetId(const time_get<char, istreambuf_iterator<char, ch…
341 _STLP_DECLSPEC locale::id& _STLP_CALL _GetFacetId(const time_get<wchar_t, istreambuf_iterator<wchar…
/external/stlport/src/
Dlocale_impl.cpp295 time_get<char, istreambuf_iterator<char, char_traits<char> > >::id); in insert_time_facets()
300 time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id); in insert_time_facets()
340 this->insert(get, time_get<char, istreambuf_iterator<char, char_traits<char> > >::id); in insert_time_facets()
343 this->insert(wget, time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id); in insert_time_facets()
579 time_get<char, istreambuf_iterator<char, char_traits<char> > >::id._M_index = 12; in _Stl_loc_assign_ids()
587 time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id._M_index = 25; in _Stl_loc_assign_ids()
643 new time_get<char, istreambuf_iterator<char, char_traits<char> > >(1), in make_classic_locale()
657 new time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >(1), in make_classic_locale()
751 _STLP_DECLSPEC locale::id& _STLP_CALL _GetFacetId(const time_get<char, istreambuf_iterator<char, ch… in _GetFacetId()
752 { return time_get<char, istreambuf_iterator<char, char_traits<char> > >::id; } in _GetFacetId()
[all …]
Dtime_facets.cpp555 template class time_get<char, istreambuf_iterator<char, char_traits<char> > >; variable
559 template class time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >; variable
Dlocale.cpp345 … impl->insert( i2, _STLP_STD::time_get<char, istreambuf_iterator<char, char_traits<char> > >::id); in locale()
348 …impl->insert( i2, _STLP_STD::time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> >… in locale()
/external/stlport/stlport/using/
Dlocale48 using _STLP_NEW_IO_NAMESPACE::time_get;
/external/stlport/test/unit/
Dtime_facets_test.cpp48 typedef time_get<char, istreambuf_iterator<char, char_traits<char> > > time_get_facet; in _time_put_get()
130 typedef time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > > time_get_facet; in _time_put_get()
Dlocale_test.cpp308 loc = loc.combine<time_get<char> >(loc1); in combine()
/external/oprofile/libregex/tests/
Dmangled-name.in392 std::time_get<char, std::istreambuf_iterator<char> >
393 time_get<char>
394 std::time_get<wchar_t, std::istreambuf_iterator<wchar_t> >
395 time_get<wchar_t>
/external/stlport/etc/
DChangeLog210 time_get implementation has been simplified as localized info are
214 * test/unit/time_facets_test.cpp: Add test for time_get wchar_t
2439 time_get, time_put facets that are exposed as template facets. Other
DChangeLog-5.11762 time_get<char, const char*>, time_get<wchar_t, const wchar_t*>,
3757 in the date/time format string, reported thanks to the recent locale time_get
3774 * test/unit/locale_test.cpp: tests for time_get facet.