Lines Matching defs:e2
1405 Expectation e2 = EXPECT_CALL(a, DoA(2));
1412 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2);
1417 Expectation e10 = e2; // Copy ctor.
1419 EXPECT_THAT(e1, Ne(e2));
1420 EXPECT_THAT(e2, Eq(e10));
1435 Expectation e2 = EXPECT_CALL(a, DoA(1));
1437 EXPECT_THAT(e1, Ne(e2));
1439 e1 = e2;
1440 EXPECT_THAT(e1, Eq(e2));
1455 const Expectation e2;
1460 ExpectationSet es5 = e2; // Ctor from const Expectation.
1461 ExpectationSet es6(e2); // Ctor from const Expectation; alternative syntax.
1498 Expectation e2 = EXPECT_CALL(a, DoA(1));
1499 es1 += e2;
1506 EXPECT_TRUE(*it1 == e2 || *it2 == e2); // e2 must be in the set too.
1557 const Expectation e2 = EXPECT_CALL(b, DoB())
1560 EXPECT_CALL(a, DoA(2)).After(e2);
1576 Expectation e2 = EXPECT_CALL(b, DoB())
1579 .After(e2);
1598 Expectation e2 = EXPECT_CALL(b, DoB())
1602 .After(e2);
1680 Expectation e2 = EXPECT_CALL(a, DoA(2));
1684 .After(e2)
1697 Expectation e2 = EXPECT_CALL(a, DoA(2));
1702 .After(e1, e2, e3, es1, es2);
1722 Expectation e2 = EXPECT_CALL(a, DoA(2));
1725 es += e2;
1727 .After(e1, e2, es, e1);
1743 Expectation e2 = EXPECT_CALL(a, DoA(2));
1746 es1 += e2;