HomeSort by relevance Sort by last modified time
    Searched refs:Descriptor (Results 251 - 275 of 626) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/
UsbBus.c 508 Retrieve the device descriptor of the device.
511 @param Descriptor The variable to receive the device descriptor.
513 @retval EFI_SUCCESS The device descriptor is returned.
521 OUT EFI_USB_DEVICE_DESCRIPTOR *Descriptor
528 if (Descriptor == NULL) {
537 CopyMem (Descriptor, &Dev->DevDesc->Desc, sizeof (EFI_USB_DEVICE_DESCRIPTOR));
545 Return the configuration descriptor of the current active configuration.
548 @param Descriptor The USB configuration descriptor.
    [all...]
  /external/javassist/src/main/javassist/bytecode/
LocalVariableAttribute.java 110 return Descriptor.rename(desc, oldname, newname);
128 return Descriptor.rename(desc, classnames);
219 * This represents the type descriptor of the local variable.
247 * Returns the type descriptor of the local variable
256 public String descriptor(int i) { method in class:LocalVariableAttribute
261 * This method is equivalent to <code>descriptor()</code>.
263 * this method should be used instead of <code>descriptor()</code>
270 * @see #descriptor(int)
274 return descriptor(i);
317 sig = Descriptor.rename(sig, classnames)
    [all...]
  /external/nanopb-c/generator/google/protobuf/compiler/
plugin_pb2.py 4 from google.protobuf import descriptor as _descriptor
14 DESCRIPTOR = _descriptor.FileDescriptor(
17 serialized_pb='\n%google/protobuf/compiler/plugin.proto\x12\x18google.protobuf.compiler\x1a google/protobuf/descriptor.proto\"}\n\x14\x43odeGeneratorRequest\x12\x18\n\x10\x66ile_to_generate\x18\x01 \x03(\t\x12\x11\n\tparameter\x18\x02 \x01(\t\x12\x38\n\nproto_file\x18\x0f \x03(\x0b\x32$.google.protobuf.FileDescriptorProto\"\xaa\x01\n\x15\x43odeGeneratorResponse\x12\r\n\x05\x65rror\x18\x01 \x01(\t\x12\x42\n\x04\x66ile\x18\x0f \x03(\x0b\x32\x34.google.protobuf.compiler.CodeGeneratorResponse.File\x1a>\n\x04\x46ile\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x17\n\x0finsertion_point\x18\x02 \x01(\t\x12\x0f\n\x07\x63ontent\x18\x0f \x01(\tB,\n\x1c\x63om.google.protobuf.compilerB\x0cPluginProtos')
22 _CODEGENERATORREQUEST = _descriptor.Descriptor(
26 file=DESCRIPTOR,
64 _CODEGENERATORRESPONSE_FILE = _descriptor.Descriptor(
68 file=DESCRIPTOR,
105 _CODEGENERATORRESPONSE = _descriptor.Descriptor(
109 file=DESCRIPTOR,
142 DESCRIPTOR.message_types_by_name['CodeGeneratorRequest'] = _CODEGENERATORREQUES
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Any.cs 16 #region Descriptor
17 /// <summary>File descriptor for google/protobuf/any.proto</summary>
18 public static pbr::FileDescriptor Descriptor {
19 get { return descriptor; }
21 private static pbr::FileDescriptor descriptor; field in class:Google.Protobuf.WellKnownTypes.AnyReflection
31 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
106 public static pbr::MessageDescriptor Descriptor {
107 get { return global::Google.Protobuf.WellKnownTypes.AnyReflection.Descriptor.MessageTypes[0]; }
110 pbr::MessageDescriptor pb::IMessage.Descriptor {
111 get { return Descriptor; }
    [all...]
Duration.cs 16 #region Descriptor
17 /// <summary>File descriptor for google/protobuf/duration.proto</summary>
18 public static pbr::FileDescriptor Descriptor {
19 get { return descriptor; }
21 private static pbr::FileDescriptor descriptor; field in class:Google.Protobuf.WellKnownTypes.DurationReflection
32 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
89 public static pbr::MessageDescriptor Descriptor {
90 get { return global::Google.Protobuf.WellKnownTypes.DurationReflection.Descriptor.MessageTypes[0]; }
93 pbr::MessageDescriptor pb::IMessage.Descriptor {
94 get { return Descriptor; }
    [all...]
Timestamp.cs 16 #region Descriptor
17 /// <summary>File descriptor for google/protobuf/timestamp.proto</summary>
18 public static pbr::FileDescriptor Descriptor {
19 get { return descriptor; }
21 private static pbr::FileDescriptor descriptor; field in class:Google.Protobuf.WellKnownTypes.TimestampReflection
32 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
101 public static pbr::MessageDescriptor Descriptor {
102 get { return global::Google.Protobuf.WellKnownTypes.TimestampReflection.Descriptor.MessageTypes[0]; }
105 pbr::MessageDescriptor pb::IMessage.Descriptor {
106 get { return Descriptor; }
    [all...]
Type.cs 16 #region Descriptor
17 /// <summary>File descriptor for google/protobuf/type.proto</summary>
18 public static pbr::FileDescriptor Descriptor {
19 get { return descriptor; }
21 private static pbr::FileDescriptor descriptor; field in class:Google.Protobuf.WellKnownTypes.TypeReflection
61 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
62 new pbr::FileDescriptor[] { global::Google.Protobuf.WellKnownTypes.AnyReflection.Descriptor, global::Google.Protobuf.WellKnownTypes.SourceContextReflection.Descriptor, },
100 public static pbr::MessageDescriptor Descriptor {
101 get { return global::Google.Protobuf.WellKnownTypes.TypeReflection.Descriptor.MessageTypes[0];
    [all...]
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
RubyDescriptor.java 49 @JRubyClass(name = "Descriptor", include = "Enumerable")
53 RubyClass cDescriptor = protobuf.defineClassUnder("Descriptor", runtime.getObject(), new ObjectAllocator() {
69 * Descriptor.new => descriptor
71 * Creates a new, empty, message type descriptor. At a minimum, its name must be
86 * Descriptor.name => name
98 * Descriptor.name = name
100 * Assigns a name to this message type. The descriptor must not have been added
112 * Descriptor.add_field(field) => nil
114 * Adds the given FieldDescriptor to this message type. The descriptor must no
266 private Descriptors.Descriptor descriptor; field in class:RubyDescriptor
    [all...]
  /external/protobuf/src/google/protobuf/
reflection_ops.cc 39 #include <google/protobuf/descriptor.h>
40 #include <google/protobuf/descriptor.pb.h>
57 const Descriptor* descriptor = from.GetDescriptor(); local
58 GOOGLE_CHECK_EQ(to->GetDescriptor(), descriptor)
60 << "(merge " << descriptor->full_name()
142 const Descriptor* descriptor = message.GetDescriptor(); local
146 for (int i = 0; i < descriptor->field_count(); i++) {
147 if (descriptor->field(i)->is_required())
228 const Descriptor* descriptor = message.GetDescriptor(); local
    [all...]
message.h 82 // const Descriptor* descriptor = foo->GetDescriptor();
86 // const FieldDescriptor* text_field = descriptor->FindFieldByName("text");
90 // const FieldDescriptor* numbers_field = descriptor->
122 #include <google/protobuf/descriptor.h>
165 const Descriptor* descriptor; member in struct:google::protobuf::Metadata
178 // the optimize_for option in descriptor.proto.
203 // must have the same descriptor, but need not necessarily be the same class.
266 // Parse a protocol buffer from a file descriptor. If successful, the entir
    [all...]
reflection.h 533 static const Descriptor* GetMessageFieldDescriptor() {
549 static const Descriptor* GetMessageFieldDescriptor() {
564 static const Descriptor* GetMessageFieldDescriptor() {
571 static const Descriptor* get() {
577 static const Descriptor* get() {
592 static const Descriptor* GetMessageFieldDescriptor() {
  /external/protobuf/src/google/protobuf/util/
type_resolver_util.cc 35 #include <google/protobuf/descriptor.pb.h>
36 #include <google/protobuf/descriptor.h>
86 const Descriptor* descriptor = pool_->FindMessageTypeByName(message_name); local
87 if (descriptor == NULL) {
91 ConvertDescriptor(descriptor, type);
107 const EnumDescriptor* descriptor = pool_->FindEnumTypeByName(type_name); local
108 if (descriptor == NULL) {
111 ConvertEnumDescriptor(descriptor, enum_type);
116 void ConvertDescriptor(const Descriptor* descriptor, Type* type)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoring.java 60 * This constructor is solely used by {@link Descriptor},
157 return new Descriptor(
234 public static class Descriptor extends VisualRefactoringDescriptor {
235 public Descriptor(String project, String description, String comment,
  /external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
MapUnittestProto3.cs 16 #region Descriptor
17 /// <summary>File descriptor for google/protobuf/map_unittest_proto3.proto</summary>
18 public static pbr::FileDescriptor Descriptor {
19 get { return descriptor; }
21 private static pbr::FileDescriptor descriptor; field in class:Google.Protobuf.TestProtos.MapUnittestProto3Reflection
150 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
151 new pbr::FileDescriptor[] { global::Google.Protobuf.TestProtos.UnittestProto3Reflection.Descriptor, },
183 public static pbr::MessageDescriptor Descriptor {
184 get { return global::Google.Protobuf.TestProtos.MapUnittestProto3Reflection.Descriptor.MessageTypes[0]; }
187 pbr::MessageDescriptor pb::IMessage.Descriptor {
    [all...]
  /external/protobuf/python/google/protobuf/pyext/
descriptor.cc 38 #include <google/protobuf/descriptor.pb.h>
40 #include <google/protobuf/pyext/descriptor.h>
65 // Store interned descriptors, so that the same C++ descriptor yields the same
81 // message_descriptor = Descriptor(
156 // Helper functions for descriptor objects.
158 // A set of templates to retrieve the C++ FileDescriptor of any descriptor.
160 const FileDescriptor* GetFileDescriptor(const DescriptorClass* descriptor) {
161 return descriptor->file();
164 const FileDescriptor* GetFileDescriptor(const FileDescriptor* descriptor) {
165 return descriptor;
284 const void* descriptor; member in struct:google::protobuf::python::PyBaseDescriptor
301 namespace descriptor { namespace in namespace:google::protobuf::python
506 const Descriptor* descriptor = _GetDescriptor(self); local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/ruby/
ruby_generator.cc 35 #include <google/protobuf/descriptor.h>
36 #include <google/protobuf/descriptor.pb.h>
54 void GenerateMessage(const google::protobuf::Descriptor* message,
60 const google::protobuf::Descriptor* message,
183 void GenerateMessage(const google::protobuf::Descriptor* message,
262 const google::protobuf::Descriptor* message,
338 bool UsesTypeFromFile(const Descriptor* message, const FileDescriptor* file,
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
message.h 82 // const Descriptor* descriptor = foo->GetDescriptor();
86 // const FieldDescriptor* text_field = descriptor->FindFieldByName("text");
90 // const FieldDescriptor* numbers_field = descriptor->
126 #include <google/protobuf/descriptor.h>
155 const Descriptor* descriptor; member in struct:google::protobuf::Metadata
168 // the optimize_for option in descriptor.proto.
182 // must have the same descriptor, but need not necessarily be the same class.
239 // Parse a protocol buffer from a file descriptor. If successful, the entir
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
message.h 82 // const Descriptor* descriptor = foo->GetDescriptor();
86 // const FieldDescriptor* text_field = descriptor->FindFieldByName("text");
90 // const FieldDescriptor* numbers_field = descriptor->
126 #include <google/protobuf/descriptor.h>
155 const Descriptor* descriptor; member in struct:google::protobuf::Metadata
168 // the optimize_for option in descriptor.proto.
182 // must have the same descriptor, but need not necessarily be the same class.
239 // Parse a protocol buffer from a file descriptor. If successful, the entir
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
message.h 82 // const Descriptor* descriptor = foo->GetDescriptor();
86 // const FieldDescriptor* text_field = descriptor->FindFieldByName("text");
90 // const FieldDescriptor* numbers_field = descriptor->
126 #include <google/protobuf/descriptor.h>
155 const Descriptor* descriptor; member in struct:google::protobuf::Metadata
168 // the optimize_for option in descriptor.proto.
182 // must have the same descriptor, but need not necessarily be the same class.
239 // Parse a protocol buffer from a file descriptor. If successful, the entir
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
message.h 82 // const Descriptor* descriptor = foo->GetDescriptor();
86 // const FieldDescriptor* text_field = descriptor->FindFieldByName("text");
90 // const FieldDescriptor* numbers_field = descriptor->
126 #include <google/protobuf/descriptor.h>
155 const Descriptor* descriptor; member in struct:google::protobuf::Metadata
168 // the optimize_for option in descriptor.proto.
182 // must have the same descriptor, but need not necessarily be the same class.
239 // Parse a protocol buffer from a file descriptor. If successful, the entir
    [all...]
  /frameworks/base/tools/incident_report/
main.cpp 39 static bool read_message(CodedInputStream* in, Descriptor const* descriptor,
41 static void print_message(Out* out, Descriptor const* descriptor, GenericMessage const* message);
45 read_length_delimited(CodedInputStream* in, uint32 fieldId, Descriptor const* descriptor,
53 FieldDescriptor const* field = descriptor->FindFieldByNumber(fieldId);
83 read_message(CodedInputStream* in, Descriptor const* descriptor, GenericMessage* message)
110 if (!read_length_delimited(in, fieldId, descriptor, message))
303 Descriptor const* descriptor = IncidentProto::descriptor(); local
551 Descriptor const* descriptor = IncidentProto::descriptor(); local
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
message.h 82 // const Descriptor* descriptor = foo->GetDescriptor();
86 // const FieldDescriptor* text_field = descriptor->FindFieldByName("text");
90 // const FieldDescriptor* numbers_field = descriptor->
122 #include <google/protobuf/descriptor.h>
165 const Descriptor* descriptor; member in struct:google::protobuf::Metadata
178 // the optimize_for option in descriptor.proto.
203 // must have the same descriptor, but need not necessarily be the same class.
266 // Parse a protocol buffer from a file descriptor. If successful, the entir
    [all...]
  /external/v8/tools/
ll_prof.py 449 class Descriptor(object):
450 """Descriptor of a structure in the binary trace log."""
460 _fields_ = Descriptor.CtypesFields(fields)
473 return [(field, Descriptor.CTYPE_MAP[format]) for (field, format) in fields]
481 TRACE_HEADER_DESC = Descriptor([
495 PERF_EVENT_ATTR_DESC = Descriptor([
511 PERF_EVENT_HEADER_DESC = Descriptor([
519 PERF_MMAP_EVENT_BODY_DESC = Descriptor([
528 PERF_MMAP2_EVENT_BODY_DESC = Descriptor([
609 self.ip_struct = Descriptor.CTYPE_MAP[PERF_SAMPLE_EVENT_IP_FORMAT
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
Descriptor.cs 2 // source: google/protobuf/descriptor.proto
12 /// <summary>Holder for reflection information generated from google/protobuf/descriptor.proto</summary>
16 #region Descriptor
17 /// <summary>File descriptor for google/protobuf/descriptor.proto</summary>
18 public static pbr::FileDescriptor Descriptor {
19 get { return descriptor; }
21 private static pbr::FileDescriptor descriptor; field in class:Google.Protobuf.Reflection.DescriptorReflection
141 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
179 public static pbr::MessageDescriptor Descriptor {
    [all...]
  /external/protobuf/src/google/protobuf/compiler/objectivec/
objectivec_message.cc 47 #include <google/protobuf/descriptor.pb.h>
65 int OrderGroupForFieldDescriptor(const FieldDescriptor* descriptor) {
87 if (descriptor->is_repeated()) {
91 switch (descriptor->type()) {
145 bool operator()(const Descriptor::ExtensionRange* a,
146 const Descriptor::ExtensionRange* b) const {
151 // Sort the fields of the given Descriptor by number into a new[]'d array
153 const FieldDescriptor** SortFieldsByNumber(const Descriptor* descriptor) {
155 new const FieldDescriptor* [descriptor->field_count()]
    [all...]

Completed in 486 milliseconds

<<11121314151617181920>>