Lines Matching refs:exp
224 // Returns an Expectation object that references and co-owns exp,
226 Expectation GetHandleOf(ExpectationBase* exp);
503 Expectation(internal::ExpectationBase& exp); // NOLINT
577 ExpectationSet(internal::ExpectationBase& exp) { // NOLINT
578 *this += Expectation(exp);
1687 TypedExpectation<F>* exp = this->FindMatchingExpectationLocked(args);
1688 if (exp == NULL) { // A match wasn't found.
1694 // which will increment the call count for *exp and thus affect
1696 *is_excessive = exp->IsSaturated();
1697 const Action<F>* action = exp->GetActionForArguments(this, args, what, why);
1701 return exp;
1721 TypedExpectation<F>* const exp =
1723 if (exp->ShouldHandleArguments(args)) {
1724 return exp;
1828 // Constructs an Expectation object that references and co-owns exp.
1829 inline Expectation::Expectation(internal::ExpectationBase& exp) // NOLINT
1830 : expectation_base_(exp.GetHandle().expectation_base()) {}