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

Lines Matching defs:ab

40     int ab[] = {3, 4, 2, 8, 0, 1, 44, 34, 45, 96, 80, 1, 13, 31, 45};
41 int* an = ab + sizeof(ab)/sizeof(ab[0]);
42 test(input_iterator<const int*>(ab), input_iterator<const int*>(an), test_allocator<int>(3));
43 test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an), test_allocator<int>(4));
44 test(bidirectional_iterator<const int*>(ab), bidirectional_iterator<const int*>(an), test_allocator<int>(5));
45 test(random_access_iterator<const int*>(ab), random_access_iterator<const int*>(an), test_allocator<int>(6));
47 test(input_iterator<const int*>(ab), input_iterator<const int*>(an), min_allocator<int>());
48 test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an), min_allocator<int>());
49 test(bidirectional_iterator<const int*>(ab), bidirectional_iterator<const int*>(an), min_allocator<int>());
50 test(random_access_iterator<const int*>(ab), random_access_iterator<const int*>(an), min_allocator<int>());