HomeSort by relevance Sort by last modified time
    Searched defs:an (Results 1 - 25 of 154) sorted by null

1 2 3 4 5 6 7

  /external/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.cons/
ctor_iter_iter.pass.cpp 22 int* an = a + sizeof(a)/sizeof(a[0]); local
23 std::priority_queue<int> q(a, an);
24 assert(q.size() == static_cast<std::size_t>(an - a));
ctor_iter_iter_comp.pass.cpp 23 int* an = a + sizeof(a)/sizeof(a[0]); local
25 q(a, an, std::greater<int>());
26 assert(q.size() == static_cast<std::size_t>(an - a));
  /external/libcxx/test/std/containers/sequences/deque/deque.cons/
copy_alloc.pass.cpp 33 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>()),
move_alloc.pass.cpp 26 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 = ab + sizeof(ab)/sizeof(ab[0]) local
    [all...]
move_assign.pass.cpp 26 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 = ab + sizeof(ab)/sizeof(ab[0]) local
    [all...]
copy.pass.cpp 33 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
34 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));
move.pass.cpp 26 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)
op_equal.pass.cpp 32 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));
  /external/libcxx/test/std/containers/sequences/vector/vector.cons/
construct_iter_iter.pass.cpp 39 int* an = a + sizeof(a)/sizeof(a[0]); local
40 test<std::vector<int> >(input_iterator<const int*>(a), input_iterator<const int*>(an));
41 test<std::vector<int> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an));
42 test<std::vector<int> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an));
43 test<std::vector<int> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an));
44 test<std::vector<int> >(a, an);
46 test<std::vector<int, limited_allocator<int, 63> > >(input_iterator<const int*>(a), input_iterator<const int*>(an));
48 test<std::vector<int, limited_allocator<int, 18 + 1> > >(forward_iterator<const int*>(a), forward_iterator<const int*>(an));
49 test<std::vector<int, limited_allocator<int, 18 + 1> > >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an));
50 test<std::vector<int, limited_allocator<int, 18 + 1> > >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an));
    [all...]
copy_alloc.pass.cpp 38 int* an = a + sizeof(a)/sizeof(a[0]); local
39 test(std::vector<int>(a, an), std::allocator<int>());
56 int* an = a + sizeof(a)/sizeof(a[0]); local
57 test(std::vector<int, min_allocator<int>>(a, an), min_allocator<int>());
  /external/libcxx/test/std/containers/sequences/vector.bool/
construct_iter_iter.pass.cpp 37 bool* an = a + sizeof(a)/sizeof(a[0]); local
38 test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an));
39 test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an));
40 test<std::vector<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an));
41 test<std::vector<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an));
42 test<std::vector<bool> >(a, an);
44 test<std::vector<bool, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an));
45 test<std::vector<bool, min_allocator<bool>> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an));
46 test<std::vector<bool, min_allocator<bool>> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an));
47 test<std::vector<bool, min_allocator<bool>> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an));
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons/
ctor_iter_iter.pass.cpp 21 int* an = a + sizeof(a)/sizeof(a[0]); local
22 std::priority_queue<int> q(a, an);
23 assert(q.size() == an - a);
ctor_iter_iter_comp.pass.cpp 22 int* an = a + sizeof(a)/sizeof(a[0]); local
24 q(a, an, std::greater<int>());
25 assert(q.size() == an - a);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
copy_alloc.pass.cpp 33 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>()),
move_alloc.pass.cpp 26 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 = ab + sizeof(ab)/sizeof(ab[0]) local
    [all...]
move_assign.pass.cpp 26 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 = ab + sizeof(ab)/sizeof(ab[0]) local
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
construct_iter_iter.pass.cpp 37 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...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
construct_iter_iter.pass.cpp 35 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...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/container.adaptors/priority.queue/priqueue.cons/
ctor_iter_iter.pass.cpp 21 int* an = a + sizeof(a)/sizeof(a[0]); local
22 std::priority_queue<int> q(a, an);
23 assert(q.size() == an - a);
ctor_iter_iter_comp.pass.cpp 22 int* an = a + sizeof(a)/sizeof(a[0]); local
24 q(a, an, std::greater<int>());
25 assert(q.size() == an - a);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.cons/
copy_alloc.pass.cpp 33 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>()),
move_alloc.pass.cpp 26 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 = ab + sizeof(ab)/sizeof(ab[0]) local
    [all...]
move_assign.pass.cpp 26 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 = ab + sizeof(ab)/sizeof(ab[0]) local
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/vector.cons/
construct_iter_iter.pass.cpp 38 int* an = a + sizeof(a)/sizeof(a[0]); local
39 test<std::vector<int> >(input_iterator<const int*>(a), input_iterator<const int*>(an));
40 test<std::vector<int> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an));
41 test<std::vector<int> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an));
42 test<std::vector<int> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an));
43 test<std::vector<int> >(a, an);
45 test<std::vector<int, stack_allocator<int, 63> > >(input_iterator<const int*>(a), input_iterator<const int*>(an));
46 test<std::vector<int, stack_allocator<int, 18> > >(forward_iterator<const int*>(a), forward_iterator<const int*>(an));
47 test<std::vector<int, stack_allocator<int, 18> > >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an));
48 test<std::vector<int, stack_allocator<int, 18> > >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an));
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector.bool/
construct_iter_iter.pass.cpp 36 bool* an = a + sizeof(a)/sizeof(a[0]); local
37 test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an));
38 test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an));
39 test<std::vector<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an));
40 test<std::vector<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an));
41 test<std::vector<bool> >(a, an);
43 test<std::vector<bool, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an));
44 test<std::vector<bool, min_allocator<bool>> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an));
45 test<std::vector<bool, min_allocator<bool>> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an));
46 test<std::vector<bool, min_allocator<bool>> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an));
    [all...]

Completed in 452 milliseconds

1 2 3 4 5 6 7