Lines Matching refs:Foos
695 std::vector<Foo> Foos; in TEST_F() local
696 Foos.push_back({-42, 42.42, 42}); in TEST_F()
697 Foos.push_back({100, 3.1415, static_cast<char>(-89)}); in TEST_F()
698 Foos.push_back({200, 2.718, static_cast<char>(-12) }); in TEST_F()
700 const uint8_t *Bytes = reinterpret_cast<const uint8_t *>(&Foos[0]); in TEST_F()
714 EXPECT_EQ(Foos[0], *FPtrOut); in TEST_F()
715 EXPECT_EQ(Foos[1], *GPtrOut); in TEST_F()
716 EXPECT_EQ(Foos[2], *HPtrOut); in TEST_F()
922 std::vector<Foo> Foos = {{1, 1.0}, {2, 2.0}, {3, 3.0}}; in TEST_F() local
924 for (const auto &F : Foos) { in TEST_F()
938 for (const auto &F : Foos) { in TEST_F()