Home
last modified time | relevance | path

Searched refs:allow_exceptions (Results 1 – 12 of 12) sorted by relevance

/third_party/json/doc/mkdocs/docs/api/basic_json/
Dfrom_ubjson.md8 const bool allow_exceptions = true);
13 const bool allow_exceptions = true);
49 `allow_exceptions` (in)
54 deserialized JSON value; in case of a parse error and `allow_exceptions` set to `#!cpp false`, the …
84 - Added `allow_exceptions` parameter in version 3.2.0.
Dfrom_msgpack.md8 const bool allow_exceptions = true);
13 const bool allow_exceptions = true);
49 `allow_exceptions` (in)
54 deserialized JSON value; in case of a parse error and `allow_exceptions` set to `#!cpp false`, the …
86 - Added `allow_exceptions` parameter in version 3.2.0.
Dfrom_cbor.md8 const bool allow_exceptions = true,
15 const bool allow_exceptions = true,
52 `allow_exceptions` (in)
61 deserialized JSON value; in case of a parse error and `allow_exceptions` set to `#!cpp false`, the …
93 - Added `allow_exceptions` parameter in version 3.2.0.
Dparse.md8 const bool allow_exceptions = true,
15 const bool allow_exceptions = true,
48 `allow_exceptions` (in)
63 Deserialized JSON value; in case of a parse error and `allow_exceptions` set to `#!cpp false`, the …
138 ??? example "Effect of `allow_exceptions` parameter"
140 …The example below demonstrates the effect of the `allow_exceptions` parameter in the ´parse()` fun…
Dfrom_bson.md8 const bool allow_exceptions = true);
13 const bool allow_exceptions = true);
49 `allow_exceptions` (in)
54 deserialized JSON value; in case of a parse error and `allow_exceptions` set to `#!cpp false`, the …
Dis_discarded.md10 - the value is the result of parsing invalid JSON with parameter `allow_exceptions` set to `#!cpp f…
/third_party/json/include/nlohmann/
Djson.hpp208 const bool allow_exceptions = true, in parser() argument
213 std::move(cb), allow_exceptions, ignore_comments); in parser()
6883 const bool allow_exceptions = true, in parse() argument
6887 …parser(detail::input_adapter(std::forward<InputType>(i)), cb, allow_exceptions, ignore_comments).p… in parse()
6922 const bool allow_exceptions = true, in parse() argument
6926 …parser(detail::input_adapter(std::move(first), std::move(last)), cb, allow_exceptions, ignore_comm… in parse()
6934 const bool allow_exceptions = true, in parse() argument
6938 parser(i.get(), cb, allow_exceptions, ignore_comments).parse(true, result); in parse()
7721 const bool allow_exceptions = true, in from_cbor() argument
7725 detail::json_sax_dom_parser<basic_json> sdp(result, allow_exceptions); in from_cbor()
[all …]
/third_party/json/include/nlohmann/detail/input/
Djson_sax.hpp169 : root(r), allow_exceptions(allow_exceptions_) in json_sax_dom_parser()
272 if (allow_exceptions) in parse_error()
324 const bool allow_exceptions = true; member in nlohmann::detail::json_sax_dom_parser
342 : root(r), callback(cb), allow_exceptions(allow_exceptions_) in json_sax_dom_callback_parser()
522 if (allow_exceptions) in parse_error()
629 const bool allow_exceptions = true; member in nlohmann::detail::json_sax_dom_callback_parser
Dparser.hpp69 , allow_exceptions(allow_exceptions_) in parser()
89 json_sax_dom_callback_parser<BasicJsonType> sdp(result, callback, allow_exceptions); in parse()
117 json_sax_dom_parser<BasicJsonType> sdp(result, allow_exceptions); in parse()
495 const bool allow_exceptions = true; member in nlohmann::detail::parser
/third_party/json/single_include/nlohmann/
Djson.hpp5983 : root(r), allow_exceptions(allow_exceptions_) in json_sax_dom_parser()
6086 if (allow_exceptions) in parse_error()
6138 const bool allow_exceptions = true; member in nlohmann::detail::json_sax_dom_parser
6156 : root(r), callback(cb), allow_exceptions(allow_exceptions_) in json_sax_dom_callback_parser()
6336 if (allow_exceptions) in parse_error()
6443 const bool allow_exceptions = true; member in nlohmann::detail::json_sax_dom_callback_parser
10896 , allow_exceptions(allow_exceptions_) in parser()
10916 json_sax_dom_callback_parser<BasicJsonType> sdp(result, callback, allow_exceptions); in parse()
10944 json_sax_dom_parser<BasicJsonType> sdp(result, allow_exceptions); in parse()
11322 const bool allow_exceptions = true; member in nlohmann::detail::parser
[all …]
/third_party/json/doc/mkdocs/docs/features/parsing/
Dparse_exceptions.md22 The `parse()` function accepts as last parameter a `#!cpp bool` variable `allow_exceptions` which c…
/third_party/json/doc/mkdocs/docs/home/
Dreleases.md709 …hether the input is proper JSON. We also added a Boolean parameter `allow_exceptions` to the exist…