| /llvm-project-15.0.7/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/ |
| H A D | gcd.pass.cpp | 53 constexpr bool do_test(int = 0) in do_test() function 100 static_assert(do_test<short>(), ""); in main() 101 static_assert(do_test<int>(), ""); in main() 102 static_assert(do_test<long>(), ""); in main() 105 assert(do_test<signed char>(non_cce)); in main() 106 assert(do_test<short>(non_cce)); in main() 107 assert(do_test<int>(non_cce)); in main() 108 assert(do_test<long>(non_cce)); in main() 109 assert(do_test<long long>(non_cce)); in main() 116 assert(do_test<std::int8_t>(non_cce)); in main() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/numerics/numeric.ops/numeric.ops.lcm/ |
| H A D | lcm.pass.cpp | 50 constexpr bool do_test(int = 0) in do_test() function 97 static_assert(do_test<short>(), ""); in main() 98 static_assert(do_test<int>(), ""); in main() 99 static_assert(do_test<long>(), ""); in main() 102 assert(do_test<signed char>(non_cce)); in main() 103 assert(do_test<short>(non_cce)); in main() 104 assert(do_test<int>(non_cce)); in main() 105 assert(do_test<long>(non_cce)); in main() 106 assert(do_test<long long>(non_cce)); in main() 113 assert(do_test<std::int8_t>(non_cce)); in main() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/language.support/support.coroutines/coroutine.handle/coroutine.handle.con/ |
| H A D | construct.pass.cpp | 27 constexpr bool do_test() { in do_test() function 43 do_test<std::coroutine_handle<>>(); in main() 44 do_test<std::coroutine_handle<int>>(); in main() 45 static_assert(do_test<std::coroutine_handle<>>()); in main() 46 static_assert(do_test<std::coroutine_handle<int>>()); in main()
|
| H A D | assign.pass.cpp | 26 void do_test() { in do_test() function 50 do_test<std::coroutine_handle<>>(); in main() 51 do_test<std::coroutine_handle<int>>(); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/language.support/support.coroutines/coroutine.handle/coroutine.handle.export/ |
| H A D | address.pass.cpp | 26 constexpr bool do_test() { in do_test() function 47 do_test<std::coroutine_handle<>>(); in main() 48 do_test<std::coroutine_handle<int>>(); in main() 49 static_assert(do_test<std::coroutine_handle<>>()); in main() 50 static_assert(do_test<std::coroutine_handle<int>>()); in main()
|
| H A D | from_address.pass.cpp | 26 void do_test() { in do_test() function 54 do_test<std::coroutine_handle<>>(); in main() 55 do_test<std::coroutine_handle<int>>(); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/language.support/support.coroutines/coroutine.handle/coroutine.handle.capacity/ |
| H A D | operator_bool.pass.cpp | 26 constexpr bool do_test() { in do_test() function 50 do_test<std::coroutine_handle<>>(); in main() 51 do_test<std::coroutine_handle<int>>(); in main() 52 static_assert(do_test<std::coroutine_handle<>>()); in main() 53 static_assert(do_test<std::coroutine_handle<int>>()); in main()
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/char/ |
| H A D | TestExprsChar.py | 8 def do_test(self, dictionary=None): member in ExprCharTestCase 19 self.do_test() 28 self.do_test(dictionary={'CFLAGS_EXTRAS': '-fsigned-char'}) 43 self.do_test(dictionary={'CFLAGS_EXTRAS': '-funsigned-char'})
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/ |
| H A D | bind_return_type.pass.cpp | 49 void do_test(Fn* func) { in do_test() function 120 do_test<int>(return_value); in main() 121 do_test<int&>(return_lvalue); in main() 122 do_test<const int&>(return_const_lvalue); in main() 123 do_test<int&&>(return_rvalue); in main() 124 do_test<const int&&>(return_const_rvalue); in main()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/stop-on-sharedlibrary-load/ |
| H A D | TestStopOnSharedlibraryEvents.py | 13 self.do_test() 21 self.do_test(auto_continue) 29 self.do_test(condition) 37 self.do_test(bkpt_callback) 39 def do_test(self, bkpt_modifier = None): member in TestStopOnSharedlibraryEvents
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/FreeBSDKernel/ |
| H A D | TestFreeBSDKernelVMCore.py | 30 def do_test(self, kernel_yaml, vmcore_bz2, numthread, threads={}, hz=100): member in FreeBSDKernelVMCoreTestCase 74 self.do_test("kernel-amd64.yaml", "vmcore-amd64-full.bz2", 131 self.do_test("kernel-amd64.yaml", "vmcore-amd64-minidump.bz2", 188 self.do_test("kernel-arm64.yaml", "vmcore-arm64-minidump.bz2", 309 self.do_test("kernel-i386.yaml", "vmcore-i386-minidump.bz2",
|
| /llvm-project-15.0.7/libcxx/test/std/language.support/support.coroutines/coroutine.handle/coroutine.handle.completion/ |
| H A D | done.pass.cpp | 29 void do_test(std::coroutine_handle<Promise> const& H) { in do_test() function 39 do_test(std::coroutine_handle<>{}); in main() 40 do_test(std::coroutine_handle<int>{}); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.completion/ |
| H A D | done.pass.cpp | 30 void do_test(coro::coroutine_handle<Promise> const& H) { in do_test() function 40 do_test(coro::coroutine_handle<>{}); in main() 41 do_test(coro::coroutine_handle<int>{}); in main()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/thread/thread_specific_break/ |
| H A D | TestThreadSpecificBreakpoint.py | 30 self.do_test(set_thread_id) 35 self.do_test(set_thread_name) 39 self.do_test(using_current) 41 def do_test(self, setter_method): member in ThreadSpecificBreakTestCase
|
| /llvm-project-15.0.7/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.export/ |
| H A D | address.pass.cpp | 27 void do_test() { in do_test() function 47 do_test<coro::coroutine_handle<>>(); in main() 48 do_test<coro::coroutine_handle<int>>(); in main()
|
| H A D | from_address.pass.cpp | 27 void do_test() { in do_test() function 44 do_test<coro::coroutine_handle<>>(); in main() 45 do_test<coro::coroutine_handle<int>>(); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.con/ |
| H A D | construct.pass.cpp | 28 void do_test() { in do_test() function 51 do_test<coro::coroutine_handle<>>(); in main() 52 do_test<coro::coroutine_handle<int>>(); in main()
|
| H A D | assign.pass.cpp | 27 void do_test() { in do_test() function 52 do_test<coro::coroutine_handle<>>(); in main() 53 do_test<coro::coroutine_handle<int>>(); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.capacity/ |
| H A D | operator_bool.pass.cpp | 27 void do_test() { in do_test() function 54 do_test<coro::coroutine_handle<>>(); in main() 55 do_test<coro::coroutine_handle<int>>(); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/ |
| H A D | new_align_val_t_nothrow.pass.cpp | 52 auto do_test = []() { in test_max_alloc() local 62 do_test(); in test_max_alloc() 69 do_test(); in test_max_alloc()
|
| /llvm-project-15.0.7/libcxx/test/std/language.support/support.coroutines/coroutine.handle/coroutine.handle.resumption/ |
| H A D | destroy.pass.cpp | 39 void do_test(std::coroutine_handle<Promise>&& H) { in do_test() function 56 do_test(std::coroutine_handle<>{}); in main() 57 do_test(std::coroutine_handle<int>{}); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.array/ |
| H A D | new_align_val_t_nothrow.pass.cpp | 52 auto do_test = []() { in test_max_alloc() local 62 do_test(); in test_max_alloc() 69 do_test(); in test_max_alloc()
|
| /llvm-project-15.0.7/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.resumption/ |
| H A D | destroy.pass.cpp | 40 void do_test(coro::coroutine_handle<Promise>&& H) { in do_test() function 57 do_test(coro::coroutine_handle<>{}); in main() 58 do_test(coro::coroutine_handle<int>{}); in main()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/progress_reporting/ |
| H A D | TestTrimmedProgressReporting.py | 17 def do_test(self, term_width, pattern_list): member in TestTrimmedProgressReporting 36 self.do_test(19, ['Locating externa...', 46 self.do_test(80, ['Locating external symbol file for a.out...',
|
| /llvm-project-15.0.7/lldb/test/API/lang/c/forward/ |
| H A D | TestForwardDeclaration.py | 13 def do_test(self, dictionary=None): member in ForwardDeclarationTestCase 53 self.do_test() 63 self.do_test(dict(CFLAGS_EXTRAS="-gdwarf-5 -gpubnames"))
|