Lines Matching refs:Bar
51 MOCK_METHOD1(Bar, int(int n)); // NOLINT
69 ON_CALL(foo, Bar(_)).WillByDefault(Return(1)); in TestConcurrentMockObjects()
73 EXPECT_CALL(foo, Bar(0)).Times(AtMost(3)); in TestConcurrentMockObjects()
79 EXPECT_EQ(1, foo.Bar(0)); in TestConcurrentMockObjects()
80 EXPECT_EQ(1, foo.Bar(0)); in TestConcurrentMockObjects()
108 EXPECT_EQ(1, param.mock_foo->Bar(5)); in Helper1()
116 ON_CALL(foo, Bar(_)).WillByDefault(Return(1)); in TestConcurrentCallsOnSameObject()
143 foo->Bar(2); in Helper2()
144 foo->Bar(3); in Helper2()
155 EXPECT_CALL(foo, Bar(0)); in TestPartiallyOrderedExpectationsWithThreads()
156 EXPECT_CALL(foo, Bar(1)).InSequence(s1, s2); in TestPartiallyOrderedExpectationsWithThreads()
159 EXPECT_CALL(foo, Bar(2)) in TestPartiallyOrderedExpectationsWithThreads()
163 EXPECT_CALL(foo, Bar(3)).Times(2 * kRepeat).InSequence(s2); in TestPartiallyOrderedExpectationsWithThreads()
167 EXPECT_CALL(foo, Bar(2)).InSequence(s1, s2); in TestPartiallyOrderedExpectationsWithThreads()
168 EXPECT_CALL(foo, Bar(4)); in TestPartiallyOrderedExpectationsWithThreads()
171 foo.Bar(0); in TestPartiallyOrderedExpectationsWithThreads()
172 foo.Bar(1); in TestPartiallyOrderedExpectationsWithThreads()
179 foo.Bar(2); in TestPartiallyOrderedExpectationsWithThreads()
180 foo.Bar(4); in TestPartiallyOrderedExpectationsWithThreads()