Home
last modified time | relevance | path

Searched refs:Empty2 (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/algorithms/algorithms.results/
H A Dno_unique_address.compile.pass.cpp25 struct Empty2 {}; struct
37 static_assert(sizeof(std::ranges::in_out_result<Empty, Empty2>) == sizeof(char));
45 static_assert(sizeof(std::ranges::in_in_out_result<int, Empty, Empty2>) == sizeof(int));
54 static_assert(sizeof(std::ranges::in_out_out_result<int, Empty, Empty2>) == sizeof(int));
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dempty-class-layout.cpp164 struct Empty2 {}; struct
165 struct Empties : Empty1, Empty2 {};
167 struct A : Empty2, Empties {
H A Dconstant-expression-cxx11.cpp2163 struct Empty2 : Empty {}; struct
2164 struct Test : Empty2 {
2166 Empty2 array[2];
/llvm-project-15.0.7/lldb/test/API/python_api/formatters/
H A Dmain.cpp30 struct Empty2 { void *data; }; argument
56 Empty2 e2; in main()
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Doverride-layout.cpp13 struct Empty2 { }; struct
21 struct X1 : public X0, public Empty2 {
H A Dno-unique-address.cpp16 struct Empty2 {}; struct
21 [[no_unique_address]] Empty2 e2;
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dsuspicious-memory-comparison.cpp182 struct Empty2 {}; struct
187 [[no_unique_address]] Empty2 e2;
/llvm-project-15.0.7/llvm/unittests/Support/
H A DAllocatorTest.cpp122 void *Empty2 = Alloc.Allocate(0, 1); in TEST() local
123 EXPECT_NE(Empty2, nullptr); in TEST()
/llvm-project-15.0.7/clang/test/Analysis/
H A Dctor.mm680 class Empty2 {
683 Empty2(); // Body below.
686 class PairDoubleEmptyContainer: public Empty, public Empty2 {
689 PairDoubleEmptyContainer(): Empty(), Empty2(), p() {
699 Empty2::Empty2() {
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DDexTests.cpp114 auto Empty2 = C.intersect(L1.iterator(), L2.iterator()); in TEST() local
116 auto And = C.intersect(std::move(Empty1), std::move(Empty2)); in TEST()
H A DClangdTests.cpp199 auto Empty2 = parseSourceAndDumpAST("foo.cpp", ""); in TEST() local
202 EXPECT_EQ(Empty, Empty2); in TEST()