Lines Matching defs:stream

23 struct stream : detail::stream_base<Device, Tr, Alloc> {  struct
25 typedef typename char_type_of<Device>::type char_type;
31 >::type stream_type;
32 typedef Device policy_type;
34 stream() { } in stream() function
36 stream(const U0& u0) in stream() function
41 stream(const U0& u0, const U1& u1) in stream() argument
46 stream(const U0& u0, const U1& u1, const U2& u2) in stream() argument
52 stream(U0& u0) in stream() argument
57 stream(U0& u0, const U1& u1) in stream() function
62 stream(U0& u0, const U1& u1, const U2& u2) in stream() argument
68 void open(const U0& u0) in open()
73 void open(const U0& u0, const U1& u1) in open()
78 void open(const U0& u0, const U1& u1, const U2& u2) in open()
84 void open(U0& u0) in open()
89 void open(U0& u0, const U1& u1) in open()
94 void open(U0& u0, const U1& u1, const U2& u2) in open()
99 bool is_open() const { return this->member.is_open(); } in is_open()
100 void close() { this->member.close(); } in close()
101 bool auto_close() const { return this->member.auto_close(); } in auto_close()
102 void set_auto_close(bool close) { this->member.set_auto_close(close); } in set_auto_close()
103 bool strict_sync() { return this->member.strict_sync(); } in strict_sync()
104 Device& operator*() { return *this->member; } in operator *()
105 Device* operator->() { return &*this->member; } in operator ->()
108 void open_impl(mpl::false_, const U0& u0) in open_impl()
115 void open_impl(mpl::false_, U0& u0) in open_impl()
122 void open_impl(mpl::true_, const U0& u0) in open_impl()
129 void open_impl(mpl::true_, U0& u0) in open_impl()
136 void open_impl(mpl::false_, const U0& u0, const U1& u1) in open_impl()
142 void open_impl(mpl::true_, const U0& u0, const U1& u1) in open_impl()
149 void open_impl(mpl::true_, U0& u0, const U1& u1) in open_impl()
156 void open_impl(mpl::false_, const U0& u0, const U1& u1, const U2& u2) in open_impl()
162 void open_impl(mpl::true_, const U0& u0, const U1& u1, const U2& u2) in open_impl()
169 void open_impl(mpl::true_, U0& u0, const U1& u1, const U2& u2) in open_impl()