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()
700 typedef void MyFunction(bool, int*, char*); in TEST() typedef
701 Action<MyFunction> a = SetArgPointee<1>(2); in TEST()
721 typedef void MyFunction(std::string*, const char**); in TEST() typedef
722 Action<MyFunction> a = SetArgPointee<0>("hi"); in TEST()
737 typedef void MyFunction(const wchar_t**); in TEST() typedef
738 Action<MyFunction> a = SetArgPointee<0>(L"world"); in TEST()
757 typedef void MyFunction(bool, std::string*, const char**); in TEST() typedef
759 Action<MyFunction> a = SetArgPointee<1>(hi); in TEST()
776 typedef void MyFunction(bool, const wchar_t**); in TEST() typedef
778 Action<MyFunction> a = SetArgPointee<1>(hi); in TEST()
897 typedef void MyFunction(bool, int*, char*); in TEST() typedef
898 Action<MyFunction> a = SetArgumentPointee<1>(2); in TEST()