Lines Matching refs:update
3677 // https://blogs.msdn.microsoft.com/vcblog/2015/12/02/partial-support-for-expression-sfinae-in-vs-2015-update-1/
19930 // capacity has changed: update all parents
21252 // capacity has changed: update all parents
22577 /// @sa https://json.nlohmann.me/api/basic_json/update/
22578 void update(const_reference j, bool merge_objects = false)
22580 update(j.begin(), j.end(), merge_objects);
22584 /// @sa https://json.nlohmann.me/api/basic_json/update/
22585 void update(const_iterator first, const_iterator last, bool merge_objects = false)
22597 JSON_THROW(type_error::create(312, detail::concat("cannot use update() with ", type_name()), this));
22609 JSON_THROW(type_error::create(312, detail::concat("cannot use update() with ", first.m_object->type_name()), first.m_object));
22619 it2->second.update(it.value(), true);