• Home
  • Raw
  • Download

Lines Matching refs:to_json

2312     inline void to_json(BasicJsonType& j, const ENUM_TYPE& e)                                   \
2495 …friend void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_…
2504 …inline void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_…
3495 using to_json_function = decltype(T::to_json(std::declval<Args>()...));
4781 void to_json(BasicJsonType& j, T b) noexcept in to_json() function
4788 void to_json(BasicJsonType& j, const CompatibleString& s) in to_json() function
4794 void to_json(BasicJsonType& j, typename BasicJsonType::string_t&& s) in to_json() function
4801 void to_json(BasicJsonType& j, FloatType val) noexcept in to_json() function
4808 void to_json(BasicJsonType& j, CompatibleNumberUnsignedType val) noexcept in to_json() function
4815 void to_json(BasicJsonType& j, CompatibleNumberIntegerType val) noexcept in to_json() function
4822 void to_json(BasicJsonType& j, EnumType e) noexcept in to_json() function
4829 void to_json(BasicJsonType& j, const std::vector<bool>& e) in to_json() function
4842 void to_json(BasicJsonType& j, const CompatibleArrayType& arr) in to_json() function
4848 void to_json(BasicJsonType& j, const typename BasicJsonType::binary_t& bin) in to_json() function
4855 void to_json(BasicJsonType& j, const std::valarray<T>& arr) in to_json() function
4861 void to_json(BasicJsonType& j, typename BasicJsonType::array_t&& arr) in to_json() function
4868 void to_json(BasicJsonType& j, const CompatibleObjectType& obj) in to_json() function
4874 void to_json(BasicJsonType& j, typename BasicJsonType::object_t&& obj) in to_json() function
4884 void to_json(BasicJsonType& j, const T(&arr)[N]) // NOLINT(cppcoreguidelines-avoid-c-arrays,hicpp-a… in to_json() function
4890 void to_json(BasicJsonType& j, const std::pair<T1, T2>& p) in to_json() function
4898 void to_json(BasicJsonType& j, const T& b) in to_json() function
4910 void to_json(BasicJsonType& j, const T& t) in to_json() function
4918 …auto operator()(BasicJsonType& j, T&& val) const noexcept(noexcept(to_json(j, std::forward<T>(val)… in operator ()()
4919 -> decltype(to_json(j, std::forward<T>(val)), void()) in operator ()()
4921 return to_json(j, std::forward<T>(val)); in operator ()()
4931 constexpr const auto& to_json = detail::static_const<detail::to_json_fn>::value; // NOLINT(misc-def… variable
4995 static auto to_json(BasicJsonType& j, TargetType && val) noexcept( in to_json() function
4996 noexcept(::nlohmann::to_json(j, std::forward<TargetType>(val)))) in to_json()
4997 -> decltype(::nlohmann::to_json(j, std::forward<TargetType>(val)), void()) in to_json()
4999 ::nlohmann::to_json(j, std::forward<TargetType>(val)); in to_json()
18972 JSONSerializer<U>::to_json(std::declval<basic_json_t&>(), in basic_json()
18975 JSONSerializer<U>::to_json(*this, std::forward<CompatibleType>(val)); in basic_json()
19023 … JSONSerializer<other_boolean_t>::to_json(*this, val.template get<other_boolean_t>()); in basic_json()
19026 … JSONSerializer<other_number_float_t>::to_json(*this, val.template get<other_number_float_t>()); in basic_json()
19029 …JSONSerializer<other_number_integer_t>::to_json(*this, val.template get<other_number_integer_t>()); in basic_json()
19032 …JSONSerializer<other_number_unsigned_t>::to_json(*this, val.template get<other_number_unsigned_t>(… in basic_json()
19035 … JSONSerializer<other_string_t>::to_json(*this, val.template get_ref<const other_string_t&>()); in basic_json()
19038 … JSONSerializer<other_object_t>::to_json(*this, val.template get_ref<const other_object_t&>()); in basic_json()
19041 … JSONSerializer<other_array_t>::to_json(*this, val.template get_ref<const other_array_t&>()); in basic_json()
19044 … JSONSerializer<other_binary_t>::to_json(*this, val.template get_ref<const other_binary_t&>()); in basic_json()