Searched refs:from_bson (Results 1 - 8 of 8) sorted by relevance
/third_party/json/tests/src/ |
H A D | unit-bson.cpp | 93 CHECK_THROWS_WITH_AS(_ = json::from_bson(v), "[json.exception.parse_error.112] parse error at byte 10: syntax error while parsing BSON string: string length must be at least 1, is -2147483648", json::parse_error&); 112 CHECK(json::from_bson(result) == j); 113 CHECK(json::from_bson(result, true, false) == j); 136 CHECK(json::from_bson(result) == j); 137 CHECK(json::from_bson(result, true, false) == j); 160 CHECK(json::from_bson(result) == j); 161 CHECK(json::from_bson(result, true, false) == j); 184 CHECK(json::from_bson(result) == j); 185 CHECK(json::from_bson(result, true, false) == j); 208 CHECK(json::from_bson(resul 1292 CHECK(json::from_bson(vec) == json::from_bson(packed)); global() member in json [all...] |
H A D | fuzzer-parse_bson.cpp | 13 - j1 = from_bson(data) 15 - j2 = from_bson(vec) 35 json j1 = json::from_bson(vec1); in LLVMFuzzerTestOneInput() 48 json j2 = json::from_bson(vec2); in LLVMFuzzerTestOneInput()
|
H A D | unit-udt_macro.cpp | 385 nlohmann::json j2 = nlohmann::json::from_bson(buf);
|
/third_party/json/docs/examples/ |
H A D | from_bson.cpp | 17 json j = json::from_bson(v); in main()
|
/third_party/json/include/nlohmann/ |
H A D | json.hpp | 4524 /// @sa https://json.nlohmann.me/api/basic_json/from_bson/ 4527 static basic_json from_bson(InputType&& i, 4539 /// @sa https://json.nlohmann.me/api/basic_json/from_bson/ 4542 static basic_json from_bson(IteratorType first, IteratorType last, 4555 JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) 4556 static basic_json from_bson(const T* ptr, std::size_t len, 4560 return from_bson(ptr, ptr + len, strict, allow_exceptions); 4564 JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) 4565 static basic_json from_bson(detail::span_input_adapter&& i,
|
/third_party/json/docs/docset/ |
H A D | docSet.sql | 47 INSERT INTO searchIndex(name, type, path) VALUES ('basic_json::from_bson', 'Function', 'api/basic_json/from_bson/index.html');
|
/third_party/json/tests/abi/include/nlohmann/ |
H A D | json_v3_10_5.hpp | 21272 /// @sa https://json.nlohmann.me/api/basic_json/from_bson/ 21275 static basic_json from_bson(InputType&& i, 21287 /// @sa https://json.nlohmann.me/api/basic_json/from_bson/ 21290 static basic_json from_bson(IteratorType first, IteratorType last, 21303 JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) 21304 static basic_json from_bson(const T* ptr, std::size_t len, 21308 return from_bson(ptr, ptr + len, strict, allow_exceptions); 21312 JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) 21313 static basic_json from_bson(detail::span_input_adapter&& i,
|
/third_party/json/single_include/nlohmann/ |
H A D | json.hpp | 23702 /// @sa https://json.nlohmann.me/api/basic_json/from_bson/ 23705 static basic_json from_bson(InputType&& i, 23717 /// @sa https://json.nlohmann.me/api/basic_json/from_bson/ 23720 static basic_json from_bson(IteratorType first, IteratorType last, 23733 JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) 23734 static basic_json from_bson(const T* ptr, std::size_t len, 23738 return from_bson(ptr, ptr + len, strict, allow_exceptions); 23742 JSON_HEDLEY_DEPRECATED_FOR(3.8.0, from_bson(ptr, ptr + len)) 23743 static basic_json from_bson(detail::span_input_adapter&& i,
|
Completed in 52 milliseconds