Lines Matching defs:world
676 Action<std::string()> a2 = Return("world");
677 EXPECT_EQ("world", a2.Perform(std::make_tuple()));
1100 a = SetArgPointee<1>("world");
1104 EXPECT_STREQ("world", ptr);
1109 Action<MyFunction> a = SetArgPointee<0>(L"world");
1112 EXPECT_STREQ(L"world", ptr);
1117 Action<MyStringFunction> a2 = SetArgPointee<0>(L"world");
1120 EXPECT_EQ(L"world", str);
1136 char world_array[] = "world";
1137 char* const world = world_array;
1138 a = SetArgPointee<2>(world);
1142 EXPECT_EQ(world, ptr);
1156 wchar_t world_array[] = L"world";
1157 wchar_t* const world = world_array;
1158 Action<MyStringFunction> a2 = SetArgPointee<1>(world);
1313 Action<void(void)> a = Assign(&x, "Hello, world");
1315 EXPECT_EQ("Hello, world", x);