Lines Matching refs:map
97 void testMap(map<int32_t, int32_t> &out, const map<int32_t, int32_t> &thing) override in testMap()
99 map<int32_t, int32_t>::const_iterator m_iter; in testMap()
117 void testStringMap(map<std::string, std::string> &out, in testStringMap()
118 const map<std::string, std::string> &thing) override in testStringMap()
120 map<std::string, std::string>::const_iterator m_iter; in testStringMap()
188 void testMapMap(map<int32_t, map<int32_t, int32_t>> &mapmap, const int32_t hello) override in testMapMap()
190 map<int32_t, int32_t> pos; in testMapMap()
191 map<int32_t, int32_t> neg; in testMapMap()
203 void testInsanity(map<UserId, map<Numberz::type, Insanity>> &insane, in testInsanity()
207 map<Numberz::type, Insanity> first_map; in testInsanity()
208 map<Numberz::type, Insanity> second_map; in testInsanity()
221 map<UserId, map<Numberz::type, Insanity>>::const_iterator i_iter; in testInsanity()
225 map<Numberz::type, Insanity>::const_iterator i2_iter; in testInsanity()
230 map<Numberz::type, UserId> userMap = i2_iter->second.userMap; in testInsanity()
231 map<Numberz::type, UserId>::const_iterator um; in testInsanity()
260 const std::map<int16_t, std::string> &arg3, const Numberz::type arg4, in testMulti()