Home
last modified time | relevance | path

Searched refs:adl_serializer (Results 1 – 14 of 14) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/minddata/dataset/include/dataset/
Djson_fwd.hpp36 struct adl_serializer;
42 template <typename T, typename SFINAE = void> class JSONSerializer = adl_serializer>
/third_party/json/doc/mkdocs/docs/features/
Darbitrary_types.md130 The default serializer for `nlohmann::json` is `nlohmann::adl_serializer` (ADL means [Argument-Depe…
136 struct adl_serializer {
149 To solve this, you need to add a specialization of `adl_serializer` to the `nlohmann` namespace, he…
155 struct adl_serializer<boost::optional<T>> {
160 j = *opt; // this will call adl_serializer<T>::to_json which will
170 // adl_serializer<T>::from_json
179 …w/cpp/named_req/MoveConstructible). You will need to specialize the `adl_serializer` as well, but …
193 struct adl_serializer<move_only_type> {
202 // specialized adl_serializer on that type
230 using nlohmann::to_json; // this method is called by adl_serializer,
Dtypes.md79 template<typename T, typename SFINAE = void> class JSONSerializer = adl_serializer,
/third_party/json/include/nlohmann/
Djson_fwd.hpp25 struct adl_serializer;
36 adl_serializer,
Dadl_serializer.hpp12 struct adl_serializer struct
/third_party/mindspore/mindspore/ccsrc/minddata/mindrecord/include/common/
Dshard_pybind.h28 struct adl_serializer<py::object> {
/third_party/json/test/src/
Dunit-udt.cpp356 struct adl_serializer<std::shared_ptr<T>> struct
384 struct adl_serializer<udt::legacy_type> struct
453 struct adl_serializer<std::vector<float>> struct
486 struct adl_serializer<std::unique_ptr<T>> struct
Dunit-alt-string.cpp172 nlohmann::adl_serializer >;
Dunit-regression2.cpp113 struct adl_serializer<NonDefaultFromJsonStruct> struct
/third_party/mindspore/mindspore/ccsrc/minddata/mindrecord/common/
Dshard_pybind.cc356 py::object adl_serializer<py::object>::FromJson(const json &j) { return detail::FromJsonImpl(j); } in FromJson()
358 void adl_serializer<py::object>::ToJson(json *j, const py::object &obj) { in ToJson()
/third_party/json/test/
DCMakeLists.txt83 …or,std::string,bool,int64_t,uint64_t,double,std::allocator,nlohmann::adl_serializer>::operator <<'…
/third_party/json/
DREADME.md932 The default serializer for `nlohmann::json` is `nlohmann::adl_serializer` (ADL means [Argument-Depe…
938 struct adl_serializer {
951 To solve this, you need to add a specialization of `adl_serializer` to the `nlohmann` namespace, he…
957 struct adl_serializer<boost::optional<T>> {
962 j = *opt; // this will call adl_serializer<T>::to_json which will
972 // adl_serializer<T>::from_json
981 …w/cpp/named_req/MoveConstructible). You will need to specialize the `adl_serializer` as well, but …
995 struct adl_serializer<move_only_type> {
1004 // specialized adl_serializer on that type
1032 using nlohmann::to_json; // this method is called by adl_serializer,
/third_party/mindspore/mindspore/lite/tools/dataset/cropper/
Ddependencies.txt1adl_serializer.hpp", "mindspore/lite/build/_deps/nlohmann_json-src/nlohmann/detail/conversions/to_…
/third_party/json/single_include/nlohmann/
Djson.hpp2896 struct adl_serializer;
2907 adl_serializer,
4370 struct adl_serializer struct