/third_party/json/include/nlohmann/ |
D | json.hpp | 199 const bool allow_exceptions = true, in parser() argument 204 std::move(cb), allow_exceptions, ignore_comments); in parser() 6650 const bool allow_exceptions = true, in parse() argument 6654 …parser(detail::input_adapter(std::forward<InputType>(i)), cb, allow_exceptions, ignore_comments).p… in parse() 6689 const bool allow_exceptions = true, in parse() argument 6693 …parser(detail::input_adapter(std::move(first), std::move(last)), cb, allow_exceptions, ignore_comm… in parse() 6701 const bool allow_exceptions = true, in parse() argument 6705 parser(i.get(), cb, allow_exceptions, ignore_comments).parse(true, result); in parse() 7474 const bool allow_exceptions = true, in from_cbor() argument 7478 detail::json_sax_dom_parser<basic_json> sdp(result, allow_exceptions); in from_cbor() [all …]
|
/third_party/json/include/nlohmann/detail/input/ |
D | json_sax.hpp | 164 : root(r), allow_exceptions(allow_exceptions_) in json_sax_dom_parser() 267 if (allow_exceptions) in parse_error() 319 const bool allow_exceptions = true; member in nlohmann::detail::json_sax_dom_parser 337 : root(r), callback(cb), allow_exceptions(allow_exceptions_) in json_sax_dom_callback_parser() 506 if (allow_exceptions) in parse_error() 613 const bool allow_exceptions = true; member in nlohmann::detail::json_sax_dom_callback_parser
|
D | parser.hpp | 69 , allow_exceptions(allow_exceptions_) in parser() 89 json_sax_dom_callback_parser<BasicJsonType> sdp(result, callback, allow_exceptions); in parse() 118 json_sax_dom_parser<BasicJsonType> sdp(result, allow_exceptions); in parse() 498 const bool allow_exceptions = true; member in nlohmann::detail::parser
|
/third_party/json/doc/mkdocs/docs/api/basic_json/ |
D | parse.md | 8 const bool allow_exceptions = true, 16 const bool allow_exceptions = true, 51 `allow_exceptions` (in) 67 Deserialized JSON value; in case of a parse error and `allow_exceptions`
|
/third_party/json/single_include/nlohmann/ |
D | json.hpp | 5343 : root(r), allow_exceptions(allow_exceptions_) in json_sax_dom_parser() 5446 if (allow_exceptions) in parse_error() 5498 const bool allow_exceptions = true; member in nlohmann::detail::json_sax_dom_parser 5516 : root(r), callback(cb), allow_exceptions(allow_exceptions_) in json_sax_dom_callback_parser() 5685 if (allow_exceptions) in parse_error() 5792 const bool allow_exceptions = true; member in nlohmann::detail::json_sax_dom_callback_parser 10180 , allow_exceptions(allow_exceptions_) in parser() 10200 json_sax_dom_callback_parser<BasicJsonType> sdp(result, callback, allow_exceptions); in parse() 10229 json_sax_dom_parser<BasicJsonType> sdp(result, allow_exceptions); in parse() 10609 const bool allow_exceptions = true; member in nlohmann::detail::parser [all …]
|
/third_party/json/doc/mkdocs/docs/features/parsing/ |
D | parse_exceptions.md | 22 The `parse()` function accepts as last parameter a `#!cpp bool` variable `allow_exceptions` which c…
|
/third_party/json/doc/mkdocs/docs/home/ |
D | releases.md | 709 …hether the input is proper JSON. We also added a Boolean parameter `allow_exceptions` to the exist…
|