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

1 2 3 4 5 6 7

  /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 {
ExtensionProfileLevelDescriptor.java 31 @Descriptor(tags = {0x13})
  /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...]
dynamic_message_unittest.cc 45 #include <google/protobuf/descriptor.h>
46 #include <google/protobuf/descriptor.pb.h>
60 const Descriptor* descriptor_;
62 const Descriptor* extensions_descriptor_;
64 const Descriptor* packed_descriptor_;
77 unittest::TestAllTypes::descriptor()->file()->CopyTo(&unittest_file);
78 unittest_import::ImportMessage::descriptor()->file()->CopyTo(
100 TEST_F(DynamicMessageTest, Descriptor) {
101 // Check that the descriptor on the DynamicMessage matches the descriptor
    [all...]
  /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/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...]
Descriptors.java 45 * Every message type has a {@link Descriptor}, which lists all
47 * type's descriptor by calling {@code MessageType.getDescriptor()}, or
51 * {@code google/protobuf/descriptor.proto}.
60 /** Convert the descriptor to its protocol message representation. */
73 /** Get the {@code FileOptions}, defined in {@code descriptor.proto}. */
77 public List<Descriptor> getMessageTypes() {
105 * @return The message type's descriptor, or {@code null} if not found.
107 public Descriptor findMessageTypeByName(String name) {
117 if (result != null && result instanceof Descriptor &&
119 return (Descriptor)result
1788 private final GenericDescriptor descriptor; field in class:Descriptors.DescriptorPool.DescriptorIntPair
    [all...]
  /external/v8/src/
property.h 37 // Abstraction for elements in instance-descriptor arrays.
39 // Each descriptor has a key, property attributes, property type,
40 // property index (in the actual instance-descriptor array) and
44 class Descriptor BASE_EMBEDDED {
79 Descriptor() : details_(Smi::FromInt(0)) {}
87 Descriptor(String* key, Object* value, PropertyDetails details)
92 Descriptor(String* key,
108 class MapTransitionDescriptor: public Descriptor {
111 : Descriptor(key, map, attributes, MAP_TRANSITION) { }
114 class ElementsTransitionDescriptor: public Descriptor {
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_message.h 56 explicit MessageGenerator(const Descriptor* descriptor, const Params& params);
82 const Descriptor* descriptor_;
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_message.h 56 explicit MessageGenerator(const Descriptor* descriptor, const Params& params);
81 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);
EnumMemberValue.java 23 import javassist.bytecode.Descriptor;
82 return Descriptor.toClassName(cp.getUtf8Info(typeIndex));
91 typeIndex = cp.addUtf8Info(Descriptor.of(typename));
  /external/llvm/lib/DebugInfo/
DWARFDebugArangeSet.h 34 // The size in bytes of a segment descriptor on the target architecture.
39 struct Descriptor {
46 typedef std::vector<Descriptor> DescriptorColl;
66 const Descriptor *getDescriptor(uint32_t i) const {
  /external/protobuf/src/google/protobuf/compiler/java/
java_message.h 55 explicit MessageGenerator(const Descriptor* descriptor);
80 io::Printer* printer, const Descriptor::ExtensionRange* range);
87 const Descriptor* descriptor_;
java_helpers.h 39 #include <google/protobuf/descriptor.pb.h>
40 #include <google/protobuf/descriptor.h>
77 // descriptor.
78 inline string ClassName(const Descriptor* descriptor) {
79 return ToJavaName(descriptor->full_name(), descriptor->file());
81 inline string ClassName(const EnumDescriptor* descriptor) {
82 return ToJavaName(descriptor->full_name(), descriptor->file())
    [all...]
  /external/javassist/src/main/javassist/
ClassMap.java 18 import javassist.bytecode.Descriptor;
160 return Descriptor.toJvmName(classname);
168 return Descriptor.toJavaName(classname);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.h 39 #include <google/protobuf/descriptor.h>
40 #include <google/protobuf/descriptor.pb.h>
60 string ClassName(const Descriptor* descriptor, bool qualified);
63 string SuperClassName(const Descriptor* descriptor);
77 inline const Descriptor* FieldScope(const FieldDescriptor* field) {
126 // Do message classes in this file have descriptor and refelction methods?

Completed in 161 milliseconds

1 2 3 4 5 6 7