Home
last modified time | relevance | path

Searched refs:ProtoStreamObjectSource (Results 1 – 6 of 6) sorted by relevance

/external/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectsource.h72 class PROTOBUF_EXPORT ProtoStreamObjectSource : public ObjectSource {
74 ProtoStreamObjectSource(io::CodedInputStream* stream,
78 ~ProtoStreamObjectSource() override;
164 ProtoStreamObjectSource(io::CodedInputStream* stream,
168 typedef util::Status (*TypeRenderer)(const ProtoStreamObjectSource*,
190 static util::Status RenderTimestamp(const ProtoStreamObjectSource* os,
196 static util::Status RenderDuration(const ProtoStreamObjectSource* os,
203 static util::Status RenderDouble(const ProtoStreamObjectSource* os,
206 static util::Status RenderFloat(const ProtoStreamObjectSource* os,
209 static util::Status RenderInt64(const ProtoStreamObjectSource* os,
[all …]
Dprotostream_objectsource.cc118 ProtoStreamObjectSource::ProtoStreamObjectSource( in ProtoStreamObjectSource() function in google::protobuf::util::converter::ProtoStreamObjectSource
137 ProtoStreamObjectSource::ProtoStreamObjectSource( in ProtoStreamObjectSource() function in google::protobuf::util::converter::ProtoStreamObjectSource
156 ProtoStreamObjectSource::~ProtoStreamObjectSource() { in ~ProtoStreamObjectSource()
162 Status ProtoStreamObjectSource::NamedWriteTo(StringPiece name, in NamedWriteTo()
167 const google::protobuf::Field* ProtoStreamObjectSource::FindAndVerifyField( in FindAndVerifyField()
187 Status ProtoStreamObjectSource::WriteMessage(const google::protobuf::Type& type, in WriteMessage()
255 StatusOr<uint32> ProtoStreamObjectSource::RenderList( in RenderList()
277 StatusOr<uint32> ProtoStreamObjectSource::RenderMap( in RenderMap()
323 Status ProtoStreamObjectSource::RenderPacked( in RenderPacked()
336 Status ProtoStreamObjectSource::RenderTimestamp( in RenderTimestamp()
[all …]
Dtype_info_test_helper.cc88 ProtoStreamObjectSource* TypeInfoTestHelper::NewProtoSource( in NewProtoSource()
93 return new ProtoStreamObjectSource(coded_input, type_resolver_.get(), in NewProtoSource()
Dtype_info_test_helper.h74 ProtoStreamObjectSource* NewProtoSource(io::CodedInputStream* coded_input,
Dprotostream_objectsource_test.cc119 std::unique_ptr<ProtoStreamObjectSource> os( in ExecuteTest()
/external/protobuf/src/google/protobuf/util/
Djson_util.cc93 converter::ProtoStreamObjectSource proto_source(&in_stream, resolver, type); in BinaryToJsonStream()