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