Lines Matching refs:SetArgPointee
76 using testing::SetArgPointee;
786 Action<MyFunction> a = SetArgPointee<1>(2); in TEST()
794 a = SetArgPointee<2>('a'); in TEST()
805 Action<MyFunction> a = SetArgPointee<0>("hi"); in TEST()
812 a = SetArgPointee<1>("world"); in TEST()
821 Action<MyFunction> a = SetArgPointee<0>(L"world"); in TEST()
829 Action<MyStringFunction> a2 = SetArgPointee<0>(L"world"); in TEST()
841 Action<MyFunction> a = SetArgPointee<1>(hi); in TEST()
850 a = SetArgPointee<2>(world); in TEST()
860 Action<MyFunction> a = SetArgPointee<1>(hi); in TEST()
870 Action<MyStringFunction> a2 = SetArgPointee<1>(world); in TEST()
1447 Action<void(std::unique_ptr<int>, int*)> a2 = testing::SetArgPointee<1>(3); in TEST()