Lines Matching refs:target
5108 void int_to_string( string_type& target, std::size_t value )
5112 target = to_string(value);
16835 Target target;
16836 std::memcpy(&target, &source, sizeof(Source));
16837 return target;
23885 // adding to the root of the target document means replacing it
24059 // immediately by an "add" operation at the target
24075 // operation at the target location using the value
24127 static basic_json diff(const basic_json& source, const basic_json& target,
24134 if (source == target)
24139 if (source.type() != target.type())
24144 {"op", "replace"}, {"path", path}, {"value", target}
24155 while (i < source.size() && i < target.size())
24158 auto temp_diff = diff(source[i], target[i], detail::concat(path, '/', std::to_string(i)));
24181 while (i < target.size())
24187 {"value", target[i]}
24203 if (target.find(it.key()) != target.end())
24206 auto temp_diff = diff(it.value(), target[it.key()], path_key);
24220 for (auto it = target.cbegin(); it != target.cend(); ++it)
24250 {"op", "replace"}, {"path", path}, {"value", target}