Lines Matching refs:MyFunction
326 typedef int MyFunction(bool, int); typedef
328 class MyActionImpl : public ActionInterface<MyFunction> {
341 Action<MyFunction> action = MakeAction(new MyActionImpl); in TEST()
354 Action<MyFunction> action(new MyActionImpl); in TEST()
359 const Action<MyFunction> action(new MyActionImpl); in TEST()
367 Action<MyFunction> a1(new MyActionImpl); in TEST()
368 Action<MyFunction> a2(a1); // Tests the copy constructor. in TEST()
701 typedef void MyFunction(bool, int*, char*); in TEST() typedef
702 Action<MyFunction> a = SetArgPointee<1>(2); in TEST()
722 typedef void MyFunction(std::string*, const char**); in TEST() typedef
723 Action<MyFunction> a = SetArgPointee<0>("hi"); in TEST()
738 typedef void MyFunction(const wchar_t**); in TEST() typedef
739 Action<MyFunction> a = SetArgPointee<0>(L"world"); in TEST()
758 typedef void MyFunction(bool, std::string*, const char**); in TEST() typedef
760 Action<MyFunction> a = SetArgPointee<1>(hi); in TEST()
777 typedef void MyFunction(bool, const wchar_t**); in TEST() typedef
779 Action<MyFunction> a = SetArgPointee<1>(hi); in TEST()
898 typedef void MyFunction(bool, int*, char*); in TEST() typedef
899 Action<MyFunction> a = SetArgumentPointee<1>(2); in TEST()