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