Lines Matching refs:StreamErrorState
45 struct StreamErrorState { struct
57 bool operator==(const StreamErrorState &ES) const { in operator ==() argument
61 bool operator!=(const StreamErrorState &ES) const { return !(*this == ES); } in operator !=() argument
63 StreamErrorState operator|(const StreamErrorState &E) const { in operator |() argument
67 StreamErrorState operator&(const StreamErrorState &E) const { in operator &() argument
71 StreamErrorState operator~() const { return {!NoError, !FEof, !FError}; } in operator ~() argument
83 const StreamErrorState ErrorNone{true, false, false};
84 const StreamErrorState ErrorFEof{false, true, false};
85 const StreamErrorState ErrorFError{false, false, true};
102 StreamErrorState const ErrorState;
114 StreamState(const FnDescription *L, KindTy S, const StreamErrorState &ES, in StreamState()
137 const StreamErrorState &ES = ErrorNone, in getOpened()
334 const StreamErrorState &ErrorKind) const;
338 const StreamErrorState &ErrorKind) const;
739 StreamErrorState NewES; in evalFreadFwrite()
962 const StreamErrorState &ErrorKind) const { in evalFeofFerror()
988 if (StreamErrorState NewES = SS->ErrorState & (~ErrorKind)) { in evalFeofFerror()
1017 const StreamErrorState &ErrorKind) const { in evalSetFeofFerror()