Searched refs:descriptor (Results 201 - 225 of 365) sorted by relevance

1234567891011>>

/external/protobuf/java/src/main/java/com/google/protobuf/
H A DDescriptors.java47 * 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}. */
105 * @return The message type's descriptor, or {@code null} if not found.
129 * @return The enum type's descriptor, or {@code null} if not found.
153 * @return The service type's descriptor, or {@code null} if not found.
178 * @return The extension's descriptor, or {@code null} if not found.
204 * descriptor. This can occur for a number of reasons, e.g.
279 "Failed to parse protocol buffer descriptor fo
1704 addSymbol(final GenericDescriptor descriptor) argument
1788 private final GenericDescriptor descriptor; field in class:Descriptors.DescriptorPool.DescriptorIntPair
1791 DescriptorIntPair(final GenericDescriptor descriptor, final int number) argument
1849 validateSymbolName(final GenericDescriptor descriptor) argument
[all...]
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_message.cc48 #include <google/protobuf/descriptor.pb.h>
86 const FieldDescriptor** SortFieldsByNumber(const Descriptor* descriptor) { argument
88 new const FieldDescriptor*[descriptor->field_count()];
89 for (int i = 0; i < descriptor->field_count(); i++) {
90 fields[i] = descriptor->field(i);
92 sort(fields, fields + descriptor->field_count(),
150 MessageGenerator::MessageGenerator(const Descriptor* descriptor, argument
152 : descriptor_(descriptor),
153 classname_(ClassName(descriptor, false)),
155 field_generators_(descriptor),
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.extensionlocation_1.2.0.v20100518.jar ... .equinox.p2.repository.artifact.IArtifactDescriptor descriptor public void addDescriptors (org.eclipse.equinox.p2 ...
/external/icu4c/i18n/
H A Dnfrule.cpp98 // (this also strips the rule descriptor, if any, off the
209 * This function parses the rule's rule descriptor (i.e., the base
212 * exponent according to the descriptor. (If the description doesn't
213 * include a rule descriptor, then this function sets everything to
216 * @return If "description" included a rule descriptor, this is
217 * "description" with the descriptor and any trailing whitespace
218 * stripped off. Otherwise; it's "descriptor" unchangd.
223 // the description consists of a rule descriptor and a rule body,
224 // separated by a colon. The rule descriptor is optional. If
230 // copy the descriptor ou
233 UnicodeString descriptor; local
[all...]
/external/protobuf/src/google/protobuf/
H A Dwire_format.cc42 #include <google/protobuf/descriptor.h>
44 #include <google/protobuf/descriptor.pb.h>
60 inline int GetEnumNumber(const EnumValueDescriptor* descriptor) { argument
61 return descriptor->number();
370 const Descriptor* descriptor = message->GetDescriptor(); local
388 if (descriptor != NULL) {
390 field = descriptor->FindFieldByNumber(field_number);
393 if (field == NULL && descriptor->IsExtensionNumber(field_number)) {
398 ->FindExtensionByNumber(descriptor, field_number);
405 descriptor
713 const Descriptor* descriptor = message.GetDescriptor(); local
882 const Descriptor* descriptor = message.GetDescriptor(); local
[all...]
H A Dwire_format.h43 #include <google/protobuf/descriptor.pb.h>
44 #include <google/protobuf/descriptor.h>
H A Dgenerated_message_reflection.h93 // descriptor: The descriptor for the message type being implemented.
106 // descriptor->field_count()/32, rounded up. This is a
122 GeneratedMessageReflection(const Descriptor* descriptor,
401 LIBPROTOBUF_EXPORT bool ParseNamedEnum(const EnumDescriptor* descriptor,
406 bool ParseNamedEnum(const EnumDescriptor* descriptor, argument
410 if (!ParseNamedEnum(descriptor, name, &tmp)) return false;
417 // descriptor.h.
418 LIBPROTOBUF_EXPORT const string& NameOfEnum(const EnumDescriptor* descriptor, int value);
H A Ddescriptor.cc42 #include <google/protobuf/descriptor.h>
44 #include <google/protobuf/descriptor.pb.h>
226 const Descriptor* descriptor; member in union:google::protobuf::__anon10078::Symbol::__anon10079
235 inline Symbol() : type(NULL_SYMBOL) { descriptor = NULL; }
251 CONSTRUCTOR(Descriptor , MESSAGE , descriptor )
263 case MESSAGE : return descriptor ->file();
347 // declaring Symbol in descriptor.h, which would drag all kinds of other
376 // pointers). All of the descriptor types are such objects.
843 // We do not actually construct the descriptor objects right away. We just
845 // the descriptor th
2145 get_is_placeholder(const Descriptor* descriptor) argument
2215 AddError( const string& element_name, const Message& descriptor, DescriptorPool::ErrorCollector::ErrorLocation location, const string& error) argument
2233 AddNotDefinedError( const string& element_name, const Message& descriptor, DescriptorPool::ErrorCollector::ErrorLocation location, const string& undefined_symbol) argument
2625 AllocateOptions( const typename DescriptorT::OptionsType& orig_options, DescriptorT* descriptor) argument
2633 AllocateOptions(const FileOptions& orig_options, FileDescriptor* descriptor) argument
2640 AllocateOptionsImpl( const string& name_scope, const string& element_name, const typename DescriptorT::OptionsType& orig_options, DescriptorT* descriptor) argument
3901 const Descriptor* descriptor = options_descriptor; local
[all...]
H A Dextension_set.h52 class Descriptor; // descriptor.h
53 class FieldDescriptor; // descriptor.h
54 class DescriptorPool; // descriptor.h
94 descriptor(NULL) {}
110 // The descriptor for this extension, if one exists and is known. May be
111 // NULL. Must not be NULL if the descriptor for the extension does not
112 // live in the same pool as the descriptor for the containing type.
113 const FieldDescriptor* descriptor; member in struct:google::protobuf::internal::ExtensionInfo
235 // |descriptor| may be NULL so long as it is known that the descriptor fo
426 const FieldDescriptor* descriptor; member in struct:google::protobuf::internal::ExtensionSet::Extension
488 SetString(int number, FieldType type, const string& value, const FieldDescriptor* descriptor) argument
497 AddString(int number, FieldType type, const string& value, const FieldDescriptor* descriptor) argument
[all...]
H A Dgenerated_message_reflection.cc37 #include <google/protobuf/descriptor.h>
38 #include <google/protobuf/descriptor.pb.h>
62 bool ParseNamedEnum(const EnumDescriptor* descriptor, argument
65 const EnumValueDescriptor* d = descriptor->FindValueByName(name);
71 const string& NameOfEnum(const EnumDescriptor* descriptor, int value) { argument
73 const EnumValueDescriptor* d = descriptor->FindValueByNumber(value);
84 const Descriptor* descriptor, const FieldDescriptor* field,
89 " Message type: " << descriptor->full_name() << "\n"
109 const Descriptor* descriptor, const FieldDescriptor* field,
115 " Message type: " << descriptor
83 ReportReflectionUsageError( const Descriptor* descriptor, const FieldDescriptor* field, const char* method, const char* description) argument
108 ReportReflectionUsageTypeError( const Descriptor* descriptor, const FieldDescriptor* field, const char* method, FieldDescriptor::CppType expected_type) argument
122 ReportReflectionUsageEnumTypeError( const Descriptor* descriptor, const FieldDescriptor* field, const char* method, const EnumValueDescriptor* value) argument
171 GeneratedMessageReflection( const Descriptor* descriptor, const Message* default_instance, const int offsets[], int has_bits_offset, int unknown_fields_offset, int extensions_offset, const DescriptorPool* descriptor_pool, MessageFactory* factory, int object_size) argument
[all...]
/external/opencv/cvaux/src/
H A Dcvtexture.cpp532 CV_IMPL double cvGetGLCMDescriptor( CvGLCM* GLCM, int step, int descriptor )
549 if( (unsigned)descriptor >= (unsigned)(GLCM->numDescriptors))
550 CV_ERROR( CV_StsOutOfRange, "descriptor is not in 0 .. GLCM->numDescriptors - 1" );
552 value = GLCM->descriptors[step][descriptor];
561 cvGetGLCMDescriptorStatistics( CvGLCM* GLCM, int descriptor, argument
583 if( (unsigned)descriptor >= (unsigned)(GLCM->numDescriptors) )
590 double temp = GLCM->descriptors[ matrixLoop ][ descriptor ];
/external/emma/core/java12/com/vladium/emma/report/
H A DMethodItem.java26 public MethodItem (final IItem parent, final int ID, final String name, final String descriptor, final int firstLine) argument
32 m_descriptor = descriptor;
/external/proguard/src/proguard/
H A DConfigurationWriter.java527 // Write out the field name and descriptor.
529 String descriptor = memberSpecification.descriptor;
531 writer.print(descriptor == null ? name == null ?
536 descriptor));
569 // Write out the method name and descriptor.
571 String descriptor = memberSpecification.descriptor;
573 writer.print(descriptor == null ? name == null ?
579 descriptor));
[all...]
/external/proguard/src/proguard/ant/
H A DMemberSpecificationElement.java110 String descriptor =
120 descriptor);
/external/protobuf/src/google/protobuf/compiler/
H A Dimporter.h44 #include <google/protobuf/descriptor.h>
120 const Message* descriptor,
H A Dparser_unittest.cc42 #include <google/protobuf/descriptor.pb.h>
83 const Message* descriptor,
87 source_locations_.Find(descriptor, location, &line, &column);
1169 // descriptor types) is parseable, and results in the same Descriptor
1208 protobuf_unittest::TestAllTypes::descriptor()->file();
1213 // all other descriptor types
1229 protobuf_unittest_import::ImportMessage::descriptor()->file();
1239 // So, sort the messages in the descriptor protos (including nested messages,
81 AddError(const string& filename, const string& element_name, const Message* descriptor, ErrorLocation location, const string& message) argument
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_extension.cc78 ExtensionGenerator::ExtensionGenerator(const FieldDescriptor* descriptor) argument
79 : descriptor_(descriptor) {
H A Djava_generator.cc40 #include <google/protobuf/descriptor.pb.h>
/external/valgrind/main/memcheck/tests/darwin/
H A Daio.stderr.exp2 Warning: invalid file descriptor -1 in syscall aio_read()
/external/webkit/Source/JavaScriptCore/runtime/
H A DRegExpObject.cpp87 bool RegExpObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
89 return getStaticValueDescriptor<RegExpObject, JSObject>(exec, ExecState::regExpTable(exec), this, propertyName, descriptor);
/external/webkit/Source/WebCore/bindings/js/
H A DJSPluginElementFunctions.cpp125 bool runtimeObjectCustomGetOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor, JSHTMLElement* element) argument
137 descriptor.setDescriptor(slot.getValue(exec, propertyName), DontEnum | DontDelete);
H A DJSDOMWindowCustom.cpp280 bool JSDOMWindow::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
294 descriptor.setDescriptor(jsBoolean(true), ReadOnly | DontDelete | DontEnum);
301 descriptor.setDescriptor(slot.getValue(exec, propertyName), ReadOnly | DontDelete | DontEnum);
304 descriptor.setUndefined();
312 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes());
324 descriptor.setDescriptor(slot.getValue(exec, propertyName), ReadOnly | DontDelete | DontEnum);
333 descriptor.setDescriptor(slot.getValue(exec, propertyName), ReadOnly | DontDelete | DontEnum);
344 descriptor.setDescriptor(slot.getValue(exec, propertyName), ReadOnly | DontDelete | DontEnum);
349 return Base::getOwnPropertyDescriptor(exec, propertyName, descriptor);
416 bool JSDOMWindow::defineOwnProperty(JSC::ExecState* exec, const JSC::Identifier& propertyName, JSC::PropertyDescriptor& descriptor, boo argument
[all...]
/external/libvpx/vpx_mem/memory_manager/
H A Dhmm_resize.c18 int U(resize)(U(descriptor) *desc, void *mem, U(size_aau) n)
/external/javassist/src/main/javassist/
H A DCtNewWrappedMethod.java93 desc = cparam.descriptor();
124 String descriptor)
127 if (!descriptor.equals(wrappedBody.getMethodInfo2().getDescriptor()))
123 checkSignature(CtMethod wrappedBody, String descriptor) argument
/external/proguard/src/proguard/evaluation/
H A DBasicInvocationUnit.java67 String descriptor = method.getDescriptor(clazz);
74 int parameterSize = ClassUtil.internalMethodParameterSize(descriptor, isStatic);
81 new InternalTypeEnumeration(descriptor);

Completed in 1536 milliseconds

1234567891011>>