/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _ostreambuf_iterator.h | 41 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.h | 19 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.h | 330 _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.h | 127 _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.h | 282 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/ |
D | increment.pass.cpp | 25 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()
|
D | deref.pass.cpp | 24 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()
|
D | failed.pass.cpp | 23 std::ostreambuf_iterator<char> i(nullptr); in main() 27 std::ostreambuf_iterator<wchar_t> i(nullptr); in main()
|
D | assign_c.pass.cpp | 25 std::ostreambuf_iterator<char> i(outf); in main() 33 std::ostreambuf_iterator<wchar_t> i(outf); in main()
|
/ndk/sources/cxx-stl/stlport/src/ |
D | locale_impl.cpp | 230 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 …]
|
D | num_put.cpp | 169 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> > >;
|
D | monetary.cpp | 127 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…
|
D | locale.cpp | 326 … 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/ |
D | ostream.pass.cpp | 24 std::ostreambuf_iterator<char> i(outf); in main() 29 std::ostreambuf_iterator<wchar_t> i(outf); in main()
|
D | streambuf.pass.cpp | 24 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/ |
D | types.pass.cpp | 30 …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/ |
D | types.pass.cpp | 30 …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/ |
D | types.pass.cpp | 30 …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/ |
D | time_facets_test.cpp | 28 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()
|
D | money_facets_test.cpp | 77 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/ |
D | time_facets_test.cpp | 28 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/ |
D | types.pass.cpp | 29 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/ |
D | iosfwd.pass.cpp | 93 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/ |
D | ostream | 346 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/ |
D | iosfwd | 18 using _STLP_NEW_IO_NAMESPACE::ostreambuf_iterator;
|