Home | History | Annotate | Download | only in test

Lines Matching defs:world

537   Action<std::string()> a2 = Return("world");
538 EXPECT_EQ("world", a2.Perform(make_tuple()));
815 a = SetArgPointee<1>("world");
819 EXPECT_STREQ("world", ptr);
824 Action<MyFunction> a = SetArgPointee<0>(L"world");
827 EXPECT_STREQ(L"world", ptr);
832 Action<MyStringFunction> a2 = SetArgPointee<0>(L"world");
835 EXPECT_EQ(L"world", str);
852 char world_array[] = "world";
853 char* const world = world_array;
854 a = SetArgPointee<2>(world);
858 EXPECT_EQ(world, ptr);
872 wchar_t world_array[] = L"world";
873 wchar_t* const world = world_array;
874 Action<MyStringFunction> a2 = SetArgPointee<1>(world);
1212 Action<void(void)> a = Assign(&x, "Hello, world");
1214 EXPECT_EQ("Hello, world", x);