/third_party/json/test/src/ |
D | unit-reference_access.cpp | 81 CHECK_THROWS_AS(value.get_ref<json::number_unsigned_t&>(), json::type_error&); 82 CHECK_THROWS_WITH(value.get_ref<json::number_unsigned_t&>(), 131 CHECK_THROWS_AS(value.get_ref<json::number_unsigned_t&>(), json::type_error&); 132 CHECK_THROWS_WITH(value.get_ref<json::number_unsigned_t&>(), 167 CHECK_THROWS_AS(value.get_ref<json::number_unsigned_t&>(), json::type_error&); 168 CHECK_THROWS_WITH(value.get_ref<json::number_unsigned_t&>(), 203 CHECK_THROWS_AS(value.get_ref<json::number_unsigned_t&>(), json::type_error&); 204 CHECK_THROWS_WITH(value.get_ref<json::number_unsigned_t&>(), 239 CHECK_THROWS_AS(value.get_ref<json::number_unsigned_t&>(), json::type_error&); 240 CHECK_THROWS_WITH(value.get_ref<json::number_unsigned_t&>(), [all …]
|
D | unit-pointer_access.cpp | 61 CHECK(value.get_ptr<json::number_unsigned_t*>() == nullptr); 90 CHECK(value.get_ptr<const json::number_unsigned_t*>() == nullptr); 119 CHECK(value.get_ptr<json::number_unsigned_t*>() == nullptr); 148 CHECK(value.get_ptr<const json::number_unsigned_t*>() == nullptr); 177 CHECK(value.get_ptr<json::number_unsigned_t*>() == nullptr); 206 CHECK(value.get_ptr<const json::number_unsigned_t*>() == nullptr); 235 CHECK(value.get_ptr<json::number_unsigned_t*>() == nullptr); 264 CHECK(value.get_ptr<const json::number_unsigned_t*>() == nullptr); 293 CHECK(value.get_ptr<json::number_unsigned_t*>() == nullptr); 322 CHECK(value.get_ptr<const json::number_unsigned_t*>() == nullptr); [all …]
|
D | unit-conversions.cpp | 729 json::number_unsigned_t n_unsigned_reference{42u}; 740 json::number_unsigned_t n = j_unsigned.get<json::number_unsigned_t>(); 970 json(json::value_t::number_float).get<json::number_unsigned_t>()); 979 json::number_unsigned_t n_unsigned_reference{42u}; 990 json::number_unsigned_t n = j_unsigned.get<json::number_unsigned_t>();
|
D | unit-class_parser.cpp | 62 bool number_unsigned(json::number_unsigned_t val) in number_unsigned() 171 bool number_unsigned(json::number_unsigned_t) override in number_unsigned() argument
|
D | unit-bson.cpp | 696 bool number_unsigned(json::number_unsigned_t) in number_unsigned() argument
|
D | unit-deserialization.cpp | 61 bool number_unsigned(json::number_unsigned_t val) override in number_unsigned()
|
D | unit-constructor1.cpp | 523 json::number_unsigned_t n_unsigned_reference = 42;
|
D | unit-msgpack.cpp | 65 bool number_unsigned(json::number_unsigned_t) in number_unsigned() argument
|
D | unit-ubjson.cpp | 64 bool number_unsigned(json::number_unsigned_t) in number_unsigned() argument
|
/third_party/json/include/nlohmann/detail/input/ |
D | json_sax.hpp | 26 using number_unsigned_t = typename BasicJsonType::number_unsigned_t; typedef 56 virtual bool number_unsigned(number_unsigned_t val) = 0; 153 using number_unsigned_t = typename BasicJsonType::number_unsigned_t; typedef in nlohmann::detail::json_sax_dom_parser 192 bool number_unsigned(number_unsigned_t val) in number_unsigned() 327 using number_unsigned_t = typename BasicJsonType::number_unsigned_t; typedef in nlohmann::detail::json_sax_dom_callback_parser 367 bool number_unsigned(number_unsigned_t val) in number_unsigned() 623 using number_unsigned_t = typename BasicJsonType::number_unsigned_t; typedef in nlohmann::detail::json_sax_acceptor 643 bool number_unsigned(number_unsigned_t /*unused*/) in number_unsigned() argument
|
D | lexer.hpp | 106 using number_unsigned_t = typename BasicJsonType::number_unsigned_t; typedef in nlohmann::detail::lexer 1252 value_unsigned = static_cast<number_unsigned_t>(x); in scan_number() 1410 constexpr number_unsigned_t get_number_unsigned() const noexcept in get_number_unsigned() 1616 number_unsigned_t value_unsigned = 0;
|
D | parser.hpp | 55 using number_unsigned_t = typename BasicJsonType::number_unsigned_t; typedef in nlohmann::detail::parser
|
D | binary_reader.hpp | 59 using number_unsigned_t = typename BasicJsonType::number_unsigned_t; typedef in nlohmann::detail::binary_reader 437 return sax->number_unsigned(static_cast<number_unsigned_t>(current)); in parse_cbor_internal() 1265 return sax->number_unsigned(static_cast<number_unsigned_t>(current)); in parse_msgpack_internal()
|
/third_party/json/include/nlohmann/detail/meta/ |
D | is_sax.hpp | 72 using number_unsigned_t = typename BasicJsonType::number_unsigned_t; typedef 83 is_detected_exact<bool, number_unsigned_function_t, SAX, number_unsigned_t>::value && 103 using number_unsigned_t = typename BasicJsonType::number_unsigned_t; typedef 122 number_unsigned_t>::value,
|
/third_party/json/include/nlohmann/detail/ |
D | hash.hpp | 34 using number_unsigned_t = typename BasicJsonType::number_unsigned_t; in hash() typedef 88 const auto h = std::hash<number_unsigned_t> {}(j.template get<number_unsigned_t>()); in hash()
|
/third_party/json/include/nlohmann/detail/output/ |
D | serializer.hpp | 45 using number_unsigned_t = typename BasicJsonType::number_unsigned_t; typedef in nlohmann::detail::serializer 636 inline unsigned int count_digits(number_unsigned_t x) noexcept in count_digits() 672 std::is_same<NumberType, number_unsigned_t>::value || 705 number_unsigned_t abs_value; in dump_integer() 719 abs_value = static_cast<number_unsigned_t>(x); in dump_integer() 900 number_unsigned_t remove_sign(number_unsigned_t x) in remove_sign() 915 inline number_unsigned_t remove_sign(number_integer_t x) noexcept in remove_sign() 918 return static_cast<number_unsigned_t>(-(x + 1)) + 1; in remove_sign()
|
/third_party/json/include/nlohmann/detail/conversions/ |
D | from_json.hpp | 46 …atic_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigned_t*>()); in get_arithmetic_value() 109 void from_json(const BasicJsonType& j, typename BasicJsonType::number_unsigned_t& val) in from_json() 291 !std::is_same<ArithmeticType, typename BasicJsonType::number_unsigned_t>::value&& 302 …atic_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigned_t*>()); in from_json()
|
D | to_json.hpp | 107 static void construct(BasicJsonType& j, typename BasicJsonType::number_unsigned_t val) noexcept in construct() 250 …enable_if_t<is_compatible_integer_type<typename BasicJsonType::number_unsigned_t, CompatibleNumber… 253 …lue_t::number_unsigned>::construct(j, static_cast<typename BasicJsonType::number_unsigned_t>(val)); in to_json()
|
/third_party/json/doc/mkdocs/docs/features/ |
D | types.md | 43 number_unsigned_t number_unsigned 57 + <u>typedef</u> number_unsigned_t 101 using number_unsigned_t = NumberUnsignedType; 230 …oint number. Therefore, three different types, `number_integer_t`, `number_unsigned_t`, and `numbe… 235 … for *NumberUnsignedType* (`std::uint64_t`), the default value for `number_unsigned_t` is `std::ui… 249 … large or small integer numbers will be automatically be stored as `number_unsigned_t` or `number_…
|
/third_party/json/doc/mkdocs/docs/features/parsing/ |
D | sax_interface.md | 12 + {abstract} bool number_unsigned(number_unsigned_t val) 38 bool number_unsigned(number_unsigned_t val);
|
/third_party/json/doc/examples/ |
D | sax_parse.cpp | 34 bool number_unsigned(number_unsigned_t val) override in number_unsigned()
|
/third_party/json/single_include/nlohmann/ |
D | json.hpp | 3446 …atic_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigned_t*>()); in get_arithmetic_value() 3509 void from_json(const BasicJsonType& j, typename BasicJsonType::number_unsigned_t& val) in from_json() 3691 !std::is_same<ArithmeticType, typename BasicJsonType::number_unsigned_t>::value&& 3702 …atic_cast<ArithmeticType>(*j.template get_ptr<const typename BasicJsonType::number_unsigned_t*>()); in from_json() 4096 static void construct(BasicJsonType& j, typename BasicJsonType::number_unsigned_t val) noexcept in construct() 4239 …enable_if_t<is_compatible_integer_type<typename BasicJsonType::number_unsigned_t, CompatibleNumber… 4242 …lue_t::number_unsigned>::construct(j, static_cast<typename BasicJsonType::number_unsigned_t>(val)); in to_json() 4617 using number_unsigned_t = typename BasicJsonType::number_unsigned_t; in hash() typedef 4671 const auto h = std::hash<number_unsigned_t> {}(j.template get<number_unsigned_t>()); in hash() 5205 using number_unsigned_t = typename BasicJsonType::number_unsigned_t; typedef [all …]
|
/third_party/json/include/nlohmann/ |
D | json.hpp | 771 using number_unsigned_t = NumberUnsignedType; typedef in nlohmann::basic_json 977 number_unsigned_t number_unsigned; 988 json_value(number_unsigned_t v) noexcept : number_unsigned(v) {} in json_value() 1034 number_unsigned = number_unsigned_t(0); in json_value() 1481 using other_number_unsigned_t = typename BasicJsonType::number_unsigned_t; in basic_json() 2766 number_unsigned_t* get_impl_ptr(number_unsigned_t* /*unused*/) noexcept in get_impl_ptr() argument 2772 …constexpr const number_unsigned_t* get_impl_ptr(const number_unsigned_t* /*unused*/) const noexcept in get_impl_ptr()
|
/third_party/json/doc/mkdocs/docs/api/basic_json/ |
D | index.md | 83 - number_unsigned_t
|
/third_party/json/doc/ |
D | index.md | 70 - @link nlohmann::basic_json::number_unsigned_t unsigned integers @endlink
|