Home
last modified time | relevance | path

Searched refs:emplace_hint (Results 1 – 16 of 16) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/container/
Dbtree_set.h254 using Base::emplace_hint;
558 using Base::emplace_hint;
Dbtree_map.h282 using Base::emplace_hint;
640 using Base::emplace_hint;
Dflat_hash_set.h305 using Base::emplace_hint;
Dnode_hash_set.h295 using Base::emplace_hint;
Dnode_hash_map.h331 using Base::emplace_hint;
Dflat_hash_map.h340 using Base::emplace_hint;
Dbtree_test.cc1648 auto emplace_iter = s.emplace_hint(iter, value_to_insert); in TEST()
1681 auto emplace_iter = s.emplace_hint(iter, key_to_insert, value1); in TEST()
/third_party/json/test/thirdparty/fifo_map/
Dfifo_map.hpp357 iterator emplace_hint(const_iterator hint, Args&& ... args) in emplace_hint() function in nlohmann::fifo_map
361 return m_map.emplace_hint(hint, std::move(value)); in emplace_hint()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dunordered_set_modifiers_test.h127 auto it = m.emplace_hint(m.end(), val); in TYPED_TEST_P()
129 it = m.emplace_hint(it, val); in TYPED_TEST_P()
Dunordered_map_modifiers_test.h178 auto it = m.emplace_hint(m.end(), val); in TYPED_TEST_P()
181 it = m.emplace_hint(it, val2); in TYPED_TEST_P()
Dbtree_container.h307 iterator emplace_hint(const_iterator hint, Args &&... args) { in emplace_hint() function
602 iterator emplace_hint(const_iterator hint, Args &&... args) { in emplace_hint() function
Draw_hash_set_test.cc775 set1.emplace_hint(set1.begin(), 1); in TestDecompose()
777 set1.emplace_hint(set1.begin(), "3"); in TestDecompose()
780 set1.emplace_hint(set1.begin(), one); in TestDecompose()
782 set1.emplace_hint(set1.begin(), three); in TestDecompose()
Draw_hash_set.h1219 iterator emplace_hint(const_iterator, Args&&... args) {
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DIndirectDrawMetadata.cpp157 mIndexedIndirectBufferValidationInfo.emplace_hint(it, config, entry.second); in AddBundle()
/third_party/gn/src/base/containers/
Dflat_tree.h236 iterator emplace_hint(const_iterator position_hint, Args&&... args);
786 auto flat_tree<Key, Value, GetKeyFromValue, KeyCompare>::emplace_hint(
/third_party/mesa3d/src/compiler/clc/
Dclc_helpers.cpp405 auto iter = decorationGroups.emplace_hint(lowerBound, groupId, std::vector<uint32_t>{}); in parseOpGroupDecorate()