Home
last modified time | relevance | path

Searched refs:value_descriptor (Results 1 – 10 of 10) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/
Denum_type_wrapper.py71 return [value_descriptor.name
72 for value_descriptor in self._enum_type.values]
80 return [value_descriptor.number
81 for value_descriptor in self._enum_type.values]
88 return [(value_descriptor.name, value_descriptor.number)
89 for value_descriptor in self._enum_type.values]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/objectivec/
Dobjectivec_map_field.cc92 const FieldDescriptor* value_descriptor = in MapFieldGenerator() local
94 value_field_generator_.reset(FieldGenerator::Make(value_descriptor, options)); in MapFieldGenerator()
120 ObjectiveCType value_objc_type = GetObjectiveCType(value_descriptor); in MapFieldGenerator()
134 class_name += MapEntryTypeName(value_descriptor, false); in MapFieldGenerator()
156 const FieldDescriptor* value_descriptor = in FinishInitialization() local
158 if (GetObjectiveCType(value_descriptor) == OBJECTIVECTYPE_ENUM) { in FinishInitialization()
167 const FieldDescriptor* value_descriptor = in DetermineForwardDeclarations() local
169 if (GetObjectiveCType(value_descriptor) == OBJECTIVECTYPE_MESSAGE) { in DetermineForwardDeclarations()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/csharp/
Dcsharp_map_field.cc62 const FieldDescriptor* value_descriptor = in GenerateMembers() local
65 variables_["value_type_name"] = type_name(value_descriptor); in GenerateMembers()
69 CreateFieldGenerator(value_descriptor, 2, this->options())); in GenerateMembers()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dmap_test_util.cc1607 const FieldDescriptor* value_descriptor = in ExpectMapEntryClearViaReflection() local
1613 value_descriptor)); in ExpectMapEntryClearViaReflection()
1619 const FieldDescriptor* value_descriptor = in ExpectMapEntryClearViaReflection() local
1625 value_descriptor)); in ExpectMapEntryClearViaReflection()
1631 const FieldDescriptor* value_descriptor = in ExpectMapEntryClearViaReflection() local
1637 value_descriptor)); in ExpectMapEntryClearViaReflection()
1643 const FieldDescriptor* value_descriptor = in ExpectMapEntryClearViaReflection() local
1649 value_descriptor)); in ExpectMapEntryClearViaReflection()
1655 const FieldDescriptor* value_descriptor = in ExpectMapEntryClearViaReflection() local
1661 value_descriptor)); in ExpectMapEntryClearViaReflection()
[all …]
Dtext_format.cc1040 const Descriptor* value_descriptor = in ConsumeAnyValue() local
1042 if (value_descriptor == NULL) { in ConsumeAnyValue()
1048 const Message* value_prototype = factory.GetPrototype(value_descriptor); in ConsumeAnyValue()
1565 const google::protobuf::Descriptor* value_descriptor = in PrintAny() local
1568 if (value_descriptor == NULL) { in PrintAny()
1574 factory.GetPrototype(value_descriptor)->New()); in PrintAny()
Dmap_test.cc2617 const FieldDescriptor* value_descriptor = in TEST() local
2622 value_descriptor)); in TEST()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/
Dtype_resolver_util.cc188 const EnumValueDescriptor* value_descriptor = descriptor->value(i); in ConvertEnumDescriptor() local
190 value->set_name(value_descriptor->name()); in ConvertEnumDescriptor()
191 value->set_number(value_descriptor->number()); in ConvertEnumDescriptor()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/python/
Dpython_generator.cc459 const EnumValueDescriptor& value_descriptor = *enum_descriptor.value(j); in PrintTopLevelEnums() local
461 std::make_pair(value_descriptor.name(), value_descriptor.number())); in PrintTopLevelEnums()
1295 const EnumValueDescriptor& value_descriptor = *enum_descriptor.value(i); in FixOptionsForEnum() local
1297 "EnumValueOptions", value_descriptor.options().SerializeAsString()); in FixOptionsForEnum()
1301 value_descriptor.name().c_str()), in FixOptionsForEnum()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/js/
Djs_generator.cc267 const EnumValueDescriptor* value_descriptor) { in GetPath() argument
270 value_descriptor->type()) + "." + value_descriptor->name(); in GetPath()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/pyext/
Dmessage.cc1075 const FieldDescriptor* value_descriptor = in CheckAndGetInteger() local
1077 if (value_descriptor->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) { in CheckAndGetInteger()