Searched refs:jb (Results 1 – 5 of 5) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/ |
D | reverse_copy.pass.cpp | 36 int jb[sb] = {-1}; in test() local 37 r = std::reverse_copy(InIter(ib), InIter(ib+sb), OutIter(jb)); in test() 38 assert(base(r) == jb+sb); in test() 39 assert(jb[0] == 1); in test() 40 assert(jb[1] == 0); in test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | setjmp_h.pass.cpp | 17 jmp_buf jb; in main() local 18 static_assert((std::is_same<__typeof__(longjmp(jb, 0)), void>::value), in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.runtime/ |
D | csetjmp.pass.cpp | 21 std::jmp_buf jb; in main() local 22 static_assert((std::is_same<__typeof__(std::longjmp(jb, 0)), void>::value), in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/ |
D | unique_copy.pass.cpp | 38 int jb[sb] = {-1}; in test() local 39 r = std::unique_copy(InIter(ib), InIter(ib+sb), OutIter(jb)); in test() 40 assert(base(r) == jb + sb); in test() 41 assert(jb[0] == 0); in test() 42 assert(jb[1] == 1); in test()
|
D | unique_copy_pred.pass.cpp | 51 int jb[sb] = {-1}; in test() local 53 r = std::unique_copy(InIter(ib), InIter(ib+sb), OutIter(jb), count_equal()); in test() 54 assert(base(r) == jb + sb); in test() 55 assert(jb[0] == 0); in test() 56 assert(jb[1] == 1); in test()
|