Lines Matching defs:StreamErrorState
49 struct StreamErrorState {
61 bool operator==(const StreamErrorState &ES) const {
65 bool operator!=(const StreamErrorState &ES) const { return !(*this == ES); }
67 StreamErrorState operator|(const StreamErrorState &E) const {
71 StreamErrorState operator&(const StreamErrorState &E) const {
75 StreamErrorState operator~() const { return {!NoError, !FEof, !FError}; }
77 /// Returns if the StreamErrorState is a valid object.
93 const StreamErrorState ErrorNone{true, false, false};
94 const StreamErrorState ErrorFEof{false, true, false};
95 const StreamErrorState ErrorFError{false, false, true};
124 StreamErrorState const ErrorState;
136 StreamState(const FnDescription *L, KindTy S, const StreamErrorState &ES,
159 const StreamErrorState &ES = ErrorNone,
532 const StreamErrorState &ErrorKind) const;
535 CheckerContext &C, const StreamErrorState &ErrorKind,
648 StreamErrorState NewES;
1210 StreamErrorState NewES;
1274 StreamErrorState NewES =
1409 StreamErrorState NewES =
1492 StreamErrorState NewES =
1679 StreamErrorState NewES =
1728 const StreamErrorState &ErrorKind) const {
1744 if (StreamErrorState NewES = E.SS->ErrorState & (~ErrorKind)) {
1798 const StreamErrorState &ErrorKind,