HomeSort by relevance Sort by last modified time
    Searched refs:StartList (Results 1 - 17 of 17) sorted by null

  /external/protobuf/src/google/protobuf/util/internal/
default_value_objectwriter_test.cc 84 ->StartList("repeatedDouble")
105 ->StartList("repeatedDouble")
125 ->StartList("repeatedDouble")
json_objectwriter_test.cc 83 ow_->StartList("")->EndList();
91 ->StartList("empty")
112 ->StartList("nested")
122 ow_->StartList("")
133 ow_->StartList("")
134 ->StartList("")
185 ->StartList("items")
190 ->StartList("empty")
231 ->StartList("list")
protostream_objectsource_test.cc 130 ->StartList("repFix32")
135 ->StartList("repU32")
139 ->StartList("repI32")
144 ->StartList("repSf32")
148 ->StartList("repS32")
153 ->StartList("repFix64")
157 ->StartList("repU64")
162 ->StartList("repI64")
166 ->StartList("repSf64")
171 ->StartList("repS64"
    [all...]
json_stream_parser_test.cc 180 ow_.StartList("")->EndList();
302 ->StartList("snake_key")
317 ow_.StartList("")
323 ->StartList("")
356 ->StartList("l")
357 ->StartList("")
385 ow_.StartList("")
397 ow_.StartList("")
443 ow_.StartList("")
458 ow_.StartList("")
    [all...]
protostream_objectwriter_test.cc 238 ->StartList("pseudonym")
242 ->StartList("friend")
318 ->StartList("rep_fix32")
321 ->StartList("rep_u32")
324 ->StartList("rep_i32")
327 ->StartList("rep_sf32")
330 ->StartList("rep_s32")
333 ->StartList("rep_fix64")
336 ->StartList("rep_u64")
339 ->StartList("rep_i64"
    [all...]
expecting_objectwriter.h 75 MOCK_METHOD1(StartList, ObjectWriter*(StringPiece));
109 virtual ObjectWriter* StartList(StringPiece name) {
111 ? EXPECT_CALL(*mock_, StartList(IsEmpty()))
112 : EXPECT_CALL(*mock_, StartList(StrEq(name.ToString()))))
object_writer.h 69 virtual ObjectWriter* StartList(StringPiece name) = 0;
protostream_objectwriter.h 106 virtual ProtoStreamObjectWriter* StartList(StringPiece name);
133 // Passes a StartList call through to the Any writer.
134 void StartList(StringPiece name);
241 // StartList or EndList calls to underlying ObjectWriter.
300 // Pushes an item on to the stack. Also calls either StartObject or StartList
305 // StartList calls.
protostream_objectwriter.cc 238 void ProtoStreamObjectWriter::AnyWriter::StartList(StringPiece name) {
254 ow_->StartList("");
256 ow_->StartList(name);
354 // With the above JSON representation, we will only call StartList() on the
569 ProtoStreamObjectWriter* ProtoStreamObjectWriter::StartList(StringPiece name) {
588 // We got a StartList with google.protobuf.Value master type. This means
606 // We got a StartList with google.protobuf.ListValue master type. This
622 ProtoWriter::StartList(name);
628 current_->any()->StartList(name);
    [all...]
json_objectwriter.cc 71 JsonObjectWriter* JsonObjectWriter::StartList(StringPiece name) {
json_objectwriter.h 64 // ->StartList("empty")
102 virtual JsonObjectWriter* StartList(StringPiece name);
default_value_objectwriter.h 93 virtual DefaultValueObjectWriter* StartList(StringPiece name);
208 // the parent node's StartObject()/StartList() method is called with this
proto_writer.h 85 virtual ProtoWriter* StartList(StringPiece name);
default_value_objectwriter.cc 233 ow->StartList(name_);
507 DefaultValueObjectWriter* DefaultValueObjectWriter::StartList(
json_stream_parser.cc 650 ow_->StartList(key_);
protostream_objectsource.cc 234 ow->StartList(name);
547 ow->StartList(field_name);
    [all...]
proto_writer.cc 472 ProtoWriter* ProtoWriter::StartList(StringPiece name) {

Completed in 682 milliseconds