Home | History | Annotate | Download | only in unord.multimap.cnstr

Lines Matching refs:Eq

52         typedef std::pair<C::const_iterator, C::const_iterator> Eq;
53 Eq eq = c.equal_range(1);
54 assert(std::distance(eq.first, eq.second) == 2);
55 C::const_iterator i = eq.first;
61 eq = c.equal_range(2);
62 assert(std::distance(eq.first, eq.second) == 2);
63 i = eq.first;
70 eq = c.equal_range(3);
71 assert(std::distance(eq.first, eq.second) == 1);
72 i = eq.first;
75 eq = c.equal_range(4);
76 assert(std::distance(eq.first, eq.second) == 1);
77 i = eq.first;
109 typedef std::pair<C::const_iterator, C::const_iterator> Eq;
110 Eq eq = c.equal_range(1);
111 assert(std::distance(eq.first, eq.second) == 2);
112 C::const_iterator i = eq.first;
118 eq = c.equal_range(2);
119 assert(std::distance(eq.first, eq.second) == 2);
120 i = eq.first;
127 eq = c.equal_range(3);
128 assert(std::distance(eq.first, eq.second) == 1);
129 i = eq.first;
132 eq = c.equal_range(4);
133 assert(std::distance(eq.first, eq.second) == 1);
134 i = eq.first;