Searched defs:StreamErrorState (Results 1 – 1 of 1) sorted by relevance
43 struct StreamErrorState { struct45 bool NoError = true;47 bool FEof = false;49 bool FError = false;52 bool isFEof() const { return !NoError && FEof && !FError; } in isFEof()53 bool isFError() const { return !NoError && !FEof && FError; } in isFError()55 bool operator==(const StreamErrorState &ES) const { in operator ==()61 StreamErrorState operator|(const StreamErrorState &E) const { in operator |()65 StreamErrorState operator&(const StreamErrorState &E) const { in operator &()72 operator bool() const { return NoError || FEof || FError; } in operator bool()[all …]