Searched refs:DoDefault (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock_stress_test.cc | 77 .WillRepeatedly(DoDefault()); in TestConcurrentMockObjects()
|
H A D | gmock-function-mocker_test.cc | 61 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 D | gmock-actions_test.cc | 1010 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 D | gmock_link_test.h | 137 using testing::DoDefault; 400 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(DoDefault()); in TEST()
|
H A D | gmock-spec-builders_test.cc | 2402 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 D | actions.md | 91 | `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 D | HexagonISelLowering.cpp | 3185 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 D | gmock-spec-builders.h | 897 repeated_action_(DoDefault()) {} in TypedExpectation()
|
H A D | gmock-actions.h | 1920 inline internal::DoDefaultAction DoDefault() {
|