HomeSort by relevance Sort by last modified time
    Searched refs:Descriptor (Results 426 - 450 of 667) sorted by null

<<11121314151617181920>>

  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
EnumValueDescriptor.cs 36 /// Descriptor for a single enum value within an enum in a .proto file.
66 /// Returns the enum descriptor that this value is part of.
IFieldAccessor.cs 44 /// Returns the descriptor associated with this field.
46 FieldDescriptor Descriptor { get; }
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
FieldPresenceTest.java 33 import com.google.protobuf.Descriptors.Descriptor;
195 Descriptor descriptor = TestAllTypes.getDescriptor(); local
196 FieldDescriptor optionalInt32Field = descriptor.findFieldByName("optional_int32");
197 FieldDescriptor optionalStringField = descriptor.findFieldByName("optional_string");
198 FieldDescriptor optionalBytesField = descriptor.findFieldByName("optional_bytes");
199 FieldDescriptor optionalNestedEnumField = descriptor.findFieldByName("optional_nested_enum");
  /external/protobuf/ruby/ext/google/protobuf_c/
message.c 43 layout_mark(self->descriptor->layout, Message_data(self));
56 VALUE descriptor = rb_ivar_get(klass, descriptor_instancevar_interned); local
57 Descriptor* desc = ruby_to_Descriptor(descriptor);
67 msg->descriptor = desc;
68 rb_ivar_set(ret, descriptor_instancevar_interned, descriptor);
94 self->descriptor->layout->
155 if (!upb_msgdef_lookupname(self->descriptor->msgdef, name, name_len, &f,
173 layout_set(self->descriptor->layout, Message_data(self), f, argv[1]);
176 return layout_get(self->descriptor->layout, Message_data(self), f)
    [all...]
  /external/protobuf/src/google/protobuf/
any.pb.cc 14 #include <google/protobuf/descriptor.h>
25 const ::google::protobuf::Descriptor* Any_descriptor_ = NULL;
178 const ::google::protobuf::Descriptor* Any::descriptor() { function in class:google::protobuf::Any
396 metadata.descriptor = Any_descriptor_;
descriptor_database.cc 39 #include <google/protobuf/descriptor.pb.h>
167 // We don't consider this an error, though, because the descriptor is
314 GOOGLE_LOG(ERROR) << "Invalid file descriptor data passed to "
420 const Descriptor* extendee = pool_.FindMessageTypeByName(containing_type);
435 const Descriptor* extendee = pool_.FindMessageTypeByName(extendee_type);
map_field_test.cc 109 map_descriptor_ = unittest::TestMap::descriptor()
130 const Descriptor* map_descriptor_;
217 const Descriptor* map_descriptor =
218 unittest::TestMap::descriptor()
text_format.cc 45 #include <google/protobuf/descriptor.h>
54 #include <google/protobuf/descriptor.pb.h>
80 const Descriptor* descriptor = message.GetDescriptor(); local
81 *type_url_field = descriptor->FindFieldByNumber(1);
82 *value_field = descriptor->FindFieldByNumber(2);
227 ParserImpl(const Descriptor* root_message_type,
373 const Descriptor* descriptor = message->GetDescriptor(); local
413 descriptor->full_name() + "\".")
1562 const Descriptor* descriptor = message.GetDescriptor(); local
    [all...]
any.pb.h 57 static const ::google::protobuf::Descriptor* descriptor();
extension_set_heavy.cc 39 #include <google/protobuf/descriptor.h>
82 const Descriptor* containing_type)
91 const Descriptor* containing_type_;
95 const Descriptor* containing_type,
113 if (iter->second.descriptor == NULL) {
117 output->push_back(iter->second.descriptor);
145 const Descriptor* message_type,
162 MessageLite* ExtensionSet::MutableMessage(const FieldDescriptor* descriptor,
165 if (MaybeNewExtension(descriptor->number(), descriptor, &extension))
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_message.cc 45 #include <google/protobuf/descriptor.pb.h>
64 // Sort the fields of the given Descriptor by number into a new[]'d array
66 const FieldDescriptor** SortFieldsByNumber(const Descriptor* descriptor) {
68 new const FieldDescriptor*[descriptor->field_count()];
69 for (int i = 0; i < descriptor->field_count(); i++) {
70 fields[i] = descriptor->field(i);
72 sort(fields, fields + descriptor->field_count(),
81 MessageGenerator::MessageGenerator(const Descriptor* descriptor, const Params& params
    [all...]
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/Ia32/
SecEntry.asm 255 ; ROM-based Global-Descriptor Table for the Tiano PEI Phase
268 ; Linear data segment descriptor
278 ; Linear code segment descriptor
288 ; System data segment descriptor
299 ; System code segment descriptor
309 ; Spare segment descriptor
319 ; Spare segment descriptor
330 ; Spare segment descriptor
342 ; GDT Descriptor
344 GdtDesc: ; GDT descriptor
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/
UfsBlockIoPei.h 227 Read or write specified device descriptor of a UFS device.
231 @param[in] DescId The ID of device descriptor.
232 @param[in] Index The Index of device descriptor.
233 @param[in] Selector The Selector of device descriptor.
234 @param[in, out] Descriptor The buffer of device descriptor to be read or written.
235 @param[in] DescSize The size of device descriptor buffer.
237 @retval EFI_SUCCESS The device descriptor was read/written successfully.
238 @retval EFI_DEVICE_ERROR A device error occurred while attempting to r/w the device descriptor.
239 @retval EFI_TIMEOUT A timeout occurred while waiting for the completion of r/w the device descriptor.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsPassThruDxe/
UfsPassThru.h     [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Dhcp6.h 268 /// The descriptor for IA.
270 EFI_DHCP6_IA_DESCRIPTOR Descriptor;
356 /// The descriptor for the IA of the EFI DHCPv6 Protocol instance.
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Utility.c 769 WriteUnaligned16 ((UINT16 *) Buf, HTONS (Ia->Descriptor.Type));
781 WriteUnaligned32 ((UINT32 *) Buf, HTONL (Ia->Descriptor.IaId));
787 if (Ia->Descriptor.Type == Dhcp6OptIana) {
963 @param[in] IaDesc The pointer to the Ia descriptor.
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/FspSupport/Library/SecFspPlatformSecLibVlv2/Ia32/
SecEntry.asm 244 ; ROM-based Global-Descriptor Table for the Tiano PEI Phase
257 ; Linear data segment descriptor
267 ; Linear code segment descriptor
277 ; System data segment descriptor
288 ; System code segment descriptor
298 ; Spare segment descriptor
308 ; Spare segment descriptor
319 ; Spare segment descriptor
331 ; GDT Descriptor
333 GdtDesc: ; GDT descriptor
    [all...]
  /external/javassist/src/main/javassist/expr/
FieldAccess.java 129 * called field descriptor, which is defined in the JVM specification.
131 * @see javassist.bytecode.Descriptor#toCtClass(String, ClassPool)
161 = Descriptor.toCtClass(constPool.getFieldrefType(index),
  /external/libusb/libusb/os/
haiku_usb_raw.cpp 76 memcpy(buffer, dev->Descriptor(), DEVICE_DESC_LENGTH);
99 usbi_err(DEVICE_CTX(device), "failed getting configuration descriptor");
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
DecoderConfigDescriptor.java 45 @Descriptor(tags = {0x04})
76 BaseDescriptor descriptor; local
79 descriptor = ObjectDescriptorFactory.createFrom(objectTypeIndication, bb);
81 log.finer(descriptor + " - DecoderConfigDescr1 read: " + read + ", size: " + (descriptor != null ? descriptor.getSize() : null));
82 if (descriptor != null) {
83 final int size = descriptor.getSize();
90 if (descriptor instanceof DecoderSpecificInfo) {
91 decoderSpecificInfo = (DecoderSpecificInfo) descriptor;
    [all...]
ESDescriptor.java 61 @Descriptor(tags = {0x03})
108 BaseDescriptor descriptor = ObjectDescriptorFactory.createFrom(-1, bb); local
110 log.finer(descriptor + " - ESDescriptor1 read: " + read + ", size: " + (descriptor != null ? descriptor.getSize() : null));
111 if (descriptor != null) {
112 final int size = descriptor.getSize();
118 if (descriptor instanceof DecoderConfigDescriptor) {
119 decoderConfigDescriptor = (DecoderConfigDescriptor) descriptor;
125 BaseDescriptor descriptor = ObjectDescriptorFactory.createFrom(-1, bb); local
144 BaseDescriptor descriptor = ObjectDescriptorFactory.createFrom(-1, bb); local
    [all...]
  /external/nanopb-c/generator/proto/
nanopb_pb2.py 3 from google.protobuf import descriptor
10 DESCRIPTOR = descriptor.FileDescriptor(
13 serialized_pb='\n\x0cnanopb.proto\x1a google/protobuf/descriptor.proto\"\x92\x01\n\rNanoPBOptions\x12\x10\n\x08max_size\x18\x01 \x01(\x05\x12\x11\n\tmax_count\x18\x02 \x01(\x05\x12$\n\x04type\x18\x03 \x01(\x0e\x32\n.FieldType:\nFT_DEFAULT\x12\x18\n\nlong_names\x18\x04 \x01(\x08:\x04true\x12\x1c\n\rpacked_struct\x18\x05 \x01(\x08:\x05\x66\x61lse*Z\n\tFieldType\x12\x0e\n\nFT_DEFAULT\x10\x00\x12\x0f\n\x0b\x46T_CALLBACK\x10\x01\x12\x0e\n\nFT_POINTER\x10\x04\x12\r\n\tFT_STATIC\x10\x02\x12\r\n\tFT_IGNORE\x10\x03:E\n\x0enanopb_fileopt\x12\x1c.google.protobuf.FileOptions\x18\xf2\x07 \x01(\x0b\x32\x0e.NanoPBOptions:G\n\rnanopb_msgopt\x12\x1f.google.protobuf.MessageOptions\x18\xf2\x07 \x01(\x0b\x32\x0e.NanoPBOptions:E\n\x0enanopb_enumopt\x12\x1c.google.protobuf.EnumOptions\x18\xf2\x07 \x01(\x0b\x32\x0e.NanoPBOptions:>\n\x06nanopb\x12\x1d.google.protobuf.FieldOptions\x18\xf2\x07 \x01(\x0b\x32\x0e.NanoPBOptionsB\x1a\n\x18\x66i.kapsi.koti.jpa.nanopb')
15 _FIELDTYPE = descriptor.EnumDescriptor(
19 file=DESCRIPTOR,
21 descriptor.EnumValueDescriptor(
25 descriptor.EnumValueDescriptor(
29 descriptor.EnumValueDescriptor(
33 descriptor.EnumValueDescriptor
    [all...]
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
RubyDescriptorPool.java 90 IRubyObject descriptor = this.symtab.get(name); local
91 if (descriptor == null) {
94 return descriptor;
137 for (Descriptors.Descriptor descriptor : fileDescriptor.getMessageTypes()) {
139 symtab.get(runtime.newString(Utils.unescapeIdentifier(descriptor.getName()))));
140 for (Descriptors.FieldDescriptor fieldDescriptor : descriptor.getFields()) {
157 rubyDescriptor.setDescriptor(descriptor);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_service.cc 45 ServiceGenerator::ServiceGenerator(const ServiceDescriptor* descriptor,
47 : descriptor_(descriptor) {
83 "static const ::google::protobuf::ServiceDescriptor* descriptor();\n"
178 "const ::google::protobuf::ServiceDescriptor* $classname$::descriptor() {\n"
284 " GOOGLE_DCHECK_EQ(method->service(), descriptor());\n"
289 const Descriptor* type =
325 " channel_->CallMethod(descriptor()->method($index$),\n"
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_reflection_class.cc 35 #include <google/protobuf/descriptor.h>
36 #include <google/protobuf/descriptor.pb.h>
139 "#region Descriptor\n"
140 "/// <summary>File descriptor for $file_name$</summary>\n"
141 "public static pbr::FileDescriptor Descriptor {\n"
142 " get { return descriptor; }\n"
144 "private static pbr::FileDescriptor descriptor;\n"
171 "descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,\n");
174 // descriptor.proto is special: we don't allow access to the generated code, but there's
175 // a separately-exposed property to get at the file descriptor, specifically to allow thi
    [all...]

Completed in 764 milliseconds

<<11121314151617181920>>