Home
last modified time | relevance | path

Searched refs:it_success (Results 1 – 11 of 11) sorted by relevance

/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/arrow/util/
H A Dmap.h36 auto it_success = map->emplace(std::move(key), std::move(placeholder)); variable
37 if (it_success.second) {
39 const auto& inserted_key = it_success.first->first;
40 auto* value = &it_success.first->second;
43 return it_success.first;
52 auto it_success = map->emplace(std::move(key), std::move(placeholder)); variable
53 if (it_success.second) {
55 const auto& inserted_key = it_success.first->first;
56 auto* value = &it_success.first->second;
59 return it_success.first;
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/util/
H A Dmap.h36 auto it_success = map->emplace(std::move(key), std::move(placeholder)); variable
37 if (it_success.second) {
39 const auto& inserted_key = it_success.first->first;
40 auto* value = &it_success.first->second;
43 return it_success.first;
52 auto it_success = map->emplace(std::move(key), std::move(placeholder)); variable
53 if (it_success.second) {
55 const auto& inserted_key = it_success.first->first;
56 auto* value = &it_success.first->second;
59 return it_success.first;
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/compute/exec/
H A Dsubtree_internal.h80 auto it_success = expr_to_code_.emplace(expr, next_code); in GetOrInsert() local
82 if (it_success.second) { in GetOrInsert()
85 return it_success.first->second; in GetOrInsert()
H A Dexec_plan.cc491 auto it_success = factories_.emplace(std::move(factory_name), std::move(factory)); in default_exec_factory_registry() local
493 if (!it_success.second) { in default_exec_factory_registry()
494 const auto& factory_name = it_success.first->first; in default_exec_factory_registry()
/dports/databases/percona57-server/percona-server-5.7.36-39/storage/rocksdb/rocksdb/env/
H A Dfs_posix.cc806 const auto it_success = locked_files.insert({fname, lhi}); in LockFile() local
807 if (it_success.second == false) { in LockFile()
808 LockHoldingInfo prev_info = it_success.first->second; in LockFile()
/dports/databases/percona57-client/percona-server-5.7.36-39/storage/rocksdb/rocksdb/env/
H A Dfs_posix.cc806 const auto it_success = locked_files.insert({fname, lhi}); in LockFile() local
807 if (it_success.second == false) { in LockFile()
808 LockHoldingInfo prev_info = it_success.first->second; in LockFile()
/dports/databases/rocksdb-lite/rocksdb-6.26.1/env/
H A Dfs_posix.cc815 const auto it_success = locked_files.insert({fname, lhi}); in LockFile() local
816 if (it_success.second == false) { in LockFile()
817 LockHoldingInfo prev_info = it_success.first->second; in LockFile()
/dports/databases/rocksdb/rocksdb-6.26.1/env/
H A Dfs_posix.cc815 const auto it_success = locked_files.insert({fname, lhi}); in LockFile() local
816 if (it_success.second == false) { in LockFile()
817 LockHoldingInfo prev_info = it_success.first->second; in LockFile()
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/storage/rocksdb/rocksdb/env/
H A Dfs_posix.cc806 const auto it_success = locked_files.insert({fname, lhi}); in LockFile() local
807 if (it_success.second == false) { in LockFile()
808 LockHoldingInfo prev_info = it_success.first->second; in LockFile()
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/compute/kernels/
H A Dhash_aggregate.cc142 auto it_success = map_.emplace(key, num_groups_); in Consume() local
143 auto group_id = it_success.first->second; in Consume()
145 if (it_success.second) { in Consume()
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/telegram/
H A DContactsManager.cpp5456 auto it_success = different_new_contacts.emplace(std::move(contacts[i]), unique_size); in change_imported_contacts() local
5457 new_contacts_unique_id[i] = it_success.first->second; in change_imported_contacts()
5458 if (it_success.second) { in change_imported_contacts()
5459 unique_new_contacts.push_back(it_success.first->first); in change_imported_contacts()