Searched refs:output_adapter (Results 1 – 7 of 7) sorted by relevance
/third_party/json/include/nlohmann/detail/output/ |
D | output_adapters.hpp | 102 class output_adapter class 105 output_adapter(std::vector<CharType>& vec) in output_adapter() function in nlohmann::detail::output_adapter 108 output_adapter(std::basic_ostream<CharType>& s) in output_adapter() function in nlohmann::detail::output_adapter 111 output_adapter(StringType& s) in output_adapter() function in nlohmann::detail::output_adapter
|
/third_party/gstreamer/gstplugins_bad/sys/androidmedia/ |
D | gstamcaudiodec.c | 235 self->output_adapter = gst_adapter_new (); in gst_amc_audio_dec_init() 291 if (self->output_adapter) in gst_amc_audio_dec_finalize() 292 gst_object_unref (self->output_adapter); in gst_amc_audio_dec_finalize() 293 self->output_adapter = NULL; in gst_amc_audio_dec_finalize() 547 gst_adapter_push (self->output_adapter, outbuf); in gst_amc_audio_dec_loop() 559 guint avail = gst_adapter_available (self->output_adapter); in gst_amc_audio_dec_loop() 577 outbuf = gst_adapter_take_buffer (self->output_adapter, avail); in gst_amc_audio_dec_loop() 800 gst_adapter_flush (self->output_adapter, in gst_amc_audio_dec_stop() 801 gst_adapter_available (self->output_adapter)); in gst_amc_audio_dec_stop() 1039 gst_adapter_flush (self->output_adapter, in gst_amc_audio_dec_flush() [all …]
|
D | gstamcaudiodec.h | 61 GstAdapter *output_adapter; member
|
/third_party/json/test/src/ |
D | unit-convenience.cpp | 45 json::serializer s(nlohmann::detail::output_adapter<char>(ss), ' '); in check_escaped()
|
/third_party/json/include/nlohmann/ |
D | json.hpp | 2277 serializer s(detail::output_adapter<char, string_t>(result), indent_char, error_handler); in dump() 6566 serializer s(detail::output_adapter<char>(o), o.fill()); in operator <<() 7070 static void to_cbor(const basic_json& j, detail::output_adapter<uint8_t> o) in to_cbor() 7075 static void to_cbor(const basic_json& j, detail::output_adapter<char> o) in to_cbor() 7165 static void to_msgpack(const basic_json& j, detail::output_adapter<uint8_t> o) in to_msgpack() 7170 static void to_msgpack(const basic_json& j, detail::output_adapter<char> o) in to_msgpack() 7270 static void to_ubjson(const basic_json& j, detail::output_adapter<uint8_t> o, in to_ubjson() 7276 static void to_ubjson(const basic_json& j, detail::output_adapter<char> o, in to_ubjson() 7354 static void to_bson(const basic_json& j, detail::output_adapter<uint8_t> o) in to_bson() 7362 static void to_bson(const basic_json& j, detail::output_adapter<char> o) in to_bson()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
D | gstvideodecoder.c | 345 GstAdapter *output_adapter; member 788 decoder->priv->output_adapter = gst_adapter_new (); in gst_video_decoder_init() 981 if (decoder->priv->output_adapter) { in gst_video_decoder_finalize() 982 g_object_unref (decoder->priv->output_adapter); in gst_video_decoder_finalize() 983 decoder->priv->output_adapter = NULL; in gst_video_decoder_finalize() 2468 gst_adapter_clear (priv->output_adapter); in gst_video_decoder_reset() 3051 gst_adapter_available (priv->output_adapter)); in gst_video_decoder_prepare_finish_frame() 3840 if (gst_adapter_available (priv->output_adapter) == 0) { in gst_video_decoder_add_to_frame() 3846 gst_adapter_push (priv->output_adapter, buf); in gst_video_decoder_add_to_frame() 3868 ret = gst_adapter_available (priv->output_adapter); in gst_video_decoder_get_pending_frame_size() [all …]
|
/third_party/json/single_include/nlohmann/ |
D | json.hpp | 12716 class output_adapter class 12719 output_adapter(std::vector<CharType>& vec) in output_adapter() function in nlohmann::detail::output_adapter 12722 output_adapter(std::basic_ostream<CharType>& s) in output_adapter() function in nlohmann::detail::output_adapter 12725 output_adapter(StringType& s) in output_adapter() function in nlohmann::detail::output_adapter 18765 serializer s(detail::output_adapter<char, string_t>(result), indent_char, error_handler); in dump() 23054 serializer s(detail::output_adapter<char>(o), o.fill()); in operator <<() 23558 static void to_cbor(const basic_json& j, detail::output_adapter<uint8_t> o) in to_cbor() 23563 static void to_cbor(const basic_json& j, detail::output_adapter<char> o) in to_cbor() 23653 static void to_msgpack(const basic_json& j, detail::output_adapter<uint8_t> o) in to_msgpack() 23658 static void to_msgpack(const basic_json& j, detail::output_adapter<char> o) in to_msgpack() [all …]
|