Lines Matching defs:find

21 #include <algorithm> // all_of, find, for_each
1980 auto it = m_value.object->find(key);
2000 auto it = m_value.object->find(std::forward<KeyType>(key));
2018 auto it = m_value.object->find(key);
2038 auto it = m_value.object->find(std::forward<KeyType>(key));
2134 auto it = m_value.object->find(key);
2189 auto it = m_value.object->find(std::forward<KeyType>(key));
2220 const auto it = find(key);
2245 const auto it = find(key);
2271 const auto it = find(std::forward<KeyType>(key));
2298 const auto it = find(std::forward<KeyType>(key));
2579 const auto it = m_value.object->find(std::forward<KeyType>(key));
2638 /// @brief find an element in a JSON object
2639 /// @sa https://json.nlohmann.me/api/basic_json/find/
2640 iterator find(const typename object_t::key_type& key)
2646 result.m_it.object_iterator = m_value.object->find(key);
2652 /// @brief find an element in a JSON object
2653 /// @sa https://json.nlohmann.me/api/basic_json/find/
2654 const_iterator find(const typename object_t::key_type& key) const
2660 result.m_it.object_iterator = m_value.object->find(key);
2666 /// @brief find an element in a JSON object
2667 /// @sa https://json.nlohmann.me/api/basic_json/find/
2670 iterator find(KeyType && key)
2676 result.m_it.object_iterator = m_value.object->find(std::forward<KeyType>(key));
2682 /// @brief find an element in a JSON object
2683 /// @sa https://json.nlohmann.me/api/basic_json/find/
2686 const_iterator find(KeyType && key) const
2692 result.m_it.object_iterator = m_value.object->find(std::forward<KeyType>(key));
2720 return is_object() && m_value.object->find(key) != m_value.object->end();
2729 return is_object() && m_value.object->find(std::forward<KeyType>(key)) != m_value.object->end();
3438 auto it2 = m_value.object->find(it.key());
4784 auto it = parent.find(last_path);
4815 // find value
4816 auto it = val.m_value.object->find(member);
5025 if (target.find(it.key()) != target.end())
5044 if (source.find(it.key()) == source.end())