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,
517 const StreamErrorState &ErrorKind) const;
520 CheckerContext &C, const StreamErrorState &ErrorKind,
641 StreamErrorState NewES;
1171 StreamErrorState NewES;
1235 StreamErrorState NewES =
1370 StreamErrorState NewES =
1453 StreamErrorState NewES =
1640 StreamErrorState NewES =
1689 const StreamErrorState &ErrorKind) const {
1705 if (StreamErrorState NewES = E.SS->ErrorState & (~ErrorKind)) {
1759 const StreamErrorState &ErrorKind,