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

Lines Matching defs:c2

51 test(int P, const C& c0, const C& c2)
58 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
60 assert(c1.size() == c1_osize + c2.size());
65 for (int j = 0; static_cast<std::size_t>(j) < c2.size(); ++j, ++i)
75 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
77 assert(c1.size() == c1_osize + c2.size());
82 for (int j = 0; static_cast<std::size_t>(j) < c2.size(); ++j, ++i)
92 CI i = c1.insert(c1.begin() + P, BCI(c2.begin()), BCI(c2.end()));
94 assert(c1.size() == c1_osize + c2.size());
99 for (int j = 0; static_cast<std::size_t>(j) < c2.size(); ++j, ++i)
115 C c2 = make<C>(M);
116 test(i, c1, c2);
124 C c2 = make<C>(M);
125 test(i, c1, c2);
133 C c2 = make<C>(M);
134 test(i, c1, c2);
142 C c2 = make<C>(M);
143 test(i, c1, c2);
151 C c2 = make<C>(M);
152 test(i, c1, c2);
160 C c2 = make<C>(M);
161 test(i, c1, c2);
168 testI(int P, C& c1, const C& c2)
173 CI i = c1.insert(c1.begin() + P, ICI(c2.begin()), ICI(c2.end()));
175 assert(c1.size() == c1_osize + c2.size());
180 for (int j = 0; static_cast<std::size_t>(j) < c2.size(); ++j, ++i)
195 C c2 = make<C>(M);
196 testI(i, c1, c2);
204 C c2 = make<C>(M);
205 testI(i, c1, c2);
213 C c2 = make<C>(M);
214 testI(i, c1, c2);
222 C c2 = make<C>(M);
223 testI(i, c1, c2);
231 C c2 = make<C>(M);
232 testI(i, c1, c2);