Home
last modified time | relevance | path

Searched refs:Tag_X (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/libcxx/test/support/
H A Dtest_allocator.h365 struct Tag_X { struct
369 TEST_CONSTEXPR Tag_X(Ctor_Tag) {} in Tag_X() argument
371 TEST_CONSTEXPR Tag_X(Ctor_Tag, const Tag_X&) {} in Tag_X() function
373 TEST_CONSTEXPR Tag_X(Ctor_Tag, Tag_X&&) {} in Tag_X() function
380 Tag_X() = delete;
381 Tag_X(const Tag_X&) = delete;
382 Tag_X(Tag_X&&) = delete;
385 TEST_CONSTEXPR_CXX14 Tag_X& operator=(const Tag_X&) { return *this; };
388 TEST_CONSTEXPR_CXX14 Tag_X& operator=(Tag_X&&) { return *this; };
391 ~Tag_X() = default;
[all …]
/llvm-project-15.0.7/libcxx/test/std/containers/sequences/deque/deque.modifiers/
H A Demplace_front.pass.cpp95 std::deque<Tag_X, TaggingAllocator<Tag_X>> c; in main()
H A Demplace_back.pass.cpp94 std::deque<Tag_X, TaggingAllocator<Tag_X>> c; in main()
/llvm-project-15.0.7/libcxx/test/std/containers/sequences/vector/vector.modifiers/
H A Demplace_back.pass.cpp141 std::vector<Tag_X, TaggingAllocator<Tag_X> > c; in tests()