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

Lines Matching refs:Eq

54         typedef std::pair<C::const_iterator, C::const_iterator> Eq;
55 Eq eq = c.equal_range(1);
56 assert(std::distance(eq.first, eq.second) == 2);
57 C::const_iterator i = eq.first;
63 eq = c.equal_range(2);
64 assert(std::distance(eq.first, eq.second) == 2);
65 i = eq.first;
72 eq = c.equal_range(3);
73 assert(std::distance(eq.first, eq.second) == 1);
74 i = eq.first;
77 eq = c.equal_range(4);
78 assert(std::distance(eq.first, eq.second) == 1);
79 i = eq.first;
111 typedef std::pair<C::const_iterator, C::const_iterator> Eq;
112 Eq eq = c.equal_range(1);
113 assert(std::distance(eq.first, eq.second) == 2);
114 C::const_iterator i = eq.first;
120 eq = c.equal_range(2);
121 assert(std::distance(eq.first, eq.second) == 2);
122 i = eq.first;
129 eq = c.equal_range(3);
130 assert(std::distance(eq.first, eq.second) == 1);
131 i = eq.first;
134 eq = c.equal_range(4);
135 assert(std::distance(eq.first, eq.second) == 1);
136 i = eq.first;