Lines Matching refs:Expectation
79 class Expectation; variable
221 Expectation GetHandleOf(ExpectationBase* exp);
474 class Expectation {
477 Expectation();
479 ~Expectation();
490 Expectation(internal::ExpectationBase& exp); // NOLINT
496 bool operator==(const Expectation& rhs) const {
500 bool operator!=(const Expectation& rhs) const { return !(*this == rhs); }
517 bool operator()(const Expectation& lhs, const Expectation& rhs) const { in operator()
522 typedef ::std::set<Expectation, Less> Set;
524 Expectation(
553 typedef Expectation::Set::const_iterator const_iterator;
556 typedef Expectation::Set::value_type value_type;
565 *this += Expectation(exp); in ExpectationSet()
571 ExpectationSet(const Expectation& e) { // NOLINT in ExpectationSet()
588 ExpectationSet& operator+=(const Expectation& e) {
599 Expectation::Set expectations_;
609 Sequence() : last_expectation_(new Expectation) {} in Sequence()
613 void AddExpectation(const Expectation& expectation) const;
620 internal::linked_ptr<Expectation> last_expectation_;
706 friend class ::testing::Expectation;
725 virtual Expectation GetHandle() = 0;
1063 virtual Expectation GetHandle() { in GetHandle()
1520 implicit_sequence->AddExpectation(Expectation(untyped_expectation)); in AddNewExpectation()
1731 inline Expectation::Expectation(internal::ExpectationBase& exp) // NOLINT in Expectation() function