Lines Matching refs:LessAndEqComp

65         const std::vector<LessAndEqComp> c1, c2;  in test()
69 const std::vector<LessAndEqComp> c1(1, LessAndEqComp(1)); in test()
70 const std::vector<LessAndEqComp> c2(1, LessAndEqComp(1)); in test()
74 const std::vector<LessAndEqComp> c1(1, LessAndEqComp(1)); in test()
75 const std::vector<LessAndEqComp> c2(1, LessAndEqComp(2)); in test()
79 const std::vector<LessAndEqComp> c1; in test()
80 const std::vector<LessAndEqComp> c2(1, LessAndEqComp(2)); in test()
84 LessAndEqComp items1[3] = {LessAndEqComp(1), LessAndEqComp(2), LessAndEqComp(2)}; in test()
85 LessAndEqComp items2[3] = {LessAndEqComp(1), LessAndEqComp(2), LessAndEqComp(1)}; in test()
86 const std::vector<LessAndEqComp> c1(items1, items1 + 3); in test()
87 const std::vector<LessAndEqComp> c2(items2, items2 + 3); in test()
91 LessAndEqComp items1[3] = {LessAndEqComp(3), LessAndEqComp(3), LessAndEqComp(3)}; in test()
92 LessAndEqComp items2[3] = {LessAndEqComp(3), LessAndEqComp(2), LessAndEqComp(3)}; in test()
93 const std::vector<LessAndEqComp> c1(items1, items1 + 3); in test()
94 const std::vector<LessAndEqComp> c2(items2, items2 + 3); in test()
98 LessAndEqComp items1[2] = {LessAndEqComp(1), LessAndEqComp(2)}; in test()
99 LessAndEqComp items2[3] = {LessAndEqComp(1), LessAndEqComp(2), LessAndEqComp(0)}; in test()
100 const std::vector<LessAndEqComp> c1(items1, items1 + 2); in test()
101 const std::vector<LessAndEqComp> c2(items2, items2 + 3); in test()
105 LessAndEqComp items1[3] = {LessAndEqComp(1), LessAndEqComp(2), LessAndEqComp(0)}; in test()
106 const std::vector<LessAndEqComp> c1(items1, items1 + 3); in test()
107 const std::vector<LessAndEqComp> c2(1, LessAndEqComp(3)); in test()