Home | History | Annotate | Download | only in test

Lines Matching defs:world

491   Action<std::string()> a2 = Return("world");
492 EXPECT_EQ("world", a2.Perform(make_tuple()));
729 a = SetArgPointee<1>("world");
733 EXPECT_STREQ("world", ptr);
738 Action<MyFunction> a = SetArgPointee<0>(L"world");
741 EXPECT_STREQ(L"world", ptr);
746 Action<MyStringFunction> a2 = SetArgPointee<0>(L"world");
749 EXPECT_EQ(L"world", str);
766 char world_array[] = "world";
767 char* const world = world_array;
768 a = SetArgPointee<2>(world);
772 EXPECT_EQ(world, ptr);
786 wchar_t world_array[] = L"world";
787 wchar_t* const world = world_array;
788 Action<MyStringFunction> a2 = SetArgPointee<1>(world);
1181 Action<void(void)> a = Assign(&x, "Hello, world");
1183 EXPECT_EQ("Hello, world", x);