Home | History | Annotate | Download | only in vector.cons

Lines Matching refs:an

51     int* an = a + sizeof(a)/sizeof(a[0]);
53 test<std::vector<int> >(input_iterator<const int*>(a), input_iterator<const int*>(an), alloc);
54 test<std::vector<int> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an), alloc);
55 test<std::vector<int> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an), alloc);
56 test<std::vector<int> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an), alloc);
57 test<std::vector<int> >(a, an, alloc);
62 int* an = a + sizeof(a)/sizeof(a[0]);
64 test<std::vector<int, min_allocator<int>> >(input_iterator<const int*>(a), input_iterator<const int*>(an), alloc);
65 test<std::vector<int, min_allocator<int>> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an), alloc);
66 test<std::vector<int, min_allocator<int>> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an), alloc);
67 test<std::vector<int, min_allocator<int>> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an), alloc);
68 test<std::vector<int, min_allocator<int>> >(a, an, alloc);
69 test<std::vector<int, implicit_conv_allocator<int>> >(a, an, nullptr);