Home | History | Annotate | Download | only in bits

Lines Matching refs:fpos

32 // ISO C++ 14882: 27.4.3 - Template class fpos
73 // template fpos<> are described in clauses 21.1.2, 21.1.3, 27.1.2,
80 * @brief Type used by fpos, char_traits<char>, and char_traits<wchar_t>.
105 * CopyConstructible and Assignable. The standard only requires that fpos
112 class fpos
119 // The standard doesn't require that fpos objects can be default
123 fpos()
126 // The standard requires that fpos objects can be constructed
133 fpos(streamoff __off)
153 fpos&
164 fpos&
177 fpos
180 fpos __pos(*this);
191 fpos
194 fpos __pos(*this);
205 operator-(const fpos& __other) const
210 // equivalence relation. In this implementation two fpos<StateT>
216 operator==(const fpos<_StateT>& __lhs, const fpos<_StateT>& __rhs)
221 operator!=(const fpos<_StateT>& __lhs, const fpos<_StateT>& __rhs)
226 // they must both be typedefs for fpos<mbstate_t>
228 typedef fpos<mbstate_t> streampos;
230 typedef fpos<mbstate_t> wstreampos;
234 typedef fpos<mbstate_t> u16streampos;
236 typedef fpos<mbstate_t> u32streampos;