Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/strings/basic.string/string.modifiers/string_assign/
H A Diterator.pass.cpp35 test_exceptions(S s, It first, It last) in test_exceptions() function
180 test_exceptions(S(), IIter(TIter(s, s+10, 4, TIter::TAIncrement)), IIter(TIter())); in test()
181 test_exceptions(S(), IIter(TIter(s, s+10, 5, TIter::TADereference)), IIter(TIter())); in test()
182 test_exceptions(S(), IIter(TIter(s, s+10, 6, TIter::TAComparison)), IIter(TIter())); in test()
184 test_exceptions(S(), TIter(s, s+10, 4, TIter::TAIncrement), TIter()); in test()
185 test_exceptions(S(), TIter(s, s+10, 5, TIter::TADereference), TIter()); in test()
186 test_exceptions(S(), TIter(s, s+10, 6, TIter::TAComparison), TIter()); in test()
189 test_exceptions(S(), w, w+100); in test()
/llvm-project-15.0.7/libcxx/test/std/strings/basic.string/string.modifiers/string_append/
H A Diterator.pass.cpp35 test_exceptions(S s, It first, It last) in test_exceptions() function
180 test_exceptions(S(), IIter(TIter(s, s+10, 4, TIter::TAIncrement)), IIter(TIter())); in test()
181 test_exceptions(S(), IIter(TIter(s, s+10, 5, TIter::TADereference)), IIter(TIter())); in test()
182 test_exceptions(S(), IIter(TIter(s, s+10, 6, TIter::TAComparison)), IIter(TIter())); in test()
184 test_exceptions(S(), TIter(s, s+10, 4, TIter::TAIncrement), TIter()); in test()
185 test_exceptions(S(), TIter(s, s+10, 5, TIter::TADereference), TIter()); in test()
186 test_exceptions(S(), TIter(s, s+10, 6, TIter::TAComparison), TIter()); in test()
189 test_exceptions(S(), w, w+100); in test()
/llvm-project-15.0.7/libcxx/test/std/strings/basic.string/string.modifiers/string_insert/
H A Diter_iter_iter.pass.cpp37 test_exceptions(S s, typename S::difference_type pos, It first, It last) in test_exceptions() function
158 test_exceptions(S(), 0, IIter(TIter(s, s+10, 4, TIter::TAIncrement)), IIter(TIter())); in test()
159 test_exceptions(S(), 0, IIter(TIter(s, s+10, 5, TIter::TADereference)), IIter(TIter())); in test()
160 test_exceptions(S(), 0, IIter(TIter(s, s+10, 6, TIter::TAComparison)), IIter(TIter())); in test()
162 test_exceptions(S(), 0, TIter(s, s+10, 4, TIter::TAIncrement), TIter()); in test()
163 test_exceptions(S(), 0, TIter(s, s+10, 5, TIter::TADereference), TIter()); in test()
164 test_exceptions(S(), 0, TIter(s, s+10, 6, TIter::TAComparison), TIter()); in test()
167 test_exceptions(S(), 0, w, w+100); in test()
/llvm-project-15.0.7/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-15.0.7/libcxx/test/libcxx/utilities/
H A Dtransaction.pass.cpp99 void test_exceptions() { in test_exceptions() function
154 test_exceptions(); in main()
/llvm-project-15.0.7/clang/test/Parser/
H A Dopencl-cxx-keywords.cl8 kernel void test_exceptions() {
/llvm-project-15.0.7/libcxx/test/std/utilities/variant/variant.visit/
H A Dvisit_return_type.pass.cpp323 void test_exceptions() { in test_exceptions() function
508 test_exceptions<void>(); in main()
514 test_exceptions<int>(); in main()
H A Dvisit.pass.cpp276 void test_exceptions() { in test_exceptions() function
432 test_exceptions(); in main()
/llvm-project-15.0.7/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
H A Diter_iter_iter_iter.pass.cpp43 test_exceptions(S s, typename S::size_type pos1, typename S::size_type n1, It f, It l) in test_exceptions() function
1002test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, IIter(TIter(s, s+10, 4, TIter::TAIncrement)), II… in test9()
1003test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, IIter(TIter(s, s+10, 5, TIter::TADereference)), … in test9()
1004test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, IIter(TIter(s, s+10, 6, TIter::TAComparison)), I… in test9()
1006test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, TIter(s, s+10, 4, TIter::TAIncrement), TIter()); in test9()
1007test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, TIter(s, s+10, 5, TIter::TADereference), TIter()… in test9()
1008test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, TIter(s, s+10, 6, TIter::TAComparison), TIter()); in test9()
1011 test_exceptions(S("abcdefghijklmnopqrst"), 10, 5, w, w+100); in test9()
/llvm-project-15.0.7/lldb/test/API/python_api/file_handle/
H A DTestFileHandle.py589 def test_exceptions(self): member in FileHandleTestCase