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

1 2 34 5 6 7 8 91011>>

  /external/protobuf/src/google/protobuf/
any.cc 38 string GetTypeUrl(const Descriptor* message,
77 bool AnyMetadata::InternalIs(const Descriptor* descriptor) const {
84 return full_name == descriptor->full_name();
100 const Descriptor* descriptor = message.GetDescriptor(); local
101 if (descriptor->full_name() != kAnyFullTypeName) {
104 *type_url_field = descriptor->FindFieldByNumber(1);
105 *value_field = descriptor->FindFieldByNumber(2);
dynamic_message_unittest.cc 51 #include <google/protobuf/descriptor.h>
52 #include <google/protobuf/descriptor.pb.h>
68 const Descriptor* descriptor_;
70 const Descriptor* extensions_descriptor_;
72 const Descriptor* packed_descriptor_;
74 const Descriptor* oneof_descriptor_;
76 const Descriptor* proto3_descriptor_;
91 unittest::TestAllTypes::descriptor()->file()->CopyTo(&unittest_file);
92 unittest_import::ImportMessage::descriptor()->file()->CopyTo(
94 unittest_import::PublicImportMessage::descriptor()->file()->CopyTo
182 const Descriptor* descriptor = message->GetDescriptor(); local
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Guid/SmramMemoryReserve/
SmramMemoryReserve.h 65 EFI_SMRAM_DESCRIPTOR Descriptor[1];
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ExtensionProfileLevelDescriptor.java 31 @Descriptor(tags = {0x13})
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_doc_comment.h 36 #include <google/protobuf/descriptor.h>
42 void WriteMessageDocComment(io::Printer* printer, const Descriptor* message);
csharp_reflection_class.h 59 void WriteGeneratedCodeInfo(const Descriptor* descriptor,
csharp_message.h 50 MessageGenerator(const Descriptor* descriptor, const Options* options);
59 const Descriptor* descriptor_;
66 int GetFieldOrdinal(const FieldDescriptor* descriptor);
68 const FieldDescriptor* descriptor);
  /external/protobuf/src/google/protobuf/compiler/java/
java_doc_comment.h 38 #include <google/protobuf/descriptor.h>
51 void WriteMessageDocComment(io::Printer* printer, const Descriptor* message);
java_message_lite.h 50 explicit ImmutableMessageLiteGenerator(const Descriptor* descriptor,
68 io::Printer* printer, const Descriptor::ExtensionRange* range);
  /external/skia/src/effects/gradients/
SkSweepGradient.h 15 SkSweepGradient(SkScalar cx, SkScalar cy, const Descriptor&);
  /external/autotest/client/cros/cellular/mbim_compliance/
usb_descriptors.py 66 Metaclass for creating a USB descriptor class.
68 A derived descriptor class takes raw descriptor data as an array of unsigned
70 as instance attributes. A derived class of |Descriptor| should specify the
73 DESCRIPTOR_TYPE: An unsigned 8-bit number specifying the descriptor
77 DESCRIPTOR_SUBTYPE: An unsigned 8-bit number specifying the descriptor
83 in the USB descriptor. Each inner tuple is a field definition and
86 field from the raw descriptor data. The second element specifies the
88 derived descriptor class for storing the field. Each derived descriptor
    [all...]
  /external/protobuf/php/ext/google/protobuf/
protobuf.h 13 struct Descriptor;
23 typedef struct Descriptor Descriptor;
70 struct Descriptor {
158 Descriptor* descriptor; // kept alive by self.class.descriptor reference. member in struct:MessageHeader
164 zval* descriptor; member in struct:MessageBuilderContext
170 // VALUE descriptor;
189 Descriptor* php_to_descriptor(zval* value TSRMLS_DC)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.h 41 #include <google/protobuf/descriptor.pb.h>
42 #include <google/protobuf/descriptor.h>
67 string ClassName(const Descriptor* descriptor, bool qualified);
72 string DependentBaseClassTemplateName(const Descriptor* descriptor);
76 string SuperClassName(const Descriptor* descriptor, const Options& options);
98 inline const Descriptor* FieldScope(const FieldDescriptor* field) {
163 string SafeFunctionName(const Descriptor* descriptor
    [all...]
  /hardware/interfaces/graphics/allocator/2.0/default/
Gralloc1On0Adapter.h 69 int32_t /*gralloc1_function_descriptor_t*/ descriptor);
72 int32_t /*gralloc1_function_descriptor_t*/ descriptor) {
73 return getAdapter(device)->doGetFunction(descriptor);
85 // Buffer descriptor lifecycle functions
87 struct Descriptor;
97 gralloc1_error_t destroyDescriptor(gralloc1_buffer_descriptor_t descriptor);
99 gralloc1_buffer_descriptor_t descriptor) {
100 auto error = getAdapter(device)->destroyDescriptor(descriptor);
104 // Buffer descriptor modification functions
106 struct Descriptor : public std::enable_shared_from_this<Descriptor>
153 auto descriptor = getAdapter(device)->getDescriptor(descriptorId); local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Application/MemoryProfileInfo/
MemoryProfileInfo.c 385 Dump memory profile descriptor information.
387 @param[in] DescriptorIndex Memory profile descriptor index.
388 @param[in] Descriptor Pointer to memory profile descriptor.
390 @return Pointer to next memory profile descriptor.
396 IN MEMORY_PROFILE_DESCRIPTOR *Descriptor
399 if (Descriptor->Header.Signature != MEMORY_PROFILE_DESCRIPTOR_SIGNATURE) {
403 Print (L" Signature - 0x%08x\n", Descriptor->Header.Signature);
404 Print (L" Length - 0x%04x\n", Descriptor->Header.Length);
405 Print (L" Revision - 0x%04x\n", Descriptor->Header.Revision);
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Pei/
OhciPei.inf 33 Descriptor.h
  /external/javassist/src/main/javassist/bytecode/annotation/
MemberValue.java 20 import javassist.bytecode.Descriptor;
67 StringBuffer sb = new StringBuffer(Descriptor.of(rawType));
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_field.h 40 #include <google/protobuf/descriptor.h>
74 // Convenience class which constructs FieldGenerators for a Descriptor.
77 explicit FieldGeneratorMap(const Descriptor* descriptor, const Params &params);
84 const Descriptor* descriptor_;
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_message.h 57 explicit MessageGenerator(const Descriptor* descriptor, const Params& params);
86 const Descriptor* descriptor_;
  /external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
UnittestImportProto3.cs 16 #region Descriptor
17 /// <summary>File descriptor for google/protobuf/unittest_import_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.UnittestImportProto3Reflection
34 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
35 new pbr::FileDescriptor[] { global::Google.Protobuf.TestProtos.UnittestImportPublicProto3Reflection.Descriptor, },
59 public static pbr::MessageDescriptor Descriptor {
60 get { return global::Google.Protobuf.TestProtos.UnittestImportProto3Reflection.Descriptor.MessageTypes[0]; }
63 pbr::MessageDescriptor pb::IMessage.Descriptor {
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
Descriptors.java 51 * Every message type has a {@link Descriptor}, which lists all
53 * type's descriptor by calling {@code MessageType.getDescriptor()}, or
57 * {@code Descriptor.getFile()}. A {@link FileDescriptor} contains descriptors
62 * {@code google/protobuf/descriptor.proto}.
76 /** Convert the descriptor to its protocol message representation. */
107 /** Get the {@code FileOptions}, defined in {@code descriptor.proto}. */
111 public List<Descriptor> getMessageTypes() {
164 * @return The message type's descriptor, or {@code null} if not found.
166 public Descriptor findMessageTypeByName(String name) {
176 if (result != null && result instanceof Descriptor &
2409 private final GenericDescriptor descriptor; field in class:Descriptors.DescriptorPool.DescriptorIntPair
    [all...]
DynamicMessage.java 33 import com.google.protobuf.Descriptors.Descriptor;
46 * given a {@link Descriptors.Descriptor}.
51 private final Descriptor type;
66 DynamicMessage(Descriptor type, FieldSet<FieldDescriptor> fields,
79 public static DynamicMessage getDefaultInstance(Descriptor type) {
89 public static DynamicMessage parseFrom(Descriptor type,
97 Descriptor type,
105 public static DynamicMessage parseFrom(Descriptor type, ByteString data)
111 public static DynamicMessage parseFrom(Descriptor type, ByteString data,
118 public static DynamicMessage parseFrom(Descriptor type, byte[] data
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Wrappers.cs 16 #region Descriptor
17 /// <summary>File descriptor for google/protobuf/wrappers.proto</summary>
18 public static pbr::FileDescriptor Descriptor {
19 get { return descriptor; }
21 private static pbr::FileDescriptor descriptor; field in class:Google.Protobuf.WellKnownTypes.WrappersReflection
36 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
64 public static pbr::MessageDescriptor Descriptor {
65 get { return global::Google.Protobuf.WellKnownTypes.WrappersReflection.Descriptor.MessageTypes[0]; }
68 pbr::MessageDescriptor pb::IMessage.Descriptor {
69 get { return Descriptor; }
    [all...]
  /external/javassist/src/main/javassist/compiler/
AccessorMaker.java 47 consDesc = Descriptor.appendParameter(lastParamType, desc);
60 CtClass[] params = Descriptor.getParameterTypes(desc, pool);
88 * @param desc the descriptor of the private method.
89 * @param accDesc the descriptor of the accessor method. The first
119 CtClass[] params = Descriptor.getParameterTypes(accDesc, pool);
131 code.addReturn(Descriptor.getReturnType(desc, pool));
168 accDesc = "(" + Descriptor.of(clazz) + ")" + fieldType;
183 code.addReturn(Descriptor.toCtClass(fieldType, pool));
219 accDesc = "(" + Descriptor.of(clazz) + fieldType + ")V";
227 reg = code.addLoad(0, Descriptor.toCtClass(fieldType, pool))
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/
NullMemoryTest.c 211 EFI_GCD_MEMORY_SPACE_DESCRIPTOR Descriptor;
213 gDS->GetMemorySpaceDescriptor (StartAddress, &Descriptor);
221 Descriptor.Capabilities &~(EFI_MEMORY_PRESENT | EFI_MEMORY_INITIALIZED | EFI_MEMORY_TESTED | EFI_MEMORY_RUNTIME)

Completed in 416 milliseconds

1 2 34 5 6 7 8 91011>>