Searched defs:an (Results 1 - 18 of 18) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons/
H A Dctor_iter_iter.pass.cpp21 int* an = a + sizeof(a)/sizeof(a[0]); local
22 std::priority_queue<int> q(a, an);
23 assert(q.size() == an - a);
H A Dctor_iter_iter_comp.pass.cpp22 int* an = a + sizeof(a)/sizeof(a[0]); local
24 q(a, an, std::greater<int>());
25 assert(q.size() == an - a);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
H A Dmove_alloc.pass.cpp26 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
29 for (int* p = ab; p < an; ++p)
32 for (int* p = ab; p < an; ++p)
41 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
44 for (int* p = ab; p < an; ++p)
47 for (int* p = ab; p < an; ++p)
56 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
59 for (int* p = ab; p < an; ++p)
62 for (int* p = ab; p < an; ++p)
72 int* an local
[all...]
H A Dmove_assign.pass.cpp26 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
29 for (int* p = ab; p < an; ++p)
32 for (int* p = ab; p < an; ++p)
42 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
45 for (int* p = ab; p < an; ++p)
48 for (int* p = ab; p < an; ++p)
58 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
61 for (int* p = ab; p < an; ++p)
64 for (int* p = ab; p < an; ++p)
75 int* an local
[all...]
H A Dmove.pass.cpp26 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
29 for (int* p = ab; p < an; ++p)
32 for (int* p = ab; p < an; ++p)
41 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
44 for (int* p = ab; p < an; ++p)
47 for (int* p = ab; p < an; ++p)
57 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
60 for (int* p = ab; p < an; ++p)
63 for (int* p = ab; p < an; ++p)
H A Dcopy.pass.cpp31 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
32 test(std::deque<int>(ab, an));
51 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
52 test(std::deque<int, min_allocator<int>>(ab, an));
H A Dcopy_alloc.pass.cpp33 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
34 test(std::deque<int, test_allocator<int> >(ab, an, test_allocator<int>(3)),
39 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
40 test(std::deque<int, other_allocator<int> >(ab, an, other_allocator<int>(3)),
46 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
47 test(std::deque<int, min_allocator<int> >(ab, an, min_allocator<int>()),
H A Dop_equal.pass.cpp32 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
33 test(std::deque<int>(ab, an));
52 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
53 test(std::deque<int, min_allocator<int>>(ab, an));
H A Diter_iter.pass.cpp53 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
54 test(input_iterator<const int*>(ab), input_iterator<const int*>(an));
55 test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an));
56 test(bidirectional_iterator<const int*>(ab), bidirectional_iterator<const int*>(an));
57 test(random_access_iterator<const int*>(ab), random_access_iterator<const int*>(an));
58 test<stack_allocator<int, 4096> >(ab, an);
60 test<min_allocator<int> >(ab, an);
H A Diter_iter_alloc.pass.cpp40 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
41 test(input_iterator<const int*>(ab), input_iterator<const int*>(an), test_allocator<int>(3));
42 test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an), test_allocator<int>(4));
43 test(bidirectional_iterator<const int*>(ab), bidirectional_iterator<const int*>(an), test_allocator<int>(5));
44 test(random_access_iterator<const int*>(ab), random_access_iterator<const int*>(an), test_allocator<int>(6));
46 test(input_iterator<const int*>(ab), input_iterator<const int*>(an), min_allocator<int>());
47 test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an), min_allocator<int>());
48 test(bidirectional_iterator<const int*>(ab), bidirectional_iterator<const int*>(an), min_allocator<int>());
49 test(random_access_iterator<const int*>(ab), random_access_iterator<const int*>(an), min_allocator<int>());
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
H A Dconstruct_iter_iter.pass.cpp37 int* an = a + sizeof(a)/sizeof(a[0]); local
38 test<std::vector<int> >(input_iterator<const int*>(a), input_iterator<const int*>(an));
39 test<std::vector<int> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an));
40 test<std::vector<int> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an));
41 test<std::vector<int> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an));
42 test<std::vector<int> >(a, an);
44 test<std::vector<int, stack_allocator<int, 63> > >(input_iterator<const int*>(a), input_iterator<const int*>(an));
45 test<std::vector<int, stack_allocator<int, 18> > >(forward_iterator<const int*>(a), forward_iterator<const int*>(an));
46 test<std::vector<int, stack_allocator<int, 18> > >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an));
47 test<std::vector<int, stack_allocator<int, 18> > >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an));
[all...]
H A Dcopy.pass.cpp36 int* an = a + sizeof(a)/sizeof(a[0]); local
37 test(std::vector<int>(a, an));
64 int* an = a + sizeof(a)/sizeof(a[0]); local
65 test(std::vector<int, min_allocator<int>>(a, an));
H A Dcopy_alloc.pass.cpp36 int* an = a + sizeof(a)/sizeof(a[0]); local
37 test(std::vector<int>(a, an), std::allocator<int>());
54 int* an = a + sizeof(a)/sizeof(a[0]); local
55 test(std::vector<int, min_allocator<int>>(a, an), min_allocator<int>());
H A Dconstruct_iter_iter_alloc.pass.cpp50 int* an = a + sizeof(a)/sizeof(a[0]); local
52 test<std::vector<int> >(input_iterator<const int*>(a), input_iterator<const int*>(an), alloc);
53 test<std::vector<int> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an), alloc);
54 test<std::vector<int> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an), alloc);
55 test<std::vector<int> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an), alloc);
56 test<std::vector<int> >(a, an, alloc);
61 int* an = a + sizeof(a)/sizeof(a[0]); local
63 test<std::vector<int, min_allocator<int>> >(input_iterator<const int*>(a), input_iterator<const int*>(an), alloc);
64 test<std::vector<int, min_allocator<int>> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an), alloc);
65 test<std::vector<int, min_allocator<int>> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an), allo
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
H A Dconstruct_iter_iter.pass.cpp35 bool* an = a + sizeof(a)/sizeof(a[0]); local
36 test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an));
37 test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an));
38 test<std::vector<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an));
39 test<std::vector<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an));
40 test<std::vector<bool> >(a, an);
42 test<std::vector<bool, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an));
43 test<std::vector<bool, min_allocator<bool>> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an));
44 test<std::vector<bool, min_allocator<bool>> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an));
45 test<std::vector<bool, min_allocator<bool>> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an));
[all...]
H A Dconstruct_iter_iter_alloc.pass.cpp36 bool* an = a + sizeof(a)/sizeof(a[0]); local
39 test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an), alloc);
40 test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an), alloc);
41 test<std::vector<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an), alloc);
42 test<std::vector<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an), alloc);
43 test<std::vector<bool> >(a, an, alloc);
48 test<std::vector<bool, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an), alloc);
49 test<std::vector<bool, min_allocator<bool>> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an), alloc);
50 test<std::vector<bool, min_allocator<bool>> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an), alloc);
51 test<std::vector<bool, min_allocator<bool>> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an), allo
[all...]
H A Dcopy.pass.cpp35 bool* an = a + sizeof(a)/sizeof(a[0]); local
36 test(std::vector<bool>(a, an));
55 bool* an = a + sizeof(a)/sizeof(a[0]); local
56 test(std::vector<bool, min_allocator<bool>>(a, an));
H A Dcopy_alloc.pass.cpp34 int* an = a + sizeof(a)/sizeof(a[0]); local
35 test(std::vector<bool>(a, an), std::allocator<bool>());
52 int* an = a + sizeof(a)/sizeof(a[0]); local
53 test(std::vector<bool, min_allocator<bool>>(a, an), min_allocator<bool>());

Completed in 133 milliseconds