/third_party/json/include/nlohmann/detail/input/ |
D | parser.hpp | 195 if (get_token() == token_type::end_object) in sax_parse_internal() 197 if (JSON_HEDLEY_UNLIKELY(!sax->end_object())) in sax_parse_internal() 339 case token_type::end_object: in sax_parse_internal() 429 if (JSON_HEDLEY_LIKELY(last_token == token_type::end_object)) in sax_parse_internal() 431 if (JSON_HEDLEY_UNLIKELY(!sax->end_object())) in sax_parse_internal() 448 …ror::create(101, m_lexer.get_position(), exception_message(token_type::end_object, "object"), Basi… in sax_parse_internal()
|
D | json_sax.hpp | 102 virtual bool end_object() = 0; 240 bool end_object() in end_object() function in nlohmann::detail::json_sax_dom_parser 431 bool end_object() in end_object() function in nlohmann::detail::json_sax_dom_callback_parser 689 bool end_object() in end_object() function in nlohmann::detail::json_sax_acceptor
|
D | lexer.hpp | 43 end_object, ///< the character for object end `}` enumerator 78 case token_type::end_object: in token_type_name() 1535 return token_type::end_object; in scan()
|
D | binary_reader.hpp | 174 return sax->end_object(); in parse_bson_internal() 1168 return sax->end_object(); in get_cbor_object() 1796 return sax->end_object(); in get_msgpack_object() 2233 return sax->end_object(); in get_ubjson_object() 2291 case token_type::end_object: in get_ubjson_high_precision_number()
|
/third_party/json/doc/mkdocs/docs/features/parsing/ |
D | sax_interface.md | 20 + {abstract} bool end_object() 50 bool end_object();
|
/third_party/json/doc/examples/ |
D | sax_parse.cpp | 58 bool end_object() override in end_object() function in sax_event_consumer
|
/third_party/json/test/src/ |
D | unit-class_lexer.cpp | 65 CHECK((scan_string("}") == json::lexer::token_type::end_object)); 122 … CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::end_object)) == "'}'"));
|
D | unit-class_parser.cpp | 113 bool end_object() in end_object() function in __anond8720a300111::SaxEventLogger 200 bool end_object() override in end_object() function in __anond8720a300111::SaxCountdown
|
D | unit-bson.cpp | 730 bool end_object() in end_object() function in __anona509af800111::SaxCountdown
|
D | unit-deserialization.cpp | 113 bool end_object() override in end_object() function
|
D | unit-msgpack.cpp | 95 bool end_object() in end_object() function in __anon199e8df40111::SaxCountdown
|
D | unit-ubjson.cpp | 94 bool end_object() in end_object() function in __anon1a94e03f0111::SaxCountdown
|
D | unit-cbor.cpp | 96 bool end_object() in end_object() function in __anon74f5dd940111::SaxCountdown
|
/third_party/json/include/nlohmann/detail/meta/ |
D | is_sax.hpp | 50 using end_object_function_t = decltype(std::declval<T&>().end_object());
|
/third_party/json/single_include/nlohmann/ |
D | json.hpp | 5916 virtual bool end_object() = 0; 6054 bool end_object() in end_object() function in nlohmann::detail::json_sax_dom_parser 6245 bool end_object() in end_object() function in nlohmann::detail::json_sax_dom_callback_parser 6503 bool end_object() in end_object() function in nlohmann::detail::json_sax_acceptor 6573 end_object, ///< the character for object end `}` enumerator 6608 case token_type::end_object: in token_type_name() 8065 return token_type::end_object; in scan() 8209 using end_object_function_t = decltype(std::declval<T&>().end_object()); 8464 return sax->end_object(); in parse_bson_internal() 9458 return sax->end_object(); in get_cbor_object() [all …]
|
/third_party/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.c | 9040 static void end_object(upb_json_parser *p); 10392 end_object(p); in end_stringval() 11210 static void end_object(upb_json_parser *p) { in end_object() function 11327 end_object(p); in end_any_object() 11363 end_object(p); in end_fieldmask_object() 11380 end_object(p); in end_wrapper_object() 11424 end_object(p); in end_value_object() 11441 end_object(p); in end_listvalue_object() 11458 end_object(p); in end_structvalue_object() 12089 end_object(parser); in parse()
|
/third_party/json/ |
D | README.md | 366 bool end_object();
|