/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ruby/ext/google/protobuf_c/ |
D | repeated_field.c | 64 int element_size = native_slot_size(self->field_type); in RepeatedField_subarray() 65 upb_fieldtype_t field_type = self->field_type; in RepeatedField_subarray() local 72 VALUE elem = native_slot_get(field_type, field_type_class, mem); in RepeatedField_subarray() 88 upb_fieldtype_t field_type = self->field_type; in RepeatedField_each() local 90 int element_size = native_slot_size(field_type); in RepeatedField_each() 95 VALUE val = native_slot_get(field_type, field_type_class, memory); in RepeatedField_each() 110 int element_size = native_slot_size(self->field_type); in RepeatedField_index() 111 upb_fieldtype_t field_type = self->field_type; in RepeatedField_index() local 126 return native_slot_get(field_type, field_type_class, memory); in RepeatedField_index() 160 upb_fieldtype_t field_type = self->field_type; in RepeatedField_index_set() local [all …]
|
D | storage.c | 594 if (self->field_type != upb_fielddef_type(field)) { in check_repeated_field_type() 598 if (self->field_type == UPB_TYPE_MESSAGE || in check_repeated_field_type() 599 self->field_type == UPB_TYPE_ENUM) { in check_repeated_field_type()
|
D | protobuf.h | 348 upb_fieldtype_t field_type; member
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/ |
D | extension_set.h | 290 void* MutableRawRepeatedField(int number, FieldType field_type, 721 static inline void Set(int number, FieldType field_type, 736 static inline void Add(int number, FieldType field_type, 742 MutableRepeated(int number, FieldType field_type, 770 int number, FieldType field_type, TYPE value, ExtensionSet* set) { \ 771 set->Set##METHOD(number, field_type, value, NULL); \ 783 int number, FieldType field_type, bool is_packed, \ 785 set->Add##METHOD(number, field_type, is_packed, value, NULL); \ 804 FieldType field_type, \ 808 set->MutableRawRepeatedField(number, field_type, is_packed, NULL)); \ [all …]
|
D | descriptor.h | 643 static inline bool IsTypePackable(Type field_type); 1885 inline bool FieldDescriptor::IsTypePackable(Type field_type) { in IsTypePackable() argument 1886 return (field_type != FieldDescriptor::TYPE_STRING && in IsTypePackable() 1887 field_type != FieldDescriptor::TYPE_GROUP && in IsTypePackable() 1888 field_type != FieldDescriptor::TYPE_MESSAGE && in IsTypePackable() 1889 field_type != FieldDescriptor::TYPE_BYTES); in IsTypePackable()
|
D | map_type_handler.h | 102 template <WireFormatLite::FieldType field_type, typename Type> 137 template <WireFormatLite::FieldType field_type, typename Type>
|
D | extension_set.cc | 347 void* ExtensionSet::MutableRawRepeatedField(int number, FieldType field_type, in MutableRawRepeatedField() argument 356 extension->type = field_type; in MutableRawRepeatedField() 360 static_cast<WireFormatLite::FieldType>(field_type))) { in MutableRawRepeatedField()
|
D | extension_set_heavy.cc | 133 inline WireFormatLite::FieldType field_type(FieldType type) { in field_type() function
|
D | descriptor.cc | 2357 string field_type; in DebugString() local 2362 &field_type, "map<$0, $1>", in DebugString() 2366 field_type = FieldTypeNameDebugString(); in DebugString() 2382 field_type, in DebugString()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/ |
D | wire_format.py | 259 def IsTypePackable(field_type): argument 268 return field_type not in NON_PACKABLE_TYPES
|
D | python_message.py | 1003 def _BytesForNonRepeatedElement(value, field_number, field_type): argument 1017 fn = type_checkers.TYPE_TO_BYTE_SIZE_FN[field_type] 1020 raise message_mod.EncodeError('Unrecognized field type: %d' % field_type)
|
D | reflection_test.py | 1041 def AddDescriptorField(proto, field_name, field_type): argument 1045 new_field.type = field_type
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/ |
D | default_value_objectwriter.cc | 330 const google::protobuf::Type* field_type = NULL; in PopulateChildren() local 346 field_type = found_type; in PopulateChildren() 350 field_type = GetMapValueType(*found_type, typeinfo); in PopulateChildren() 369 field.json_name(), field_type, kind, in PopulateChildren()
|
D | protostream_objectsource.cc | 261 const google::protobuf::Type* field_type = in RenderMap() local 272 FindAndVerifyField(*field_type, tag); in RenderMap() 284 FindFieldByNumber(*field_type, 1); in RenderMap() 1016 const google::protobuf::Type* field_type = in IsMap() local 1021 (GetBoolOptionOrDefault(field_type->options(), in IsMap() 1023 GetBoolOptionOrDefault(field_type->options(), "map_entry", false)); in IsMap()
|
D | protostream_objectwriter.cc | 1185 const google::protobuf::Type* field_type = in IsMap() local 1189 return GetBoolOptionOrDefault(field_type->options(), in IsMap() 1191 GetBoolOptionOrDefault(field_type->options(), "map_entry", false); in IsMap()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/javanano/ |
D | javanano_helpers.h | 132 JavaType GetJavaType(FieldDescriptor::Type field_type);
|
D | javanano_helpers.cc | 297 JavaType GetJavaType(FieldDescriptor::Type field_type) { in GetJavaType() argument 298 switch (field_type) { in GetJavaType()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/objectivec/ |
D | objectivec_helpers.h | 158 ObjectiveCType GetObjectiveCType(FieldDescriptor::Type field_type);
|
D | objectivec_helpers.cc | 574 ObjectiveCType GetObjectiveCType(FieldDescriptor::Type field_type) { in GetObjectiveCType() argument 575 switch (field_type) { in GetObjectiveCType()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/java/ |
D | java_helpers.cc | 363 const char* FieldTypeName(FieldDescriptor::Type field_type) { in FieldTypeName() argument 364 switch (field_type) { in FieldTypeName()
|
D | java_helpers.h | 207 const char* FieldTypeName(const FieldDescriptor::Type field_type);
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/cpp/ |
D | cpp_test_bad_identifiers.proto | 111 optional int32 field_type = 33; field
|
/frameworks/base/core/jni/ |
D | android_hardware_Camera.cpp | 1115 const char *field_type; member 1124 jfieldID field = GetFieldIDOrDie(env, clazz, f->field_name, f->field_type); in find_fields()
|