Home | History | Annotate | Download | only in src

Lines Matching refs:wostream

30 _ALIGNAS_TYPE (wostream) _LIBCPP_FUNC_VIS char wcout[sizeof(wostream)];
31 _ALIGNAS_TYPE (wostream) _LIBCPP_FUNC_VIS char wcerr[sizeof(wostream)];
32 _ALIGNAS_TYPE (wostream) _LIBCPP_FUNC_VIS char wclog[sizeof(wostream)];
47 wostream* wcout_ptr = ::new(wcout) wostream(::new(__wcout) __stdoutbuf<wchar_t>(stdout, state_types+4));
48 wostream* wcerr_ptr = ::new(wcerr) wostream(::new(__wcerr) __stdoutbuf<wchar_t>(stderr, state_types+5));
49 ::new(wclog) wostream(wcerr_ptr->rdbuf());
62 wostream* wcout_ptr = reinterpret_cast<wostream*>(wcout);
63 wostream* wclog_ptr = reinterpret_cast<wostream*>(wclog);