Lines Matching refs:kRepeat
47 const int kRepeat = 50;
94 for (int i = 0; i < kRepeat; i++) {
112 // This should generate 3*kRepeat + 1 failures in total.
117 EXPECT_CALL(foo, Baz(_, "b")).Times(kRepeat).WillRepeatedly(Return('a'));
120 // This chunk of code should generate kRepeat failures about
121 // excessive calls, and 2*kRepeat failures about unexpected calls.
132 EXPECT_EQ(kRepeat, count1 + count2);
142 for (int i = 0; i < kRepeat; i++) {
160 .Times(2 * kRepeat)
163 EXPECT_CALL(foo, Bar(3)).Times(2 * kRepeat).InSequence(s2);
210 const int kExpectedFailures = (3 * kRepeat + 1) * kCopiesOfEachRoutine;