Lines Matching refs:StreamErrorState
38 struct StreamErrorState { struct
50 bool operator==(const StreamErrorState &ES) const { in operator ==() argument
54 bool operator!=(const StreamErrorState &ES) const { return !(*this == ES); } in operator !=() argument
56 StreamErrorState operator|(const StreamErrorState &E) const { in operator |() argument
60 StreamErrorState operator&(const StreamErrorState &E) const { in operator &() argument
64 StreamErrorState operator~() const { return {!NoError, !FEof, !FError}; } in operator ~() argument
76 const StreamErrorState ErrorNone{true, false, false};
77 const StreamErrorState ErrorFEof{false, true, false};
78 const StreamErrorState ErrorFError{false, false, true};
95 StreamErrorState const ErrorState;
107 StreamState(const FnDescription *L, KindTy S, const StreamErrorState &ES, in StreamState()
130 const StreamErrorState &ES = ErrorNone, in getOpened()
299 const StreamErrorState &ErrorKind) const;
303 const StreamErrorState &ErrorKind) const;
658 StreamErrorState NewES; in evalFreadFwrite()
751 const StreamErrorState &ErrorKind) const { in evalFeofFerror()
777 if (StreamErrorState NewES = SS->ErrorState & (~ErrorKind)) { in evalFeofFerror()
805 const StreamErrorState &ErrorKind) const { in evalSetFeofFerror()