Home | History | Annotate | Download | only in test

Lines Matching full:myfunction

786   typedef void MyFunction(bool, int*, char*);
787 Action<MyFunction> a = SetArgPointee<1>(2);
807 typedef void MyFunction(std::string*, const char**);
808 Action<MyFunction> a = SetArgPointee<0>("hi");
823 typedef void MyFunction(const wchar_t**);
824 Action<MyFunction> a = SetArgPointee<0>(L"world");
843 typedef void MyFunction(bool, std::string*, const char**);
845 Action<MyFunction> a = SetArgPointee<1>(hi);
862 typedef void MyFunction(bool, const wchar_t**);
864 Action<MyFunction> a = SetArgPointee<1>(hi);
983 typedef void MyFunction(bool, int*, char*);
984 Action<MyFunction> a = SetArgumentPointee<1>(2);