Lines Matching refs:Expectation
79 class Expectation; variable
222 Expectation GetHandleOf(ExpectationBase* exp);
479 class GTEST_API_ Expectation {
482 Expectation();
484 ~Expectation();
495 Expectation(internal::ExpectationBase& exp); // NOLINT
501 bool operator==(const Expectation& rhs) const {
505 bool operator!=(const Expectation& rhs) const { return !(*this == rhs); }
522 bool operator()(const Expectation& lhs, const Expectation& rhs) const { in operator()
527 typedef ::std::set<Expectation, Less> Set;
529 Expectation(
558 typedef Expectation::Set::const_iterator const_iterator;
561 typedef Expectation::Set::value_type value_type;
570 *this += Expectation(exp); in ExpectationSet()
576 ExpectationSet(const Expectation& e) { // NOLINT in ExpectationSet()
593 ExpectationSet& operator+=(const Expectation& e) {
604 Expectation::Set expectations_;
614 Sequence() : last_expectation_(new Expectation) {} in Sequence()
618 void AddExpectation(const Expectation& expectation) const;
625 internal::linked_ptr<Expectation> last_expectation_;
711 friend class ::testing::Expectation;
730 virtual Expectation GetHandle() = 0;
1068 virtual Expectation GetHandle() { in GetHandle()
1543 implicit_sequence->AddExpectation(Expectation(untyped_expectation)); in AddNewExpectation()
1756 inline Expectation::Expectation(internal::ExpectationBase& exp) // NOLINT in Expectation() function