Searched refs:TYPE_GROUP (Results 1 - 25 of 62) sorted by last modified time

123

/external/protobuf/python/google/protobuf/
H A Ddescriptor.py337 TYPE_GROUP = 10 variable in class:FieldDescriptor
H A Dtext_format.py88 elif field.type == descriptor.FieldDescriptor.TYPE_GROUP:
180 if field and field.type != descriptor.FieldDescriptor.TYPE_GROUP:
183 if (field and field.type == descriptor.FieldDescriptor.TYPE_GROUP and
/external/protobuf/python/google/protobuf/internal/
H A Dtype_checkers.py183 _FieldDescriptor.TYPE_GROUP: wire_format.GroupByteSize,
206 _FieldDescriptor.TYPE_GROUP: encoder.GroupEncoder,
229 _FieldDescriptor.TYPE_GROUP: encoder.GroupSizer,
252 _FieldDescriptor.TYPE_GROUP: decoder.GroupDecoder,
275 _FieldDescriptor.TYPE_GROUP: wire_format.WIRETYPE_START_GROUP,
H A Dwire_format.py253 descriptor.FieldDescriptor.TYPE_GROUP,
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_helpers.cc233 case FieldDescriptor::TYPE_GROUP : return "Group";
H A Dcpp_primitive_field.cc72 case FieldDescriptor::TYPE_GROUP : return -1;
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_extension.cc65 case FieldDescriptor::TYPE_GROUP : return "GROUP";
H A Djava_helpers.cc61 if (GetType(field) == FieldDescriptor::TYPE_GROUP) {
220 case FieldDescriptor::TYPE_GROUP:
H A Djava_message_field.cc62 (GetType(descriptor) == FieldDescriptor::TYPE_GROUP) ?
153 if (GetType(descriptor_) == FieldDescriptor::TYPE_GROUP) {
299 if (GetType(descriptor_) == FieldDescriptor::TYPE_GROUP) {
H A Djava_primitive_field.cc113 case FieldDescriptor::TYPE_GROUP : return "Group" ;
146 case FieldDescriptor::TYPE_GROUP : return -1;
/external/protobuf/src/google/protobuf/compiler/javamicro/
H A Djavamicro_helpers.cc62 if (field->type() == FieldDescriptor::TYPE_GROUP) {
234 case FieldDescriptor::TYPE_GROUP:
H A Djavamicro_message_field.cc62 (descriptor->type() == FieldDescriptor::TYPE_GROUP) ?
118 if (descriptor_->type() == FieldDescriptor::TYPE_GROUP) {
251 if (descriptor_->type() == FieldDescriptor::TYPE_GROUP) {
H A Djavamicro_primitive_field.cc113 case FieldDescriptor::TYPE_GROUP : return "Group" ;
146 case FieldDescriptor::TYPE_GROUP : return -1;
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_extension.cc67 case FieldDescriptor::TYPE_GROUP : return "TYPE_GROUP" ;
H A Djavanano_helpers.cc105 if (field->type() == FieldDescriptor::TYPE_GROUP) {
317 case FieldDescriptor::TYPE_GROUP:
H A Djavanano_message_field.cc65 (descriptor->type() == FieldDescriptor::TYPE_GROUP) ?
103 if (descriptor_->type() == FieldDescriptor::TYPE_GROUP) {
187 if (descriptor_->type() == FieldDescriptor::TYPE_GROUP) {
201 if (descriptor_->type() == FieldDescriptor::TYPE_GROUP) {
H A Djavanano_primitive_field.cc115 case FieldDescriptor::TYPE_GROUP : return "Group" ;
148 case FieldDescriptor::TYPE_GROUP : return -1;
/external/protobuf/src/google/protobuf/compiler/
H A Dparser.cc71 result["group" ] = FieldDescriptorProto::TYPE_GROUP;
475 if (type_name.empty() && type == FieldDescriptorProto::TYPE_GROUP) {
629 case FieldDescriptorProto::TYPE_GROUP:
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc75 CPPTYPE_MESSAGE, // TYPE_GROUP
98 "group", // TYPE_GROUP
1567 if (extension(i)->type() == FieldDescriptor::TYPE_GROUP) {
1620 if (field(i)->type() == FieldDescriptor::TYPE_GROUP) {
1625 if (extension(i)->type() == FieldDescriptor::TYPE_GROUP) {
1701 type() == TYPE_GROUP ? message_type()->name() :
1723 if (type() == TYPE_GROUP) {
4020 case FieldDescriptor::TYPE_GROUP: {
4093 case FieldDescriptor::TYPE_GROUP:
4094 if (unknown_field->type() == UnknownField::TYPE_GROUP) {
[all...]
H A Ddescriptor.h311 TYPE_GROUP = 10, // Tag-delimited message. Deprecated. enumerator in enum:google::protobuf::FieldDescriptor::Type
339 CPPTYPE_MESSAGE = 10, // TYPE_MESSAGE, TYPE_GROUP
449 // If type is TYPE_MESSAGE or TYPE_GROUP, returns a descriptor for the
1355 field_type != FieldDescriptor::TYPE_GROUP &&
H A Ddescriptor.pb.cc2178 const FieldDescriptorProto_Type FieldDescriptorProto::TYPE_GROUP; member in class:google::protobuf::FieldDescriptorProto
H A Ddescriptor.pb.h755 static const Type TYPE_GROUP = FieldDescriptorProto_Type_TYPE_GROUP; member in class:google::protobuf::FieldDescriptorProto
H A Ddescriptor_unittest.cc417 FieldDescriptorProto::TYPE_GROUP)
589 EXPECT_EQ(FieldDescriptor::TYPE_GROUP , qux_->type());
1401 FieldDescriptorProto::TYPE_GROUP)
1461 EXPECT_EQ(FieldDescriptor::TYPE_GROUP , bar_->extension(1)->type());
1534 type == FieldDescriptor::TYPE_GROUP) {
1568 EXPECT_EQ(FD::CPPTYPE_MESSAGE, GetCppTypeForFieldType(FD::TYPE_GROUP ));
H A Dextension_set.cc117 GOOGLE_CHECK_NE(type, WireFormatLite::TYPE_GROUP);
152 type == WireFormatLite::TYPE_GROUP);
774 case WireFormatLite::TYPE_GROUP:
850 case WireFormatLite::TYPE_GROUP: {
852 AddMessage(number, WireFormatLite::TYPE_GROUP,
854 MutableMessage(number, WireFormatLite::TYPE_GROUP,
1137 case WireFormatLite::TYPE_GROUP:
1271 case WireFormatLite::TYPE_GROUP:
H A Dextension_set_heavy.cc361 case WireFormatLite::TYPE_GROUP:

Completed in 1666 milliseconds

123