Lines Matching defs:stream

24 struct stream : detail::stream_base<Device, Tr, Alloc> {  struct
26 typedef typename char_type_of<Device>::type char_type;
27 struct category
37 >::stream_type stream_type;
39 stream() { } in stream() function
41 stream(const U0& u0) in stream() function
46 stream(const U0& u0, const U1& u1) in stream() function
51 stream(const U0& u0, const U1& u1, const U2& u2) in stream() function
57 stream(U0& u0) in stream() function
62 stream(U0& u0, const U1& u1) in stream() argument
67 stream(U0& u0, const U1& u1, const U2& u2) in stream() argument
73 void open(const U0& u0) in open()
78 void open(const U0& u0, const U1& u1) in open()
83 void open(const U0& u0, const U1& u1, const U2& u2) in open()
89 void open(U0& u0) in open()
94 void open(U0& u0, const U1& u1) in open()
99 void open(U0& u0, const U1& u1, const U2& u2) in open()
104 bool is_open() const { return this->member.is_open(); } in is_open()
105 void close() { this->member.close(); } in close()
106 bool auto_close() const { return this->member.auto_close(); } in auto_close()
107 void set_auto_close(bool close) { this->member.set_auto_close(close); } in set_auto_close()
108 bool strict_sync() { return this->member.strict_sync(); } in strict_sync()
109 Device& operator*() { return *this->member; } in operator *()
110 Device* operator->() { return &*this->member; } in operator ->()
113 void open_impl(mpl::false_, const U0& u0) in open_impl()
120 void open_impl(mpl::false_, U0& u0) in open_impl()
127 void open_impl(mpl::true_, const U0& u0) in open_impl()
134 void open_impl(mpl::true_, U0& u0) in open_impl()
141 void open_impl(mpl::false_, const U0& u0, const U1& u1) in open_impl()
147 void open_impl(mpl::true_, const U0& u0, const U1& u1) in open_impl()
154 void open_impl(mpl::true_, U0& u0, const U1& u1) in open_impl()
161 void open_impl(mpl::false_, const U0& u0, const U1& u1, const U2& u2) in open_impl()
167 void open_impl(mpl::true_, const U0& u0, const U1& u1, const U2& u2) in open_impl()
174 void open_impl(mpl::true_, U0& u0, const U1& u1, const U2& u2) in open_impl()