Home
last modified time | relevance | path

Searched refs:IgnoreResult (Results 1 – 21 of 21) sorted by relevance

/external/libchrome/base/
Dbind_unittest.cc457 RepeatingClosure normal_func_cb = BindRepeating(IgnoreResult(&IntFunc0)); in TEST_F()
461 BindRepeating(IgnoreResult(&HasRef::IntMethod0), &has_ref_); in TEST_F()
465 BindRepeating(IgnoreResult(&HasRef::IntConstMethod0), &has_ref_); in TEST_F()
472 BindRepeating(IgnoreResult(&NoRef::IntMethod0), in TEST_F()
477 BindRepeating(IgnoreResult(&NoRef::IntConstMethod0), in TEST_F()
493 OnceClosure normal_func_cb = BindOnce(IgnoreResult(&IntFunc0)); in TEST_F()
497 BindOnce(IgnoreResult(&HasRef::IntMethod0), &has_ref_); in TEST_F()
501 BindOnce(IgnoreResult(&HasRef::IntConstMethod0), &has_ref_); in TEST_F()
508 BindOnce(IgnoreResult(&NoRef::IntMethod0), in TEST_F()
511 BindOnce(IgnoreResult(&NoRef::IntConstMethod0), in TEST_F()
Dbind.h457 static inline internal::IgnoreResultHelper<T> IgnoreResult(T data) {
/external/libchrome/ipc/
Dipc_security_test_util.cc18 base::IgnoreResult(&IPC::ChannelProxy::Context::OnMessageReceived), in PwnMessageReceived()
Dipc_mojo_perftest.cc618 base::Bind(base::IgnoreResult(&RunPingPongClient), client_handle)); in TEST_P()
649 FROM_HERE, base::Bind(base::IgnoreResult(&RunInterfacePassingClient), in TEST_P()
665 FROM_HERE, base::Bind(base::IgnoreResult(&RunInterfacePassingClient), in TEST_P()
Dipc_sync_channel_unittest.cc1123 base::Bind(base::IgnoreResult(&ServerSendAfterClose::Send), in SendDummy()
/external/libchrome/mojo/core/
Dmessage_pipe_perftest.cc139 base::Bind(base::IgnoreResult(&RunPingPongClient), client_handle)); in TEST_F()
/external/google-breakpad/src/testing/test/
Dgmock-actions_test.cc62 using testing::IgnoreResult;
1141 Action<void(int)> a = IgnoreResult(Return(5)); // NOLINT in TEST()
1154 Action<void()> a = IgnoreResult(Invoke(ReturnOne)); in TEST()
1168 Action<void(int)> a = IgnoreResult(Invoke(ReturnMyClass)); // NOLINT in TEST()
Dgmock_link_test.h146 using testing::IgnoreResult;
402 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(IgnoreResult(Return(42))); in TEST()
Dgmock-spec-builders_test.cc2502 .WillByDefault(IgnoreResult(InvokeWithoutArgs(&c, in TEST()
/external/libchrome/base/posix/
Dunix_domain_socket_unittest.cc61 FROM_HERE, BindOnce(IgnoreResult(&UnixDomainSocket::SendRecvMsg), fds[1], in TEST()
/external/libchrome/mojo/public/cpp/bindings/tests/
De2e_perftest.cc179 base::Bind(base::IgnoreResult(&base::TaskRunner::PostTask), in DEFINE_TEST_CLIENT_TEST_WITH_PIPE()
/external/googletest/googlemock/test/
Dgmock_link_test.h149 using testing::IgnoreResult;
407 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(IgnoreResult(Return(42))); in TEST()
Dgmock-actions_test.cc66 using testing::IgnoreResult;
983 Action<void(int)> a = IgnoreResult(Return(5)); // NOLINT in TEST()
996 Action<void()> a = IgnoreResult(Invoke(ReturnOne)); in TEST()
1011 IgnoreResult(Invoke(ReturnMyNonDefaultConstructible)); // NOLINT in TEST()
Dgmock-spec-builders_test.cc81 using testing::IgnoreResult;
2672 .WillByDefault(IgnoreResult(InvokeWithoutArgs(&c, in TEST()
/external/libchrome/base/timer/
Dtimer_unittest.cc115 quit_closure_ = Bind(IgnoreResult(&SequencedTaskRunner::PostTask), in SetTaskRunner()
799 Bind(IgnoreResult(&SequencedTaskRunner::PostTask), in TEST_F()
/external/google-breakpad/src/testing/include/gmock/internal/
Dgmock-generated-internal-utils.h.pump55 // This is used in implementing the IgnoreResult(a) action.
/external/google-breakpad/src/testing/include/gmock/
Dgmock-actions.h1060 inline internal::IgnoreResultAction<A> IgnoreResult(const A& an_action) { in IgnoreResult() function
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-actions.h1187 inline internal::IgnoreResultAction<A> IgnoreResult(const A& an_action) {
/external/googletest/googlemock/include/gmock/
Dgmock-actions.h1176 inline internal::IgnoreResultAction<A> IgnoreResult(const A& an_action) {
/external/googletest/googlemock/docs/
DCheatSheet.md444 |`IgnoreResult(a)` |Perform action `a` and ignore its result. `a` must not return void.…
DCookBook.md2001 `DoAll()` and it's not the last in the list). `IgnoreResult()` lets
2024 .WillOnce(IgnoreResult(Invoke(Process)));
2027 .WillOnce(DoAll(IgnoreResult(Invoke(DoSomething)),
2032 Note that you **cannot** use `IgnoreResult()` on an action that already