Searched refs:descriptor (Results 226 - 250 of 392) sorted by relevance

1234567891011>>

/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
H A Dparser.cc43 #include <google/protobuf/descriptor.h>
44 #include <google/protobuf/descriptor.pb.h>
254 const Message* descriptor,
258 source_location_table_->Add(descriptor, location, line, column);
263 const Message* descriptor,
265 RecordLocation(descriptor, location,
1101 const Message* descriptor,
1105 FindOrNull(location_map_, make_pair(descriptor, location));
1118 const Message* descriptor,
1121 location_map_[make_pair(descriptor, locatio
253 RecordLocation( const Message* descriptor, DescriptorPool::ErrorCollector::ErrorLocation location, int line, int column) argument
262 RecordLocation( const Message* descriptor, DescriptorPool::ErrorCollector::ErrorLocation location) argument
1100 Find( const Message* descriptor, DescriptorPool::ErrorCollector::ErrorLocation location, int* line, int* column) const argument
1117 Add( const Message* descriptor, DescriptorPool::ErrorCollector::ErrorLocation location, int line, int column) argument
[all...]
/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>
H A Djava_service.cc38 #include <google/protobuf/descriptor.pb.h>
46 ServiceGenerator::ServiceGenerator(const ServiceDescriptor* descriptor) argument
47 : descriptor_(descriptor) {}
176 " \"Service.callMethod() given method descriptor for wrong \" +\n"
221 " \"Service.callBlockingMethod() given method descriptor for \" +\n"
266 " \"descriptor for wrong service type.\");\n"
/external/protobuf/src/google/protobuf/
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::__anon10923::Symbol::__anon10924
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/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/kernel-headers/original/sound/
H A Dcompress_offload.h57 * struct snd_compr_tstamp: timestamp descriptor
77 * struct snd_compr_avail: avail descriptor
92 * struct snd_compr_caps: caps descriptor
117 * @descriptor: array of codec capability descriptor
122 struct snd_codec_desc descriptor[MAX_NUM_CODEC_DESCRIPTORS]; member in struct:snd_compr_codec_caps
/external/libvpx/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);
/external/chromium/chrome/browser/chromeos/cros/
H A Dinput_method_library.cc127 const InputMethodDescriptor* descriptor = local
130 if (descriptor) {
131 result->push_back(*descriptor);
137 // returns the fallback input method descriptor.
153 // as this function is guaranteed to return at least one descriptor.
561 // descriptor. This function updates states like current_input_method_
603 const chromeos::InputMethodDescriptor* descriptor = local
606 if (descriptor) {
607 ChangeCurrentInputMethod(*descriptor);
/external/chromium/chrome/browser/chromeos/input_method/
H A Dinput_method_util.h66 // Gets the language code from the given input method descriptor. This
70 const InputMethodDescriptor& descriptor);
106 // Converts an input method ID to an input method descriptor. Returns NULL
152 // the given language code (UI language), and the descriptor of the
185 // Returns the fallback input method descriptor (the very basic US
/external/icu4c/i18n/
H A Dnfrule.h78 void parseRuleDescriptor(UnicodeString& descriptor, UErrorCode& status);
/external/javassist/src/main/javassist/compiler/
H A DJavac.java283 gen.recordVariable(va.descriptor(i), va.variableName(i),
312 gen.recordVariable(va.descriptor(i), va.variableName(i),
516 * @param descriptor the method descriptor.
519 String methodname, String descriptor)
526 final String desc = descriptor;
518 recordSpecialProceed(String target, String classname, String methodname, String descriptor) argument

Completed in 522 milliseconds

1234567891011>>