/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
reactor_op_queue.hpp | 27 template <typename Descriptor> 32 typedef Descriptor key_type; 55 // operation for the given descriptor, in which case the reactor's event 57 bool enqueue_operation(Descriptor descriptor, reactor_op* op) 60 operations_.insert(value_type(descriptor, mapped_type())); 65 // Cancel all operations associated with the descriptor identified by the 66 // supplied iterator. Any operations pending for the descriptor will be 89 // Cancel all operations associated with the descriptor. Any operations 90 // pending for the descriptor will be cancelled. Returns true if an [all...] |
/external/proguard/src/proguard/ |
ClassMemberChecker.java | 101 String descriptor = memberSpecification.descriptor; local 104 descriptor != null && 105 !containsWildCards(descriptor)) 109 if (clazz.findField(memberName, descriptor) == null) 113 ClassUtil.externalFullFieldDescription(0, memberName, descriptor) + "' in class '" + 119 if (clazz.findMethod(memberName, descriptor) == null) 123 ClassUtil.externalFullMethodDescription(className, 0, memberName, descriptor) + "' in class '" +
|
/external/proguard/src/proguard/classfile/ |
LibraryMethod.java | 34 * descriptor string. This field is filled out by the <code>{@link 54 String descriptor) 56 super(u2accessFlags, name, descriptor);
|
/external/proguard/src/proguard/obfuscate/ |
MemberObfuscator.java | 32 * from the given descriptor map. 80 // Get the member's descriptor. 81 String descriptor = member.getDescriptor(clazz); local 86 // Trim the return argument from the descriptor if not. 88 descriptor = descriptor.substring(0, descriptor.indexOf(')')+1); 92 Map nameMap = retrieveNameMap(descriptorMap, descriptor); 121 * Gets the name map, based on the given map and a given descriptor. 124 * @param descriptor the class member descriptor [all...] |
/external/protobuf/objectivec/ |
GPBExtensionRegistry.h | 73 /// @param descriptor The descriptor to look for a registered extension on. 77 - (nullable GPBExtensionDescriptor *)extensionForDescriptor:(GPBDescriptor *)descriptor
|
/external/protobuf/python/google/protobuf/ |
message_factory.py | 57 def GetPrototype(self, descriptor): 58 """Builds a proto2 message class based on the passed in descriptor. 60 Passing a descriptor with a fully qualified name matching a previous 64 descriptor: The descriptor to build from. 67 A class describing the passed in descriptor. 69 if descriptor.full_name not in self._classes: 70 descriptor_name = descriptor.name 72 descriptor_name = descriptor.name.encode('ascii', 'ignore') 76 {'DESCRIPTOR': descriptor, '__module__': None} [all...] |
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_primitive_field.cc | 82 void SetPrimitiveVariables(const FieldDescriptor* descriptor, 85 SetCommonFieldVariables(descriptor, variables, options); 86 (*variables)["type"] = PrimitiveTypeName(descriptor->cpp_type()); 87 (*variables)["default"] = DefaultValue(descriptor); 88 (*variables)["tag"] = SimpleItoa(internal::WireFormat::MakeTag(descriptor)); 89 int fixed_size = FixedSize(descriptor->type()); 95 static_cast<FieldDescriptorProto_Type>(descriptor->type())); 96 (*variables)["full_name"] = descriptor->full_name(); 104 const FieldDescriptor* descriptor, const Options& options) 105 : FieldGenerator(options), descriptor_(descriptor) { [all...] |
/external/protobuf/src/google/protobuf/compiler/csharp/ |
csharp_reflection_class.cc | 35 #include <google/protobuf/descriptor.h> 36 #include <google/protobuf/descriptor.pb.h> 139 "#region Descriptor\n" 140 "/// <summary>File descriptor for $file_name$</summary>\n" 141 "public static pbr::FileDescriptor Descriptor {\n" 142 " get { return descriptor; }\n" 144 "private static pbr::FileDescriptor descriptor;\n" 171 "descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,\n"); 174 // descriptor.proto is special: we don't allow access to the generated code, but there's 175 // a separately-exposed property to get at the file descriptor, specifically to allow thi [all...] |
/external/protobuf/src/google/protobuf/compiler/java/ |
java_enum.h | 40 #include <google/protobuf/descriptor.h> 61 explicit EnumGenerator(const EnumDescriptor* descriptor,
|
java_enum_lite.h | 40 #include <google/protobuf/descriptor.h> 61 explicit EnumLiteGenerator(const EnumDescriptor* descriptor,
|
java_map_field_lite.cc | 46 const FieldDescriptor* KeyField(const FieldDescriptor* descriptor) { 47 GOOGLE_CHECK_EQ(FieldDescriptor::TYPE_MESSAGE, descriptor->type()); 48 const Descriptor* message = descriptor->message_type(); 53 const FieldDescriptor* ValueField(const FieldDescriptor* descriptor) { 54 GOOGLE_CHECK_EQ(FieldDescriptor::TYPE_MESSAGE, descriptor->type()); 55 const Descriptor* message = descriptor->message_type(); 78 void SetMessageVariables(const FieldDescriptor* descriptor, 84 SetCommonFieldVariables(descriptor, info, variables) [all...] |
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_enum.h | 42 #include <google/protobuf/descriptor.h> 57 explicit EnumGenerator(const EnumDescriptor* descriptor, const Params& params);
|
javamicro_primitive_field.cc | 178 bool IsFastStringHandling(const FieldDescriptor* descriptor, 181 && (GetJavaType(descriptor) == JAVATYPE_STRING)); 184 void SetPrimitiveVariables(const FieldDescriptor* descriptor, const Params params, 187 UnderscoresToCamelCase(descriptor); 189 UnderscoresToCapitalizedCamelCase(descriptor); 190 (*variables)["number"] = SimpleItoa(descriptor->number()); 191 (*variables)["type"] = PrimitiveTypeName(GetJavaType(descriptor)); 192 (*variables)["default"] = DefaultValue(params, descriptor); 193 (*variables)["boxed_type"] = BoxedPrimitiveTypeName(GetJavaType(descriptor)); 194 (*variables)["capitalized_type"] = GetCapitalizedType(descriptor); [all...] |
/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_enum.h | 42 #include <google/protobuf/descriptor.h> 57 explicit EnumGenerator(const EnumDescriptor* descriptor, const Params& params);
|
javanano_extension.h | 40 #include <google/protobuf/descriptor.pb.h> 56 explicit ExtensionGenerator(const FieldDescriptor* descriptor, const Params& params);
|
javanano_message_field.cc | 57 const FieldDescriptor* descriptor, map<string, string>* variables) { 59 RenameJavaKeywords(UnderscoresToCamelCase(descriptor)); 61 RenameJavaKeywords(UnderscoresToCapitalizedCamelCase(descriptor)); 62 (*variables)["number"] = SimpleItoa(descriptor->number()); 63 (*variables)["type"] = ClassName(params, descriptor->message_type()); 65 (descriptor->type() == FieldDescriptor::TYPE_GROUP) ? 67 (*variables)["message_name"] = descriptor->containing_type()->name(); 68 //(*variables)["message_type"] = descriptor->message_type()->name(); 69 (*variables)["tag"] = SimpleItoa(WireFormat::MakeTag(descriptor)); 77 MessageFieldGenerator(const FieldDescriptor* descriptor, const Params& params [all...] |
/external/protobuf/src/google/protobuf/compiler/objectivec/ |
objectivec_enum.h | 37 #include <google/protobuf/descriptor.h> 52 explicit EnumGenerator(const EnumDescriptor* descriptor);
|
objectivec_oneof.h | 37 #include <google/protobuf/descriptor.h> 52 explicit OneofGenerator(const OneofDescriptor* descriptor);
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
ShadowAudioEffect.java | 13 private static List<AudioEffect.Descriptor> DESCRIPTORS = new ArrayList<>(); 15 public static void addEffect(AudioEffect.Descriptor descriptor) { 16 DESCRIPTORS.add(descriptor); 20 protected static AudioEffect.Descriptor[] queryEffects() { 21 return DESCRIPTORS.toArray(new AudioEffect.Descriptor[DESCRIPTORS.size()]);
|
/art/runtime/jit/ |
debugger_interface.cc | 147 // Mark the descriptor as "locked", so native tools know the data is being modified. 148 static void ActionSeqlock(JITDescriptor& descriptor) { 149 DCHECK_EQ(descriptor.action_seqlock_.load() & 1, 0u) << "Already locked"; 150 descriptor.action_seqlock_.fetch_add(1, std::memory_order_relaxed); 155 // Mark the descriptor as "unlocked", so native tools know the data is safe to read. 156 static void ActionSequnlock(JITDescriptor& descriptor) { 157 DCHECK_EQ(descriptor.action_seqlock_.load() & 1, 1u) << "Already unlocked"; 160 descriptor.action_seqlock_.fetch_add(1, std::memory_order_relaxed); 164 JITDescriptor& descriptor, 178 uint64_t timestamp = std::max(descriptor.action_timestamp_ + 1, NanoTime()) [all...] |
/external/emma/core/java12/com/vladium/util/ |
Descriptors.java | 95 final String descriptor, 119 final char [] chars = descriptor.toCharArray (); 163 private static int typeDescriptorToJavaName (final char [] descriptor, int start, 168 for (dims = 0; descriptor [start] == '['; ++ dims, ++ start); 170 char c = descriptor [start ++]; 178 for (int s = start; descriptor [s] != ';'; ++ s) 180 if (descriptor [s] == '/') lastSlash = s; 183 for (start = lastSlash > 0 ? lastSlash + 1 : start; descriptor [start] != ';'; ++ start) 185 c = descriptor [start]; 194 for (; descriptor [start] != ';'; ++ start [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/ |
DecoderConfigDescriptor.java | 45 @Descriptor(tags = {0x04})
76 BaseDescriptor descriptor;
local 79 descriptor = ObjectDescriptorFactory.createFrom(objectTypeIndication, bb);
81 log.finer(descriptor + " - DecoderConfigDescr1 read: " + read + ", size: " + (descriptor != null ? descriptor.getSize() : null));
82 if (descriptor != null) {
83 final int size = descriptor.getSize();
90 if (descriptor instanceof DecoderSpecificInfo) {
91 decoderSpecificInfo = (DecoderSpecificInfo) descriptor;
[all...] |
/external/v8/src/inspector/ |
injected-script-source.js | 305 var descriptor = descriptors[i]; 306 if ("get" in descriptor) 307 descriptor.get = this._wrapObject(descriptor.get, objectGroupName); 308 if ("set" in descriptor) 309 descriptor.set = this._wrapObject(descriptor.set, objectGroupName); 310 if ("value" in descriptor) 311 descriptor.value = this._wrapObject(descriptor.value, objectGroupName, false, generatePreview) [all...] |
/external/protobuf/src/google/protobuf/ |
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...] |
/frameworks/av/media/libstagefright/mpeg2ts/ |
CasManager.cpp | 36 ProgramCasManager(unsigned programNumber, const CADescriptor &descriptor); 39 bool addStream(unsigned elementaryPID, const CADescriptor &descriptor); 51 CasSession(const CADescriptor &descriptor) : 52 mCADescriptor(descriptor) {} 71 unsigned programNumber, const CADescriptor &descriptor) : 74 mProgramCas(descriptor) {} 82 unsigned elementaryPID, const CADescriptor &descriptor) { 88 mProgramNumber, elementaryPID, descriptor.mSystemID); 89 mStreamPidToCasMap.add(elementaryPID, CasSession(descriptor)); 144 const CADescriptor &descriptor = session->mCADescriptor local [all...] |