Home
last modified time | relevance | path

Searched refs:InvokeWithoutArgs (Results 1 – 22 of 22) sorted by relevance

/external/webrtc/talk/app/webrtc/
Dproxy_unittest.cc41 using ::testing::InvokeWithoutArgs;
115 .WillOnce(InvokeWithoutArgs(this, &ProxyTest::CheckThread)); in TEST_F()
123 DoAll(InvokeWithoutArgs(this, &ProxyTest::CheckThread), in TEST_F()
133 DoAll(InvokeWithoutArgs(this, &ProxyTest::CheckThread), in TEST_F()
144 DoAll(InvokeWithoutArgs(this, &ProxyTest::CheckThread), in TEST_F()
154 DoAll(InvokeWithoutArgs(this, &ProxyTest::CheckThread), in TEST_F()
165 DoAll(InvokeWithoutArgs(this, &ProxyTest::CheckThread), in TEST_F()
/external/googletest/googlemock/test/
Dgmock-actions_test.cc58 using testing::InvokeWithoutArgs;
1128 Action<int(int)> a = InvokeWithoutArgs(Nullary); // NOLINT in TEST()
1132 Action<int(int, double)> a2 = InvokeWithoutArgs(Nullary); // NOLINT in TEST()
1136 Action<void(int)> a3 = InvokeWithoutArgs(VoidNullary); // NOLINT in TEST()
1145 Action<int()> a = InvokeWithoutArgs(NullaryFunctor()); // NOLINT in TEST()
1150 InvokeWithoutArgs(NullaryFunctor()); in TEST()
1154 Action<void()> a3 = InvokeWithoutArgs(VoidNullaryFunctor()); in TEST()
1164 InvokeWithoutArgs(&foo, &Foo::Nullary); in TEST()
1378 InvokeWithoutArgs(&mock_function, &testing::MockFunction<void()>::Call), in TEST()
Dgmock_link_test.h149 using testing::InvokeWithoutArgs;
336 .WillOnce(InvokeWithoutArgs(&InvokeHelper::StaticVoidFromVoid)) in TEST()
337 .WillOnce(InvokeWithoutArgs(&test_invoke_helper, in TEST()
Dgmock-spec-builders_test.cc83 using testing::InvokeWithoutArgs;
2610 .WillByDefault(IgnoreResult(InvokeWithoutArgs(&c, in TEST()
/external/v8/testing/gmock/test/
Dgmock-actions_test.cc58 using testing::InvokeWithoutArgs;
1128 Action<int(int)> a = InvokeWithoutArgs(Nullary); // NOLINT in TEST()
1132 Action<int(int, double)> a2 = InvokeWithoutArgs(Nullary); // NOLINT in TEST()
1136 Action<void(int)> a3 = InvokeWithoutArgs(VoidNullary); // NOLINT in TEST()
1145 Action<int()> a = InvokeWithoutArgs(NullaryFunctor()); // NOLINT in TEST()
1150 InvokeWithoutArgs(NullaryFunctor()); in TEST()
1154 Action<void()> a3 = InvokeWithoutArgs(VoidNullaryFunctor()); in TEST()
1164 InvokeWithoutArgs(&foo, &Foo::Nullary); in TEST()
1378 InvokeWithoutArgs(&mock_function, &testing::MockFunction<void()>::Call), in TEST()
Dgmock_link_test.h149 using testing::InvokeWithoutArgs;
336 .WillOnce(InvokeWithoutArgs(&InvokeHelper::StaticVoidFromVoid)) in TEST()
337 .WillOnce(InvokeWithoutArgs(&test_invoke_helper, in TEST()
Dgmock-spec-builders_test.cc83 using testing::InvokeWithoutArgs;
2611 .WillByDefault(IgnoreResult(InvokeWithoutArgs(&c, in TEST()
/external/google-breakpad/src/testing/test/
Dgmock-actions_test.cc64 using testing::InvokeWithoutArgs;
1099 Action<int(int)> a = InvokeWithoutArgs(Nullary); // NOLINT in TEST()
1103 Action<int(int, double)> a2 = InvokeWithoutArgs(Nullary); // NOLINT in TEST()
1107 Action<void(int)> a3 = InvokeWithoutArgs(VoidNullary); // NOLINT in TEST()
1116 Action<int()> a = InvokeWithoutArgs(NullaryFunctor()); // NOLINT in TEST()
1121 InvokeWithoutArgs(NullaryFunctor()); in TEST()
1125 Action<void()> a3 = InvokeWithoutArgs(VoidNullaryFunctor()); in TEST()
1135 InvokeWithoutArgs(&foo, &Foo::Nullary); in TEST()
Dgmock_link_test.h149 using testing::InvokeWithoutArgs;
336 .WillOnce(InvokeWithoutArgs(&InvokeHelper::StaticVoidFromVoid)) in TEST()
337 .WillOnce(InvokeWithoutArgs(&test_invoke_helper, in TEST()
Dgmock-spec-builders_test.cc83 using testing::InvokeWithoutArgs;
2502 .WillByDefault(IgnoreResult(InvokeWithoutArgs(&c, in TEST()
/external/google-breakpad/src/testing/include/gmock/
Dgmock-actions.h1041 InvokeWithoutArgs(FunctionImpl function_impl) { in InvokeWithoutArgs() function
1050 InvokeWithoutArgs(Class* obj_ptr, MethodPtr method_ptr) { in InvokeWithoutArgs() function
/external/googletest/googlemock/include/gmock/
Dgmock-actions.h1168 InvokeWithoutArgs(FunctionImpl function_impl) {
1177 InvokeWithoutArgs(Class* obj_ptr, MethodPtr method_ptr) {
/external/v8/testing/gmock/include/gmock/
Dgmock-actions.h1168 InvokeWithoutArgs(FunctionImpl function_impl) {
1177 InvokeWithoutArgs(Class* obj_ptr, MethodPtr method_ptr) {
/external/googletest/googlemock/docs/v1_5/
DCheatSheet.md352 |`InvokeWithoutArgs(f)`|Invoke `f`, which can be a global/static function or a functor. `f` must ta…
353 |`InvokeWithoutArgs(object_pointer, &class::method)`|Invoke the method on the object, which takes n…
DCookBook.md1728 `InvokeWithoutArgs()` solves this problem. It's like `Invoke()` except
1734 using ::testing::InvokeWithoutArgs;
1746 .WillOnce(InvokeWithoutArgs(Job1));
1958 As you may have realized, `InvokeWithoutArgs(...)` is just syntactic
/external/googletest/googlemock/docs/v1_6/
DCheatSheet.md361 |`InvokeWithoutArgs(f)`|Invoke `f`, which can be a global/static function or a functor. `f` must ta…
362 |`InvokeWithoutArgs(object_pointer, &class::method)`|Invoke the method on the object, which takes n…
DCookBook.md1796 `InvokeWithoutArgs()` solves this problem. It's like `Invoke()` except
1802 using ::testing::InvokeWithoutArgs;
1814 .WillOnce(InvokeWithoutArgs(Job1));
2026 As you may have realized, `InvokeWithoutArgs(...)` is just syntactic
/external/googletest/googlemock/docs/
DCheatSheet.md389 |`InvokeWithoutArgs(f)`|Invoke `f`, which can be a global/static function or a functor. `f` must ta…
390 |`InvokeWithoutArgs(object_pointer, &class::method)`|Invoke the method on the object, which takes n…
DCookBook.md1875 `InvokeWithoutArgs()` solves this problem. It's like `Invoke()` except
1881 using ::testing::InvokeWithoutArgs;
1893 .WillOnce(InvokeWithoutArgs(Job1));
2105 As you may have realized, `InvokeWithoutArgs(...)` is just syntactic
/external/googletest/googlemock/docs/v1_7/
DCheatSheet.md383 |`InvokeWithoutArgs(f)`|Invoke `f`, which can be a global/static function or a functor. `f` must ta…
384 |`InvokeWithoutArgs(object_pointer, &class::method)`|Invoke the method on the object, which takes n…
DCookBook.md1824 `InvokeWithoutArgs()` solves this problem. It's like `Invoke()` except
1830 using ::testing::InvokeWithoutArgs;
1842 .WillOnce(InvokeWithoutArgs(Job1));
2054 As you may have realized, `InvokeWithoutArgs(...)` is just syntactic
/external/fmtlib/test/gmock/
Dgmock.h1950 InvokeWithoutArgs(FunctionImpl function_impl) {
1959 InvokeWithoutArgs(Class* obj_ptr, MethodPtr method_ptr) {