Home
last modified time | relevance | path

Searched refs:JsonObjectWriter (Results 1 – 4 of 4) sorted by relevance

/external/protobuf/src/google/protobuf/util/internal/
Djson_objectwriter.cc51 JsonObjectWriter::~JsonObjectWriter() { in ~JsonObjectWriter()
57 JsonObjectWriter* JsonObjectWriter::StartObject(StringPiece name) { in StartObject()
64 JsonObjectWriter* JsonObjectWriter::EndObject() { in EndObject()
71 JsonObjectWriter* JsonObjectWriter::StartList(StringPiece name) { in StartList()
78 JsonObjectWriter* JsonObjectWriter::EndList() { in EndList()
85 JsonObjectWriter* JsonObjectWriter::RenderBool(StringPiece name, bool value) { in RenderBool()
89 JsonObjectWriter* JsonObjectWriter::RenderInt32(StringPiece name, int32 value) { in RenderInt32()
93 JsonObjectWriter* JsonObjectWriter::RenderUint32(StringPiece name, in RenderUint32()
98 JsonObjectWriter* JsonObjectWriter::RenderInt64(StringPiece name, int64 value) { in RenderInt64()
106 JsonObjectWriter* JsonObjectWriter::RenderUint64(StringPiece name, in RenderUint64()
[all …]
Djson_objectwriter.h88 class LIBPROTOBUF_EXPORT JsonObjectWriter : public StructuredObjectWriter {
90 JsonObjectWriter(StringPiece indent_string, in JsonObjectWriter() function
97 virtual ~JsonObjectWriter();
100 virtual JsonObjectWriter* StartObject(StringPiece name);
101 virtual JsonObjectWriter* EndObject();
102 virtual JsonObjectWriter* StartList(StringPiece name);
103 virtual JsonObjectWriter* EndList();
104 virtual JsonObjectWriter* RenderBool(StringPiece name, bool value);
105 virtual JsonObjectWriter* RenderInt32(StringPiece name, int32 value);
106 virtual JsonObjectWriter* RenderUint32(StringPiece name, uint32 value);
[all …]
Djson_objectwriter_test.cc61 JsonObjectWriter* ow_;
65 ow_ = new JsonObjectWriter("", out_stream_); in TEST_F()
71 ow_ = new JsonObjectWriter("", out_stream_); in TEST_F()
82 ow_ = new JsonObjectWriter("", out_stream_); in TEST_F()
88 ow_ = new JsonObjectWriter("", out_stream_); in TEST_F()
99 ow_ = new JsonObjectWriter("", out_stream_); in TEST_F()
110 ow_ = new JsonObjectWriter("", out_stream_); in TEST_F()
121 ow_ = new JsonObjectWriter("", out_stream_); in TEST_F()
132 ow_ = new JsonObjectWriter("", out_stream_); in TEST_F()
142 ow_ = new JsonObjectWriter("", out_stream_); in TEST_F()
[all …]
/external/protobuf/src/google/protobuf/util/
Djson_util.cc83 converter::JsonObjectWriter json_writer(options.add_whitespace ? " " : "", in BinaryToJsonStream()