Home | History | Annotate | Download | only in test

Lines Matching refs:e2

1360   Expectation e2 = EXPECT_CALL(a, DoA(2));
1367 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2);
1372 Expectation e10 = e2; // Copy ctor.
1374 EXPECT_THAT(e1, Ne(e2));
1375 EXPECT_THAT(e2, Eq(e10));
1390 Expectation e2 = EXPECT_CALL(a, DoA(1));
1392 EXPECT_THAT(e1, Ne(e2));
1394 e1 = e2;
1395 EXPECT_THAT(e1, Eq(e2));
1410 const Expectation e2;
1415 ExpectationSet es5 = e2; // Ctor from const Expectation.
1416 ExpectationSet es6(e2); // Ctor from const Expectation; alternative syntax.
1453 Expectation e2 = EXPECT_CALL(a, DoA(1));
1454 es1 += e2;
1461 EXPECT_TRUE(*it1 == e2 || *it2 == e2); // e2 must be in the set too.
1512 const Expectation e2 = EXPECT_CALL(b, DoB())
1515 EXPECT_CALL(a, DoA(2)).After(e2);
1528 Expectation e2 = EXPECT_CALL(b, DoB())
1532 .After(e2)
1594 Expectation e2 = EXPECT_CALL(a, DoA(2));
1598 .After(e2)
1611 Expectation e2 = EXPECT_CALL(a, DoA(2));
1616 .After(e1, e2, e3, es1, es2);
1630 Expectation e2 = EXPECT_CALL(a, DoA(2));
1633 es += e2;
1635 .After(e1, e2, es, e1)
1650 Expectation e2 = EXPECT_CALL(a, DoA(2));
1653 es1 += e2;