Home
last modified time | relevance | path

Searched refs:DoDefault (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock_stress_test.cc77 .WillRepeatedly(DoDefault()); in TestConcurrentMockObjects()
H A Dgmock-function-mocker_test.cc61 using testing::DoDefault;
304 .WillOnce(DoDefault()) in TYPED_TEST()
355 EXPECT_CALL(this->mock_foo_, TakesConst(Lt(10))).WillOnce(DoDefault()); in TYPED_TEST()
H A Dgmock-actions_test.cc1010 EXPECT_CALL(mock, IntFunc(_)).WillOnce(DoDefault()); in TEST()
1018 EXPECT_CALL(mock, Foo()).WillRepeatedly(DoDefault()); in TEST()
1034 .WillRepeatedly(DoAll(Invoke(VoidFunc), DoDefault())); in TEST()
1048 EXPECT_CALL(mock, IntFunc(_)).WillOnce(DoDefault()); in TEST()
1057 EXPECT_CALL(mock, IntFunc(_)).WillOnce(DoDefault()); in TEST()
1066 ON_CALL(mock, IntFunc(_)).WillByDefault(DoDefault()); in TEST()
H A Dgmock_link_test.h137 using testing::DoDefault;
400 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(DoDefault()); in TEST()
H A Dgmock-spec-builders_test.cc2402 EXPECT_CALL(Const(b), DoB()).WillOnce(DoDefault()).WillOnce(Return(2)); in TEST()
2439 EXPECT_CALL(a, Binary(_, _)).WillOnce(DoDefault()).WillOnce(Return(false)); in TEST()
/freebsd/contrib/googletest/docs/reference/
H A Dactions.md91 | `DoDefault()` | Do the default action (specified by `ON_CALL()` or the built-in one). |
94 **Note:** due to technical reasons, `DoDefault()` cannot be used inside a
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp3185 bool DoDefault = false; in LowerUnalignedLoad() local
3188 DoDefault = true; in LowerUnalignedLoad()
3194 DoDefault = true; in LowerUnalignedLoad()
3196 if (!DoDefault && (2 * HaveAlign) == NeedAlign) { in LowerUnalignedLoad()
3200 DoDefault = in LowerUnalignedLoad()
3203 if (DoDefault) { in LowerUnalignedLoad()
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h897 repeated_action_(DoDefault()) {} in TypedExpectation()
H A Dgmock-actions.h1920 inline internal::DoDefaultAction DoDefault() {