HelenOS sources

emplace_hint      366 uspace/lib/cpp/include/__bits/adt/map.hpp                 return emplace_hint(hint, forward<T>(val));
emplace_hint      977 uspace/lib/cpp/include/__bits/adt/map.hpp                 return emplace_hint(hint, forward<T>(val));
emplace_hint      292 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 return emplace_hint(hint, forward<T>(val));
emplace_hint      969 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp                 return emplace_hint(hint, forward<T>(val));
emplace_hint      167 uspace/lib/cpp/src/__bits/test/map.cpp         auto res3 = map1.emplace_hint(map1.begin(), 2, 4);
emplace_hint      172 uspace/lib/cpp/src/__bits/test/map.cpp         auto res4 = map1.emplace_hint(map1.begin(), 2, 5);
emplace_hint      128 uspace/lib/cpp/src/__bits/test/set.cpp         auto res3 = set1.emplace_hint(set1.begin(), 2);
emplace_hint      132 uspace/lib/cpp/src/__bits/test/set.cpp         auto res4 = set1.emplace_hint(set1.begin(), 2);
emplace_hint      149 uspace/lib/cpp/src/__bits/test/unordered_map.cpp         auto res3 = map1.emplace_hint(map1.begin(), 2, 4);
emplace_hint      154 uspace/lib/cpp/src/__bits/test/unordered_map.cpp         auto res4 = map1.emplace_hint(map1.begin(), 2, 5);
emplace_hint      118 uspace/lib/cpp/src/__bits/test/unordered_set.cpp         auto res3 = set1.emplace_hint(set1.begin(), 2);
emplace_hint      122 uspace/lib/cpp/src/__bits/test/unordered_set.cpp         auto res4 = set1.emplace_hint(set1.begin(), 2);
HelenOS homepage, sources at GitHub