Lines Matching refs:begin
22 ordered_map<std::string, std::string> om(m.begin(), m.end());
29 ordered_map<std::string, std::string> om(m.begin(), m.end());
39 ordered_map<std::string, std::string> om(m.begin(), m.end());
72 ordered_map<std::string, std::string> om(m.begin(), m.end());
114 auto it = om.begin();
132 auto it = om.begin();
150 auto it = om.begin();
166 auto it = om.begin();
177 CHECK(om.begin()->first == "eins");
178 CHECK(std::next(om.begin(), 1)->first == "zwei");
179 CHECK(std::next(om.begin(), 2)->first == "drei");
181 auto it = om.erase(om.begin());
185 auto it2 = om.begin();
202 auto it = om.erase(om.begin() + 1, om.begin() + 3);
214 auto it = om.erase(om.begin(), om.begin() + 2);
226 auto it = om.erase(om.begin() + 3, om.end());
260 CHECK(om.find("eins") == om.begin());
261 CHECK(om.find(std::string("eins")) == om.begin());
262 CHECK(om.find(eins) == om.begin());
267 CHECK(com.find("eins") == com.begin());
268 CHECK(com.find(std::string("eins")) == com.begin());
269 CHECK(com.find(eins) == com.begin());
288 CHECK(res1.first == om.begin());
293 CHECK(res4.first == om.begin() + 3);
301 CHECK(res1.first == om.begin());
306 CHECK(res4.first == om.begin() + 3);