Home
last modified time | relevance | path

Searched refs:test_exceptions (Results 1 – 15 of 15) sorted by relevance

/llvm-project/libcxx/test/std/strings/basic.string/string.modifiers/string_assign/
H A Diterator.pass.cpp36 void test_exceptions(S s, It first, It last) { in test_exceptions() function
127 test_exceptions(S(), IIter(TIter(s, s + 10, 4, TIter::TAIncrement)), IIter(TIter())); in test_string()
128 test_exceptions(S(), IIter(TIter(s, s + 10, 5, TIter::TADereference)), IIter(TIter())); in test_string()
129 test_exceptions(S(), IIter(TIter(s, s + 10, 6, TIter::TAComparison)), IIter(TIter())); in test_string()
131 test_exceptions(S(), TIter(s, s + 10, 4, TIter::TAIncrement), TIter()); in test_string()
132 test_exceptions(S(), TIter(s, s + 10, 5, TIter::TADereference), TIter()); in test_string()
133 test_exceptions(S(), TIter(s, s + 10, 6, TIter::TAComparison), TIter()); in test_string()
136 test_exceptions(S(), w, w + 100); in test_string()
/llvm-project/libcxx/test/std/strings/basic.string/string.modifiers/string_append/
H A Diterator.pass.cpp36 TEST_CONSTEXPR_CXX20 void test_exceptions(S s, It first, It last) { in test_exceptions() function
151 test_exceptions(S(), IIter(TIter(s, s + 10, 4, TIter::TAIncrement)), IIter(TIter())); in test_string()
152 test_exceptions(S(), IIter(TIter(s, s + 10, 5, TIter::TADereference)), IIter(TIter())); in test_string()
153 test_exceptions(S(), IIter(TIter(s, s + 10, 6, TIter::TAComparison)), IIter(TIter())); in test_string()
155 test_exceptions(S(), TIter(s, s + 10, 4, TIter::TAIncrement), TIter()); in test_string()
156 test_exceptions(S(), TIter(s, s + 10, 5, TIter::TADereference), TIter()); in test_string()
157 test_exceptions(S(), TIter(s, s + 10, 6, TIter::TAComparison), TIter()); in test_string()
160 test_exceptions(S(), w, w + 100); in test_string()
/llvm-project/libcxx/test/std/strings/basic.string/string.modifiers/string_insert/
H A Diter_iter_iter.pass.cpp38 TEST_CONSTEXPR_CXX20 void test_exceptions(S s, typename S::difference_type pos, It first, It last) { in test_exceptions() function
161 test_exceptions(S(), 0, IIter(TIter(s, s + 10, 4, TIter::TAIncrement)), IIter(TIter())); in test()
162 test_exceptions(S(), 0, IIter(TIter(s, s + 10, 5, TIter::TADereference)), IIter(TIter())); in test()
163 test_exceptions(S(), 0, IIter(TIter(s, s + 10, 6, TIter::TAComparison)), IIter(TIter())); in test()
165 test_exceptions(S(), 0, TIter(s, s + 10, 4, TIter::TAIncrement), TIter()); in test()
166 test_exceptions(S(), 0, TIter(s, s + 10, 5, TIter::TADereference), TIter()); in test()
167 test_exceptions(S(), 0, TIter(s, s + 10, 6, TIter::TAComparison), TIter()); in test()
170 test_exceptions(S(), 0, w, w + 100); in test()
/llvm-project/libcxx/test/std/containers/sequences/array/
H A Dat_const.pass.cpp37 void test_exceptions() in test_exceptions() function
99 test_exceptions(); in main()
H A Dat.pass.cpp41 void test_exceptions() in test_exceptions() function
103 test_exceptions(); in main()
/llvm-project/libcxx/test/libcxx/utilities/
H A Dexception_guard.pass.cpp101 void test_exceptions() { in test_exceptions()
156 test_exceptions(); in main()
100 void test_exceptions() { test_exceptions() function
/llvm-project/libcxx/test/std/containers/views/views.span/span.elem/
H A Dat.pass.cpp75 void test_exceptions() { in test_exceptions() function
185 test_exceptions(); in main()
/llvm-project/libcxx/test/std/utilities/variant/variant.visit.member/
H A Dvisit_return_type.pass.cpp187 void test_exceptions() {
304 test_exceptions<void>(); in main()
310 test_exceptions<int>(); in main()
188 void test_exceptions() { test_exceptions() function
H A Dvisit.pass.cpp128 void test_exceptions() {
221 test_exceptions(); in main()
129 void test_exceptions() { test_exceptions() function
/llvm-project/libcxx/test/std/containers/views/views.span/span.cons/
H A Diterator_sentinel.pass.cpp126 void test_exceptions() { in test_exceptions() function
142 test_exceptions(); in main()
/llvm-project/clang/test/Parser/
H A Dopencl-cxx-keywords.cl8 kernel void test_exceptions() {
/llvm-project/libcxx/test/std/utilities/variant/variant.visit/
H A Dvisit_return_type.pass.cpp291 void test_exceptions() { in test_exceptions() function
476 test_exceptions<void>(); in main()
482 test_exceptions<int>(); in main()
H A Dvisit.pass.cpp244 void test_exceptions() { in test_exceptions() function
401 test_exceptions(); in main()
/llvm-project/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
H A Diter_iter_iter_iter.pass.cpp42 TEST_CONSTEXPR_CXX20 void test_exceptions(S s, typename S::size_type pos1, typename S::size_type n1… in test_exceptions() function
992test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, IIter(TIter(s, s + 10, 4, TIter::TAIncrement)), … in test9()
993test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, IIter(TIter(s, s + 10, 5, TIter::TADereference))… in test9()
994test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, IIter(TIter(s, s + 10, 6, TIter::TAComparison)),… in test9()
996test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, TIter(s, s + 10, 4, TIter::TAIncrement), TIter()… in test9()
997test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, TIter(s, s + 10, 5, TIter::TADereference), TIter… in test9()
998test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, TIter(s, s + 10, 6, TIter::TAComparison), TIter(… in test9()
1001 test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, w, w + 100); in test9()
/llvm-project/lldb/test/API/python_api/file_handle/
H A DTestFileHandle.py579 def test_exceptions(self): member in FileHandleTestCase