Lines Matching refs:ExpectationSet
96 class ExpectationSet; variable
514 friend class ExpectationSet;
560 class ExpectationSet {
569 ExpectationSet() = default;
574 ExpectationSet(internal::ExpectationBase& exp) { // NOLINT in ExpectationSet() function
581 ExpectationSet(const Expectation& e) { // NOLINT in ExpectationSet() function
590 bool operator==(const ExpectationSet& rhs) const {
594 bool operator!=(const ExpectationSet& rhs) const { return !(*this == rhs); }
598 ExpectationSet& operator+=(const Expectation& e) {
813 void FindUnsatisfiedPrerequisites(ExpectationSet* result) const
858 ExpectationSet immediate_prerequisites_;
972 TypedExpectation& After(const ExpectationSet& s) { in After()
979 for (ExpectationSet::const_iterator it = s.begin(); it != s.end(); ++it) { in After()
984 TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2) { in After()
987 TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2, in After()
988 const ExpectationSet& s3) { in After()
991 TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2, in After()
992 const ExpectationSet& s3, const ExpectationSet& s4) { in After()
995 TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2, in After()
996 const ExpectationSet& s3, const ExpectationSet& s4, in After()
997 const ExpectationSet& s5) { in After()
1162 ExpectationSet unsatisfied_prereqs; in ExplainMatchResultTo()
1165 for (ExpectationSet::const_iterator it = unsatisfied_prereqs.begin(); in ExplainMatchResultTo()