Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Diostream.cpp16 static mbstate_t state_types[6] = {}; variable
38 istream* cin_ptr = ::new(cin) istream(::new(__cin) __stdinbuf <char>(stdin, state_types+0) ); in Init()
39 ostream* cout_ptr = ::new(cout) ostream(::new(__cout) __stdoutbuf<char>(stdout, state_types+1)); in Init()
40 ostream* cerr_ptr = ::new(cerr) ostream(::new(__cerr) __stdoutbuf<char>(stderr, state_types+2)); in Init()
46 …eam* wcin_ptr = ::new(wcin) wistream(::new(__wcin) __stdinbuf <wchar_t>(stdin, state_types+3) ); in Init()
47 …eam* wcout_ptr = ::new(wcout) wostream(::new(__wcout) __stdoutbuf<wchar_t>(stdout, state_types+4)); in Init()
48 …eam* wcerr_ptr = ::new(wcerr) wostream(::new(__wcerr) __stdoutbuf<wchar_t>(stderr, state_types+5)); in Init()