Lines Matching +defs:val +defs:buf

3969 inline constexpr bool value_in_range_of(T val)  in value_in_range_of()
4425 void get_arithmetic_value(const BasicJsonType& j, ArithmeticType& val) in get_arithmetic_value()
4494 inline void from_json(const BasicJsonType& j, typename BasicJsonType::number_float_t& val) in from_json()
4500 inline void from_json(const BasicJsonType& j, typename BasicJsonType::number_unsigned_t& val) in from_json()
4506 inline void from_json(const BasicJsonType& j, typename BasicJsonType::number_integer_t& val) in from_json()
4516 typename std::underlying_type<EnumType>::type val; in from_json() local
4713 inline void from_json(const BasicJsonType& j, ArithmeticType& val) in from_json()
5420 inline void to_json(BasicJsonType& j, FloatType val) noexcept in to_json()
5427 inline void to_json(BasicJsonType& j, CompatibleNumberUnsignedType val) noexcept in to_json()
5434 inline void to_json(BasicJsonType& j, CompatibleNumberIntegerType val) noexcept in to_json()
6578 bool boolean(bool val) in boolean()
6584 bool number_integer(number_integer_t val) in number_integer()
6590 bool number_unsigned(number_unsigned_t val) in number_unsigned()
6596 bool number_float(number_float_t val, const string_t& /*unused*/) in number_float()
6602 bool string(string_t& val) in string()
6608 bool binary(binary_t& val) in binary()
6626 bool key(string_t& val) in key()
6762 bool boolean(bool val) in boolean()
6768 bool number_integer(number_integer_t val) in number_integer()
6774 bool number_unsigned(number_unsigned_t val) in number_unsigned()
6780 bool number_float(number_float_t val, const string_t& /*unused*/) in number_float()
6786 bool string(string_t& val) in string()
6792 bool binary(binary_t& val) in binary()
6804 auto val = handle_value(BasicJsonType::value_t::object, true); in start_object() local
6816 bool key(string_t& val) in key()
6874 auto val = handle_value(BasicJsonType::value_t::array, true); in start_array() local
9744 const double val = [&half] in parse_cbor_internal() local
11292 const double val = [&half] in get_ubjson_value() local
16990 inline void grisu2_round(char* buf, int len, std::uint64_t dist, std::uint64_t delta, in grisu2_round()
17272 inline void grisu2(char* buf, int& len, int& decimal_exponent, in grisu2()
17332 void grisu2(char* buf, int& len, int& decimal_exponent, FloatType value) in grisu2()
17372 inline char* append_exponent(char* buf, int e) in append_exponent()
17424 inline char* format_buffer(char* buf, int len, int decimal_exponent, in format_buffer()
17652 void dump(const BasicJsonType& val, in dump()
19665 …basic_json(CompatibleType && val) noexcept(noexcept( // NOLINT(bugprone-forwarding-reference-overl… in basic_json()
19679 basic_json(const BasicJsonType& val) in basic_json()
19847 basic_json(size_type cnt, const basic_json& val) in basic_json()
21869 void push_back(basic_json&& val) in push_back()
21894 reference operator+=(basic_json&& val) in operator +=()
21902 void push_back(const basic_json& val) in push_back()
21926 reference operator+=(const basic_json& val) in operator +=()
21934 void push_back(const typename object_t::value_type& val) in push_back()
21957 reference operator+=(const typename object_t::value_type& val) in operator +=()
22066 iterator insert(const_iterator pos, const basic_json& val) in insert()
22086 iterator insert(const_iterator pos, basic_json&& val) in insert()
22093 iterator insert(const_iterator pos, size_type cnt, const basic_json& val) in insert()
23490 { in patch_inplace()
23591 for (const auto& val : json_patch) in patch_inplace() local