HomeSort by relevance Sort by last modified time
    Searched refs:Descriptor (Results 1 - 25 of 303) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
TestBadIdentifiers.java 53 String descriptorField = TestBadIdentifiersProto.Descriptor
55 Descriptors.Descriptor protoDescriptor = TestBadIdentifiersProto.Descriptor
57 String nestedDescriptorField = TestBadIdentifiersProto.Descriptor
59 Descriptors.Descriptor nestedProtoDescriptor = TestBadIdentifiersProto
60 .Descriptor.NestedDescriptor.getDefaultInstance()
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/
python_generator.h 46 class Descriptor;
77 void PrintNestedEnums(const Descriptor& descriptor) const;
85 const Descriptor& message_descriptor,
88 int (Descriptor::*CountFn)() const,
89 const FieldDescriptor* (Descriptor::*GetterFn)(int) const) const;
90 void PrintFieldsInDescriptor(const Descriptor& message_descriptor) const;
91 void PrintExtensionsInDescriptor(const Descriptor& message_descriptor) const;
93 void PrintDescriptor(const Descriptor& message_descriptor) const;
94 void PrintNestedDescriptors(const Descriptor& containing_descriptor) const
    [all...]
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.h 46 class Descriptor;
77 void PrintNestedEnums(const Descriptor& descriptor) const;
85 const Descriptor& message_descriptor,
88 int (Descriptor::*CountFn)() const,
89 const FieldDescriptor* (Descriptor::*GetterFn)(int) const) const;
90 void PrintFieldsInDescriptor(const Descriptor& message_descriptor) const;
91 void PrintExtensionsInDescriptor(const Descriptor& message_descriptor) const;
93 void PrintDescriptor(const Descriptor& message_descriptor) const;
94 void PrintNestedDescriptors(const Descriptor& containing_descriptor) const
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ObjectDescriptorBase.java 25 @Descriptor(tags = 0x00)
Descriptor.java 35 public @interface Descriptor {
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
dynamic_message.h 48 class Descriptor; // descriptor.h
49 class DescriptorPool; // descriptor.h
57 // Descriptor. DynamicMessage provides this.
63 // the cached information for a particular descriptor could outlive the
64 // descriptor itself. To avoid this problem, DynamicMessageFactory
86 // Descriptor d for which:
97 // Given a Descriptor, constructs the default (prototype) Message of that
101 // Calling this method twice with the same Descriptor returns the same
108 // The given descriptor must outlive the returned message, and hence mus
    [all...]
descriptor.h 36 // You can use a message's descriptor to learn at runtime what fields
70 class Descriptor;
80 // Defined in descriptor.proto
101 // Defined in descriptor.cc
123 // message. To obtain the Descriptor for a given message object, call
125 // static method called descriptor() which returns the type's descriptor.
127 class LIBPROTOBUF_EXPORT Descriptor {
139 // Index of this descriptor within the file or containing type's message
146 // If this Descriptor describes a nested type, this returns the typ
    [all...]
  /external/protobuf/src/google/protobuf/
dynamic_message.h 48 class Descriptor; // descriptor.h
49 class DescriptorPool; // descriptor.h
57 // Descriptor. DynamicMessage provides this.
63 // the cached information for a particular descriptor could outlive the
64 // descriptor itself. To avoid this problem, DynamicMessageFactory
86 // Descriptor d for which:
97 // Given a Descriptor, constructs the default (prototype) Message of that
101 // Calling this method twice with the same Descriptor returns the same
108 // The given descriptor must outlive the returned message, and hence mus
    [all...]
descriptor.h 36 // You can use a message's descriptor to learn at runtime what fields
66 class Descriptor;
76 // Defined in descriptor.proto
96 // Defined in descriptor.cc
104 // message. To obtain the Descriptor for a given message object, call
106 // static method called descriptor() which returns the type's descriptor.
108 class LIBPROTOBUF_EXPORT Descriptor {
120 // Index of this descriptor within the file or containing type's message
127 // If this Descriptor describes a nested type, this returns the typ
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/bluetooth_low_energy/
utils.h 25 // Converts a Descriptor to a base::Value. This function is necessary as a
26 // Descriptor embeds a Characteristic and that needs special handling as
28 scoped_ptr<base::DictionaryValue> DescriptorToValue(Descriptor* from);
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugArangeSet.h 27 uint8_t seg_size; // The size in bytes of a segment descriptor on the target architecture. If the target system uses a flat address space, this value is 0.
30 struct Descriptor
42 void AddDescriptor(const DWARFDebugArangeSet::Descriptor& range);
51 const Descriptor* GetDescriptor(uint32_t i) const
58 const Descriptor &
66 typedef std::vector<Descriptor> DescriptorColl;
DWARFDebugPubnamesSet.h 40 struct Descriptor
42 Descriptor() :
48 Descriptor(dw_offset_t the_offset, const char *the_name) :
64 const DWARFDebugPubnamesSet::Descriptor* GetDescriptor(uint32_t i) const
83 typedef std::vector<Descriptor> DescriptorColl;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutContribution.java 29 return new ChangeLayoutRefactoring.Descriptor(project, description, comment, arguments);
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
35 if (descriptor instanceof ChangeLayoutRefactoring.Descriptor) {
36 return ((ChangeLayoutRefactoring.Descriptor) descriptor).getArguments();
38 return super.retrieveArgumentMap(descriptor);
ChangeViewContribution.java 29 return new ChangeViewRefactoring.Descriptor(project, description, comment, arguments);
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
35 if (descriptor instanceof ChangeViewRefactoring.Descriptor) {
36 return ((ChangeViewRefactoring.Descriptor) descriptor).getArguments();
38 return super.retrieveArgumentMap(descriptor);
ExtractIncludeContribution.java 29 return new ExtractIncludeRefactoring.Descriptor(project, description, comment, arguments);
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
35 if (descriptor instanceof ExtractIncludeRefactoring.Descriptor) {
36 return ((ExtractIncludeRefactoring.Descriptor) descriptor).getArguments();
38 return super.retrieveArgumentMap(descriptor);
ExtractStyleContribution.java 29 return new ExtractStyleRefactoring.Descriptor(project, description, comment, arguments);
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
35 if (descriptor instanceof ExtractStyleRefactoring.Descriptor) {
36 return ((ExtractStyleRefactoring.Descriptor) descriptor).getArguments();
38 return super.retrieveArgumentMap(descriptor);
UnwrapContribution.java 29 return new UnwrapRefactoring.Descriptor(project, description, comment, arguments);
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
35 if (descriptor instanceof UnwrapRefactoring.Descriptor) {
36 return ((UnwrapRefactoring.Descriptor) descriptor).getArguments();
38 return super.retrieveArgumentMap(descriptor);
WrapInContribution.java 29 return new WrapInRefactoring.Descriptor(project, description, comment, arguments);
34 public Map retrieveArgumentMap(RefactoringDescriptor descriptor) {
35 if (descriptor instanceof WrapInRefactoring.Descriptor) {
36 return ((WrapInRefactoring.Descriptor) descriptor).getArguments();
38 return super.retrieveArgumentMap(descriptor);
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
DynamicMessage.java 33 import com.google.protobuf.Descriptors.Descriptor;
43 * given a {@link Descriptors.Descriptor}.
48 private final Descriptor type;
56 private DynamicMessage(Descriptor type, FieldSet<FieldDescriptor> fields,
67 public static DynamicMessage getDefaultInstance(Descriptor type) {
73 public static DynamicMessage parseFrom(Descriptor type,
81 Descriptor type,
89 public static DynamicMessage parseFrom(Descriptor type, ByteString data)
95 public static DynamicMessage parseFrom(Descriptor type, ByteString data,
102 public static DynamicMessage parseFrom(Descriptor type, byte[] data
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
DynamicMessage.java 33 import com.google.protobuf.Descriptors.Descriptor;
42 * given a {@link Descriptors.Descriptor}.
47 private final Descriptor type;
55 private DynamicMessage(Descriptor type, FieldSet<FieldDescriptor> fields,
66 public static DynamicMessage getDefaultInstance(Descriptor type) {
72 public static DynamicMessage parseFrom(Descriptor type,
80 Descriptor type,
88 public static DynamicMessage parseFrom(Descriptor type, ByteString data)
94 public static DynamicMessage parseFrom(Descriptor type, ByteString data,
101 public static DynamicMessage parseFrom(Descriptor type, byte[] data
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_helpers.h 39 #include <google/protobuf/descriptor.pb.h>
40 #include <google/protobuf/descriptor.h>
80 // descriptor.
81 string ClassName(const Descriptor* descriptor);
82 string ClassName(const EnumDescriptor* descriptor);
83 string ClassName(const ServiceDescriptor* descriptor);
84 string ClassName(const FileDescriptor* descriptor);
86 inline string ExtensionIdentifierName(const FieldDescriptor* descriptor) {
87 return ToJavaName(descriptor->full_name(), descriptor->file())
    [all...]
java_message.h 55 explicit MessageGenerator(const Descriptor* descriptor);
88 io::Printer* printer, const Descriptor::ExtensionRange* range);
101 const Descriptor* descriptor_;
  /external/llvm/lib/DebugInfo/
DWARFDebugArangeSet.h 35 // The size in bytes of a segment descriptor on the target architecture.
40 struct Descriptor {
47 typedef std::vector<Descriptor> DescriptorColl;
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_message.h 56 explicit MessageGenerator(const Descriptor* descriptor, const Params& params);
82 const Descriptor* descriptor_;
  /external/javassist/src/main/javassist/bytecode/annotation/
ClassMemberValue.java 20 import javassist.bytecode.Descriptor;
99 return Descriptor.toClassName(v);
108 String setTo = Descriptor.of(newClassName);

Completed in 674 milliseconds

1 2 3 4 5 6 7 8 91011>>