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.h75 class LIBPROTOBUF_EXPORT ProtoStreamObjectSource : public ObjectSource {
77 ProtoStreamObjectSource(google::protobuf::io::CodedInputStream* stream,
81 virtual ~ProtoStreamObjectSource();
132 ProtoStreamObjectSource(google::protobuf::io::CodedInputStream* stream,
136 typedef util::Status (*TypeRenderer)(const ProtoStreamObjectSource*,
167 static util::Status RenderTimestamp(const ProtoStreamObjectSource* os,
172 static util::Status RenderDuration(const ProtoStreamObjectSource* os,
178 static util::Status RenderDouble(const ProtoStreamObjectSource* os,
181 static util::Status RenderFloat(const ProtoStreamObjectSource* os,
184 static util::Status RenderInt64(const ProtoStreamObjectSource* os,
[all …]
Dprotostream_objectsource.cc115 ProtoStreamObjectSource::ProtoStreamObjectSource( in ProtoStreamObjectSource() function in google::protobuf::util::converter::ProtoStreamObjectSource
128 ProtoStreamObjectSource::ProtoStreamObjectSource( in ProtoStreamObjectSource() function in google::protobuf::util::converter::ProtoStreamObjectSource
141 ProtoStreamObjectSource::~ProtoStreamObjectSource() { in ~ProtoStreamObjectSource()
147 Status ProtoStreamObjectSource::NamedWriteTo(StringPiece name, in NamedWriteTo()
152 const google::protobuf::Field* ProtoStreamObjectSource::FindAndVerifyField( in FindAndVerifyField()
172 Status ProtoStreamObjectSource::WriteMessage(const google::protobuf::Type& type, in WriteMessage()
230 StatusOr<uint32> ProtoStreamObjectSource::RenderList( in RenderList()
252 StatusOr<uint32> ProtoStreamObjectSource::RenderMap( in RenderMap()
298 Status ProtoStreamObjectSource::RenderPacked( in RenderPacked()
310 Status ProtoStreamObjectSource::RenderTimestamp( in RenderTimestamp()
[all …]
Dtype_info_test_helper.cc91 ProtoStreamObjectSource* TypeInfoTestHelper::NewProtoSource( in NewProtoSource()
96 return new ProtoStreamObjectSource(coded_input, type_resolver_.get(), in NewProtoSource()
Dtype_info_test_helper.h77 ProtoStreamObjectSource* NewProtoSource(io::CodedInputStream* coded_input,
Dprotostream_objectsource_test.cc121 google::protobuf::scoped_ptr<ProtoStreamObjectSource> os( in ExecuteTest()
/external/protobuf/src/google/protobuf/util/
Djson_util.cc81 converter::ProtoStreamObjectSource proto_source(&in_stream, resolver, type); in BinaryToJsonStream()