Home
last modified time | relevance | path

Searched refs:ostreambuf_iterator (Results 1 – 25 of 34) sorted by relevance

12

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_ostreambuf_iterator.h41 class ostreambuf_iterator :
57 ostreambuf_iterator(streambuf_type* __buf) _STLP_NOTHROW : _M_buf(__buf), _M_ok(__buf!=0) {} in ostreambuf_iterator() function
59 inline ostreambuf_iterator(ostream_type& __o) _STLP_NOTHROW;
61 ostreambuf_iterator<_CharT, _Traits>& operator=(char_type __c) {
67 ostreambuf_iterator<_CharT, _Traits>& operator*() { return *this; }
68 ostreambuf_iterator<_CharT, _Traits>& operator++() { return *this; }
69 ostreambuf_iterator<_CharT, _Traits>& operator++(int) { return *this; }
79 inline ostreambuf_iterator<_CharT, _Traits>::ostreambuf_iterator(basic_ostream<_CharT, _Traits>& __… in ostreambuf_iterator() function
83 _STLP_EXPORT_TEMPLATE_CLASS ostreambuf_iterator<char, char_traits<char> >; variable
85 _STLP_EXPORT_TEMPLATE_CLASS ostreambuf_iterator<wchar_t, char_traits<wchar_t> >; variable
[all …]
D_facets_fwd.h19 template <class _CharT, class _OutputIter = ostreambuf_iterator<_CharT, char_traits<_CharT> > >
33 template <class _CharT, class _OutputIter = ostreambuf_iterator<_CharT, char_traits<_CharT> > >
47 template <class _Ch, class _OutIt = ostreambuf_iterator<_Ch, char_traits<_Ch> > >
D_locale.h330 _STLP_DECLSPEC locale::id& _STLP_CALL _GetFacetId(const money_put<char, ostreambuf_iterator<char, c…
332 _STLP_DECLSPEC locale::id& _STLP_CALL _GetFacetId(const num_put<char, ostreambuf_iterator<char, cha…
334 _STLP_DECLSPEC locale::id& _STLP_CALL _GetFacetId(const time_put<char, ostreambuf_iterator<char, ch…
338 _STLP_DECLSPEC locale::id& _STLP_CALL _GetFacetId(const money_put<wchar_t, ostreambuf_iterator<wcha…
340 _STLP_DECLSPEC locale::id& _STLP_CALL _GetFacetId(const num_put<wchar_t, ostreambuf_iterator<wchar_…
342 _STLP_DECLSPEC locale::id& _STLP_CALL _GetFacetId(const time_put<wchar_t, ostreambuf_iterator<wchar…
D_num_put.h127 _STLP_EXPORT_TEMPLATE_CLASS num_put<char, ostreambuf_iterator<char, char_traits<char> > >;
129 _STLP_EXPORT_TEMPLATE_CLASS num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >;
D_time_facets.h282 template <class _Ch, class _OutIt = ostreambuf_iterator<_Ch, char_traits<_Ch> > >
311 _STLP_EXPORT_TEMPLATE_CLASS time_put<char, ostreambuf_iterator<char, char_traits<char> > >;
314 _STLP_EXPORT_TEMPLATE_CLASS time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/
Dincrement.pass.cpp25 std::ostreambuf_iterator<char> i(outf); in main()
26 std::ostreambuf_iterator<char>& iref = ++i; in main()
28 std::ostreambuf_iterator<char>& iref2 = i++; in main()
33 std::ostreambuf_iterator<wchar_t> i(outf); in main()
34 std::ostreambuf_iterator<wchar_t>& iref = ++i; in main()
36 std::ostreambuf_iterator<wchar_t>& iref2 = i++; in main()
Dderef.pass.cpp24 std::ostreambuf_iterator<char> i(outf); in main()
25 std::ostreambuf_iterator<char>& iref = *i; in main()
30 std::ostreambuf_iterator<wchar_t> i(outf); in main()
31 std::ostreambuf_iterator<wchar_t>& iref = *i; in main()
Dfailed.pass.cpp23 std::ostreambuf_iterator<char> i(nullptr); in main()
27 std::ostreambuf_iterator<wchar_t> i(nullptr); in main()
Dassign_c.pass.cpp25 std::ostreambuf_iterator<char> i(outf); in main()
33 std::ostreambuf_iterator<wchar_t> i(outf); in main()
/ndk/sources/cxx-stl/stlport/src/
Dlocale_impl.cpp230 num_put<char, ostreambuf_iterator<char, char_traits<char> > >::id); in insert_numeric_facets()
237 num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id); in insert_numeric_facets()
297 time_put<char, ostreambuf_iterator<char, char_traits<char> > >::id); in insert_time_facets()
302 time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id); in insert_time_facets()
326 put = new time_put_byname<char, ostreambuf_iterator<char, char_traits<char> > >(__time); in insert_time_facets()
329 … wput = new time_put_byname<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >(__time); in insert_time_facets()
341 this->insert(put, time_put<char, ostreambuf_iterator<char, char_traits<char> > >::id); in insert_time_facets()
344 this->insert(wput, time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id); in insert_time_facets()
414 this->insert(i2, money_put<char, ostreambuf_iterator<char, char_traits<char> > >::id); in insert_monetary_facets()
417 this->insert(i2, money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >::id); in insert_monetary_facets()
[all …]
Dnum_put.cpp169 template class _STLP_CLASS_DECLSPEC ostreambuf_iterator<char, char_traits<char> >; variable
171 template class num_put<char, ostreambuf_iterator<char, char_traits<char> > >;
173 template class ostreambuf_iterator<wchar_t, char_traits<wchar_t> >; variable
174 template class num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >;
Dmonetary.cpp127 template class _STLP_CLASS_DECLSPEC money_put<char, ostreambuf_iterator<char, char_traits<char> > >;
132 template class _STLP_CLASS_DECLSPEC money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wch…
Dlocale.cpp326 … impl->insert( i2, _STLP_STD::money_put<char, ostreambuf_iterator<char, char_traits<char> > >::id); in locale()
331 …impl->insert( i2, _STLP_STD::money_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> … in locale()
337 impl->insert( i2, _STLP_STD::num_put<char, ostreambuf_iterator<char, char_traits<char> > >::id); in locale()
341 …impl->insert( i2, _STLP_STD::num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > … in locale()
346 … impl->insert( i2, _STLP_STD::time_put<char, ostreambuf_iterator<char, char_traits<char> > >::id); in locale()
349 …impl->insert( i2, _STLP_STD::time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> >… in locale()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.cons/
Dostream.pass.cpp24 std::ostreambuf_iterator<char> i(outf); in main()
29 std::ostreambuf_iterator<wchar_t> i(outf); in main()
Dstreambuf.pass.cpp24 std::ostreambuf_iterator<char> i(outf.rdbuf()); in main()
29 std::ostreambuf_iterator<wchar_t> i(outf.rdbuf()); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.time/locale.time.put/
Dtypes.pass.cpp30 …static_assert((std::is_same<std::time_put<char>::iter_type, std::ostreambuf_iterator<char> >::valu… in main()
31 …static_assert((std::is_same<std::time_put<wchar_t>::iter_type, std::ostreambuf_iterator<wchar_t> >… in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/
Dtypes.pass.cpp30 …static_assert((std::is_same<std::num_put<char>::iter_type, std::ostreambuf_iterator<char> >::value… in main()
31 …static_assert((std::is_same<std::num_put<wchar_t>::iter_type, std::ostreambuf_iterator<wchar_t> >:… in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.monetary/locale.money.put/
Dtypes.pass.cpp30 …static_assert((std::is_same<std::money_put<char>::iter_type, std::ostreambuf_iterator<char> >::val… in main()
31 …static_assert((std::is_same<std::money_put<wchar_t>::iter_type, std::ostreambuf_iterator<wchar_t> … in main()
/ndk/tests/device/test-gnustl-full/unit/
Dtime_facets_test.cpp28 typedef time_put<char, ostreambuf_iterator<char, char_traits<char> > > time_put_facet; in _time_put_get()
110 typedef time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > > time_put_facet; in _time_put_get()
222 typedef time_put_byname<char, ostreambuf_iterator<char, char_traits<char> > > time_put_facet; in test_supported_locale()
245 …locale loc(locale::classic(), new time_put_byname<char, ostreambuf_iterator<char, char_traits<char… in time_by_name()
256 …locale loc(locale::classic(), new time_put_byname<char, ostreambuf_iterator<char, char_traits<char… in time_by_name()
268 …locale loc(locale::classic(), new time_put_byname<char, ostreambuf_iterator<char, char_traits<char… in time_by_name()
359 …locale loc(locale::classic(), new time_put_byname<wchar_t, ostreambuf_iterator<wchar_t, char_trait… in time_by_name()
369 …locale loc(locale::classic(), new time_put_byname<wchar_t, ostreambuf_iterator<wchar_t, char_trait… in time_by_name()
Dmoney_facets_test.cpp77 ostreambuf_iterator<char, char_traits<char> > res = fmp.put(ostr, true, ostr, ' ', 123456); in _money_put_get2()
192 ostreambuf_iterator<char, char_traits<char> > res = fmp.put(ostr, false, ostr, ' ', -123456); in _money_put_get2()
297 ostreambuf_iterator<char, char_traits<char> > res = fmp.put(ostr, false, ostr, ' ', 9); in _money_put_X_bug()
359 ostreambuf_iterator<char, char_traits<char> > res = fmp.put(ostr, false, ostr, ' ', 90); in _money_put_X_bug()
/ndk/tests/device/test-stlport/unit/
Dtime_facets_test.cpp28 typedef time_put<char, ostreambuf_iterator<char, char_traits<char> > > time_put_facet; in _time_put_get()
110 typedef time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > > time_put_facet; in _time_put_get()
222 typedef time_put_byname<char, ostreambuf_iterator<char, char_traits<char> > > time_put_facet; in test_supported_locale()
245 …locale loc(locale::classic(), new time_put_byname<char, ostreambuf_iterator<char, char_traits<char… in time_by_name()
256 …locale loc(locale::classic(), new time_put_byname<char, ostreambuf_iterator<char, char_traits<char… in time_by_name()
268 …locale loc(locale::classic(), new time_put_byname<char, ostreambuf_iterator<char, char_traits<char… in time_by_name()
359 …locale loc(locale::classic(), new time_put_byname<wchar_t, ostreambuf_iterator<wchar_t, char_trait… in time_by_name()
369 …locale loc(locale::classic(), new time_put_byname<wchar_t, ostreambuf_iterator<wchar_t, char_trait… in time_by_name()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostreambuf.iterator/
Dtypes.pass.cpp29 typedef std::ostreambuf_iterator<char> I1; in main()
37 typedef std::ostreambuf_iterator<wchar_t> I2; in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.forward/
Diosfwd.pass.cpp93 std::ostreambuf_iterator<char>* t1 = 0; in main()
94 std::ostreambuf_iterator<wchar_t>* t2 = 0; in main()
95 std::ostreambuf_iterator<unsigned short>* t3 = 0; in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dostream346 typedef ostreambuf_iterator<_CharT, _Traits> _Op;
391 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
418 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
447 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
474 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
503 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
529 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
555 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
581 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
607 typedef num_put<char_type, ostreambuf_iterator<char_type, traits_type> > _Fp;
[all …]
/ndk/sources/cxx-stl/stlport/stlport/using/
Diosfwd18 using _STLP_NEW_IO_NAMESPACE::ostreambuf_iterator;

12