Lines Matching defs:e2
1371 Expectation e2 = EXPECT_CALL(a, DoA(2));
1378 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2);
1383 Expectation e10 = e2; // Copy ctor.
1385 EXPECT_THAT(e1, Ne(e2));
1386 EXPECT_THAT(e2, Eq(e10));
1401 Expectation e2 = EXPECT_CALL(a, DoA(1));
1403 EXPECT_THAT(e1, Ne(e2));
1405 e1 = e2;
1406 EXPECT_THAT(e1, Eq(e2));
1421 const Expectation e2;
1426 ExpectationSet es5 = e2; // Ctor from const Expectation.
1427 ExpectationSet es6(e2); // Ctor from const Expectation; alternative syntax.
1464 Expectation e2 = EXPECT_CALL(a, DoA(1));
1465 es1 += e2;
1472 EXPECT_TRUE(*it1 == e2 || *it2 == e2); // e2 must be in the set too.
1523 const Expectation e2 = EXPECT_CALL(b, DoB())
1526 EXPECT_CALL(a, DoA(2)).After(e2);
1539 Expectation e2 = EXPECT_CALL(b, DoB())
1543 .After(e2)
1605 Expectation e2 = EXPECT_CALL(a, DoA(2));
1609 .After(e2)
1622 Expectation e2 = EXPECT_CALL(a, DoA(2));
1627 .After(e1, e2, e3, es1, es2);
1641 Expectation e2 = EXPECT_CALL(a, DoA(2));
1644 es += e2;
1646 .After(e1, e2, es, e1)
1661 Expectation e2 = EXPECT_CALL(a, DoA(2));
1664 es1 += e2;