Lines Matching refs:c2

25         const std::vector<int> c1, c2;  in test()  local
26 assert(testComparisons(c1, c2, true, false)); in test()
29 const std::vector<int> c1(1, 1), c2(1, 2); in test() local
30 assert(testComparisons(c1, c2, false, true)); in test()
33 const std::vector<int> c1, c2(1, 2); in test() local
34 assert(testComparisons(c1, c2, false, true)); in test()
40 const std::vector<int> c2(items2, items2 + 3); in test() local
41 assert(testComparisons(c1, c2, false, true)); in test()
47 const std::vector<int> c2(items2, items2 + 3); in test() local
49 assert(testComparisons(c1, c2, false, false)); in test()
55 const std::vector<int> c2(items2, items2 + 3); in test() local
56 assert(testComparisons(c1, c2, false, true)); in test()
61 const std::vector<int> c2(1, 3); in test() local
62 assert(testComparisons(c1, c2, false, true)); in test()
65 const std::vector<LessAndEqComp> c1, c2; in test() local
66 assert(testComparisons(c1, c2, true, false)); in test()
70 const std::vector<LessAndEqComp> c2(1, LessAndEqComp(1)); in test() local
71 assert(testComparisons(c1, c2, true, false)); in test()
75 const std::vector<LessAndEqComp> c2(1, LessAndEqComp(2)); in test() local
76 assert(testComparisons(c1, c2, false, true)); in test()
80 const std::vector<LessAndEqComp> c2(1, LessAndEqComp(2)); in test() local
81 assert(testComparisons(c1, c2, false, true)); in test()
87 const std::vector<LessAndEqComp> c2(items2, items2 + 3); in test() local
88 assert(testComparisons(c1, c2, false, false)); in test()
94 const std::vector<LessAndEqComp> c2(items2, items2 + 3); in test() local
95 assert(testComparisons(c1, c2, false, false)); in test()
101 const std::vector<LessAndEqComp> c2(items2, items2 + 3); in test() local
102 assert(testComparisons(c1, c2, false, true)); in test()
107 const std::vector<LessAndEqComp> c2(1, LessAndEqComp(3)); in test() local
108 assert(testComparisons(c1, c2, false, true)); in test()