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

Lines Matching defs:ab

53     int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45};
54 int* an = ab + sizeof(ab)/sizeof(ab[0]);
55 test(input_iterator<const int*>(ab), input_iterator<const int*>(an));
56 test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an));
57 test(bidirectional_iterator<const int*>(ab), bidirectional_iterator<const int*>(an));
58 test(random_access_iterator<const int*>(ab), random_access_iterator<const int*>(an));
59 test<limited_allocator<int, 4096> >(ab, an);
61 test<min_allocator<int> >(ab, an);