Home
last modified time | relevance | path

Searched refs:IsMap (Results 1 – 13 of 13) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/
Dprotostream_objectwriter.h207 bool IsMap() { return item_type_ == MAP; } in IsMap() function
257 inline bool IsMap(const google::protobuf::Field& field);
Dprotostream_objectwriter.cc472 if (current_->IsMap()) { in StartObject()
543 if (IsMap(*field)) { in StartObject()
647 if (current_->IsMap()) { in StartList()
776 if (IsMap(*field)) { in StartList()
1001 if (current_->IsMap()) { in RenderDataPiece()
1178 bool ProtoStreamObjectWriter::IsMap(const google::protobuf::Field& field) { in IsMap() function in google::protobuf::util::converter::ProtoStreamObjectWriter
Dutility.h163 LIBPROTOBUF_EXPORT bool IsMap(const google::protobuf::Field& field,
Dprotostream_objectsource.h255 bool IsMap(const google::protobuf::Field& field) const;
Dprotostream_objectsource.cc215 if (check_maps && IsMap(*field)) { in WriteMessage()
521 if (os->IsMap(*field)) { in RenderStruct()
1014 bool ProtoStreamObjectSource::IsMap( in IsMap() function in google::protobuf::util::converter::ProtoStreamObjectSource
Dutility.cc316 bool IsMap(const google::protobuf::Field& field, in IsMap() function
Ddefault_value_objectwriter.cc343 is_map = IsMap(field, *found_type); in PopulateChildren()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/Reflection/
DFieldDescriptor.cs185 …public bool IsMap => fieldType == FieldType.Message && messageType.Proto.Options != null && messag… field in Google.Protobuf.Reflection.FieldDescriptor
338 return IsMap ? new MapFieldAccessor(property, this) in CreateAccessor()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/
DJsonParser.cs223 if (field.IsMap || field.IsRepeated || !IsGoogleProtobufValueField(field)) in MergeField()
231 if (field.IsMap) in MergeField()
DJsonFormatter.cs336 if (accessor.Descriptor.IsMap) in IsDefaultValue()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/php/ext/google/protobuf/
Dupb.h1590 bool IsMap() const;
2584 inline bool FieldDef::IsMap() const { return upb_fielddef_ismap(this); } in IsMap() function
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ruby/ext/google/protobuf_c/
Dupb.h2027 bool IsMap() const;
3200 inline bool FieldDef::IsMap() const { return upb_fielddef_ismap(this); }
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Ddescriptor_unittest.cc853 TEST_F(DescriptorTest, IsMap) { in TEST_F() argument