Home
last modified time | relevance | path

Searched defs:TestType (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/ADT/
H A DAnyTest.cpp130 struct TestType { in TEST() struct
132 TestType(const TestType &Other) in TEST() argument
134 TestType(TestType &&Other) : Copies(Other.Copies), Moves(Other.Moves + 1) {} in TEST() argument
135 int Copies = 0; in TEST()
136 int Moves = 0; in TEST()
/llvm-project-15.0.7/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
H A Dmake_from_tuple.pass.cpp163 struct TestType { in test_noexcept() struct
164 TestType(int, NothrowMoveable) noexcept {} in test_noexcept() argument
165 TestType(int, int, int) noexcept(false) {} in test_noexcept() function
166 TestType(long, long, long) noexcept {} in test_noexcept() function
/llvm-project-15.0.7/libcxx/test/support/
H A Darchetypes.h274 using TestType = AllCtors; variable
297 using TestType = AllCtors; variable
318 using TestType = AllCtors; variable
341 using TestType = AllCtors; variable
363 using TestType = AllCtors; variable
385 using TestType = AllCtors; variable
/llvm-project-15.0.7/libcxx/test/std/utilities/any/any.nonmembers/any.cast/
H A Dconst_correctness.verify.cpp30 struct TestType {}; struct
H A Dany_cast_request_invalid_value_category.fail.cpp23 struct TestType {}; struct
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dcoroutines-exp-namespace.cpp1101 struct TestType { struct
1103 CoroMemberTag test_qual() { in test_qual()
1110 CoroMemberTag test_asserts(int *) const { in test_asserts()
1123 CoroMemberTag test_qual() const volatile { in test_qual()
1128 CoroMemberTag test_ref_qual() & { in test_ref_qual()
1132 CoroMemberTag test_ref_qual() const & { in test_ref_qual()
1136 CoroMemberTag test_ref_qual() && { in test_ref_qual()
1145 CoroMemberTag test_args(int) { in test_args()
1149 CoroMemberTag test_args(int, long &, void *) const { in test_args()
1155 CoroMemberTag test_member_template(Args...) const && { in test_member_template()
[all …]
H A Dcoroutines.cpp1122 struct TestType { struct
1124 CoroMemberTag test_qual() { in test_qual()
1131 CoroMemberTag test_asserts(int *) const { in test_asserts()
1144 CoroMemberTag test_qual() const volatile { in test_qual()
1149 CoroMemberTag test_ref_qual() & { in test_ref_qual()
1153 CoroMemberTag test_ref_qual() const & { in test_ref_qual()
1157 CoroMemberTag test_ref_qual() && { in test_ref_qual()
1166 CoroMemberTag test_args(int) { in test_args()
1170 CoroMemberTag test_args(int, long &, void *) const { in test_args()
1176 CoroMemberTag test_member_template(Args...) const && { in test_member_template()
[all …]
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/
H A Dcomparisons.pass.cpp54 typedef std::pair<path, path> TestType; in test_comparisons_simple() typedef
/llvm-project-15.0.7/libcxx/test/libcxx/utilities/meta/stress_tests/
H A Dstress_test_variant_overloads_impl.sh.cpp46 struct TestType {}; struct
/llvm-project-15.0.7/libcxx/test/libcxx/utilities/function.objects/func.require/
H A Dbullet_4_5_6.pass.cpp63 typedef TestMemberObject<ObjectType> TestType; typedef
/llvm-project-15.0.7/clang/bindings/python/tests/cindex/
H A Dtest_type.py41 class TestType(unittest.TestCase): class