Home
last modified time | relevance | path

Searched defs:StreamErrorState (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DStreamChecker.cpp43 struct StreamErrorState { struct
45 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 …]