Searched refs:Expectation (Results 1 – 4 of 4) sorted by relevance
/external/chromium/testing/gmock/include/gmock/ |
D | gmock-spec-builders.h | 79 class Expectation; variable 221 Expectation GetHandleOf(ExpectationBase* exp); 474 class Expectation { 477 Expectation(); 479 ~Expectation(); 490 Expectation(internal::ExpectationBase& exp); // NOLINT 496 bool operator==(const Expectation& rhs) const { 500 bool operator!=(const Expectation& rhs) const { return !(*this == rhs); } 517 bool operator()(const Expectation& lhs, const Expectation& rhs) const { in operator() 522 typedef ::std::set<Expectation, Less> Set; [all …]
|
/external/chromium/testing/gmock/test/ |
D | gmock-spec-builders_test.cc | 77 using testing::Expectation; 404 Expectation e = EXPECT_CALL(a, DoA(1)) in TEST() 431 Expectation e = EXPECT_CALL(a, DoA(1)); in TEST() 1357 Expectation e1; // Default ctor. in TEST() 1360 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST() 1361 Expectation e3 = EXPECT_CALL(a, DoA(3)).With(_); in TEST() 1364 Expectation e4 = EXPECT_CALL(a, DoA(4)).Times(1); in TEST() 1365 Expectation e5 = EXPECT_CALL(a, DoA(5)).InSequence(s); in TEST() 1367 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2); in TEST() 1368 Expectation e7 = EXPECT_CALL(a, DoA(7)).WillOnce(Return()); in TEST() [all …]
|
/external/chromium/testing/gmock/src/ |
D | gmock-spec-builders.cc | 438 Expectation UntypedFunctionMockerBase::GetHandleOf(ExpectationBase* exp) { in GetHandleOf() 443 return Expectation(*it); in GetHandleOf() 448 return Expectation(); in GetHandleOf() 759 Expectation::Expectation() {} in Expectation() function in testing::Expectation 761 Expectation::Expectation( in Expectation() function in testing::Expectation 765 Expectation::~Expectation() {} in ~Expectation() 768 void Sequence::AddExpectation(const Expectation& expectation) const { in AddExpectation()
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_bubble_controller.mm | 415 // Expectation: There is a parent mapping for all items in the
|