Searched refs:Foos (Results 1 – 4 of 4) sorted by relevance
/external/llvm-project/llvm/unittests/Support/ |
D | BinaryStreamTest.cpp | 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() [all …]
|
/external/clang/test/PCH/ |
D | cxx-templates.h | 332 template<typename... Foos> int returnsInt(Foos... foos); 348 template<class... Foos> int returnsInt(Foos... foos);
|
/external/llvm-project/clang/test/PCH/ |
D | cxx-templates.h | 332 template<typename... Foos> int returnsInt(Foos... foos); 348 template<class... Foos> int returnsInt(Foos... foos);
|
/external/llvm-project/llvm/unittests/ADT/ |
D | STLExtrasTest.cpp | 602 SmallVector<Foo, 4U> Foos; in TEST() local 603 Foos.resize(4U); in TEST() 604 return Foos; in TEST()
|