Lines Matching refs:replace
762 #pragma warning(disable : 4127) // ignore warning to replace if with if constexpr
2853 /// that is, replace `json::iterator_wrapper(j)` with `j.items()`.
2864 /// that is, replace `json::iterator_wrapper(j)` with `j.items()`.
3987 /// replace calls like `j >> o;` with `o << j;`.
4127 /// replace calls like `j << i;` with `i >> j;`.
4672 enum class patch_operations {add, remove, replace, move, copy, test, invalid};
4684 if (op == "replace")
4686 return patch_operations::replace;
4864 case patch_operations::replace:
4867 result.at(ptr) = get_value("replace", "value", false);
4929 // op must be "add", "remove", "replace", "move", "copy", or
4963 // different types: replace value
4966 {"op", "replace"}, {"path", path}, {"value", target}
5069 // both primitive type: replace value
5072 {"op", "replace"}, {"path", path}, {"value", target}