Searched refs:MyFunction (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock-actions_test.cc798 typedef void MyFunction(bool, int*, char*); typedef
799 Action<MyFunction> a = SetArgPointee<1>(2);
819 typedef void MyFunction(std::string*, const char**); typedef
820 Action<MyFunction> a = SetArgPointee<0>("hi");
835 typedef void MyFunction(const wchar_t**); typedef
836 Action<MyFunction> a = SetArgPointee<0>(L"world");
855 typedef void MyFunction(bool, std::string*, const char**); typedef
857 Action<MyFunction> a = SetArgPointee<1>(hi);
874 typedef void MyFunction(bool, const wchar_t**); typedef
876 Action<MyFunction>
896 typedef void MyFunction(bool, int*, char*); typedef
[all...]
H A Dgmock-more-actions_test.cc623 typedef void MyFunction(bool, int*, char*); typedef
625 Action<MyFunction> a = SetArrayArgument<1>(numbers, numbers + 3);
659 typedef void MyFunction(bool, int*); typedef
661 Action<MyFunction> a = SetArrayArgument<1>(numbers, numbers);
675 typedef void MyFunction(bool, int*); typedef
677 Action<MyFunction> a = SetArrayArgument<1>(chars, chars + 3);
690 typedef void MyFunction(bool, std::back_insert_iterator<std::string>); typedef
692 Action<MyFunction> a = SetArrayArgument<1>(letters.begin(), letters.end());
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgoogletest-printers-test.cc527 void MyFunction(int /* n */) {} function in namespace:testing::gtest_printers_test
530 // We cannot directly cast &MyFunction to const void* because the
536 reinterpret_cast<internal::BiggestInt>(&MyFunction))),
537 Print(&MyFunction));
1217 void (*fp)(int n) = &MyFunction;
1220 // We cannot directly cast &MyFunction to const void* because the

Completed in 52 milliseconds