Home | History | Annotate | Download | only in insert.iter.op=

Lines Matching defs:c2

27      typename C::value_type x3, const C& c2)
33 assert(c1 == c2);
54 C c2 = c1;
55 insert3at(c2, c2.begin(), 'a', 'b', 'c');
56 test(c1, 0, 'a', 'b', 'c', c2);
57 c2 = c1;
58 insert3at(c2, c2.begin()+1, 'a', 'b', 'c');
59 test(c1, 1, 'a', 'b', 'c', c2);
60 c2 = c1;
61 insert3at(c2, c2.begin()+2, 'a', 'b', 'c');
62 test(c1, 2, 'a', 'b', 'c', c2);
63 c2 = c1;
64 insert3at(c2, c2.begin()+3, 'a', 'b', 'c');
65 test(c1, 3, 'a', 'b', 'c', c2);
72 C c2 = c1;
73 insert3at(c2, c2.begin(), 'a', 'b', 'c');
74 test(c1, 0, 'a', 'b', 'c', c2);
75 c2 = c1;
76 insert3at(c2, c2.begin()+1, 'a', 'b', 'c');
77 test(c1, 1, 'a', 'b', 'c', c2);
78 c2 = c1;
79 insert3at(c2, c2.begin()+2, 'a', 'b', 'c');
80 test(c1, 2, 'a', 'b', 'c', c2);
81 c2 = c1;
82 insert3at(c2, c2.begin()+3, 'a', 'b', 'c');
83 test(c1, 3, 'a', 'b', 'c', c2);