/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_message_field.h | 49 explicit MessageFieldGenerator(const FieldDescriptor* descriptor, const Params& params); 70 explicit RepeatedMessageFieldGenerator(const FieldDescriptor* descriptor,
|
javamicro_primitive_field.h | 49 explicit PrimitiveFieldGenerator(const FieldDescriptor* descriptor, const Params ¶ms); 70 explicit RepeatedPrimitiveFieldGenerator(const FieldDescriptor* descriptor, const Params& params);
|
/external/protobuf/src/google/protobuf/util/internal/ |
type_info_test_helper.h | 41 #include <google/protobuf/descriptor.h> 67 void ResetTypeInfo(const vector<const Descriptor*>& descriptors); 70 void ResetTypeInfo(const Descriptor* descriptor); 71 void ResetTypeInfo(const Descriptor* descriptor1, 72 const Descriptor* descriptor2);
|
/external/selinux/libselinux/src/ |
selinuxswig_ruby.i | 18 %append_output(SWIG_NewPointerObj(*$1, $descriptor(security_id_t), 0));
|
/external/tensorflow/tensorflow/core/platform/ |
protobuf_internal.h | 56 CHECK_EQ(type_name, message->descriptor()->full_name()); 59 "Expected Any type_url for: ", message->descriptor()->full_name(),
|
/external/minigbm/cros_gralloc/gralloc0/ |
gralloc0.cc | 99 struct cros_gralloc_buffer_descriptor descriptor; local 102 descriptor.width = w; 103 descriptor.height = h; 104 descriptor.droid_format = format; 105 descriptor.producer_usage = descriptor.consumer_usage = usage; 106 descriptor.drm_format = cros_gralloc_convert_format(format); 107 descriptor.use_flags = gralloc0_convert_usage(usage); 109 supported = mod->driver->is_supported(&descriptor); 111 descriptor.use_flags &= ~BO_USE_SCANOUT [all...] |
/external/proguard/src/proguard/classfile/editor/ |
ConstantPoolEditor.java | 204 * descriptor. 209 String descriptor, 213 addNameAndTypeConstant(name, descriptor), 306 * class name, field name, and descriptor. 311 String descriptor, 316 addNameAndTypeConstant(name, descriptor), 324 * class name, field name, and descriptor. 341 * class constant pool entry index, field name, and descriptor. 346 String descriptor, 351 addNameAndTypeConstant(name, descriptor), [all...] |
/external/u-boot/cmd/ |
usb.c | 152 uint packet_size = dev->descriptor.bMaxPacketSize0; 154 if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) { 157 (dev->descriptor.bcdUSB>>8) & 0xff, 158 dev->descriptor.bcdUSB & 0xff); 164 if (dev->descriptor.bDeviceClass) { 166 usb_display_class_sub(dev->descriptor.bDeviceClass, 167 dev->descriptor.bDeviceSubClass, 168 dev->descriptor.bDeviceProtocol); 175 if (dev->descriptor.bcdUSB >= cpu_to_le16(0x0300)) 178 packet_size, dev->descriptor.bNumConfigurations) [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
CstType.java | 89 * {@code null-ok;} the type descriptor corresponding to this instance, if 92 private CstUtf8 descriptor; field in class:CstType 163 this.descriptor = null; 230 * Gets the type descriptor for this instance. 232 * @return {@code non-null;} the descriptor 235 if (descriptor == null) { 236 descriptor = new CstUtf8(type.getDescriptor()); 239 return descriptor;
|
/external/libchrome/ipc/ |
ipc_send_fds_test.cc | 60 base::FileDescriptor descriptor; variable 62 &message, &iter, &descriptor)) { 63 HandleFD(descriptor.fd); 130 base::FileDescriptor descriptor(fd, true); 131 IPC::ParamTraits<base::FileDescriptor>::Write(message, descriptor); 211 // See if we can receive a file descriptor.
|
/external/protobuf/python/google/protobuf/internal/ |
wire_format.py | 36 from google.protobuf import descriptor 252 descriptor.FieldDescriptor.TYPE_STRING, 253 descriptor.FieldDescriptor.TYPE_GROUP, 254 descriptor.FieldDescriptor.TYPE_MESSAGE, 255 descriptor.FieldDescriptor.TYPE_BYTES
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_extension.cc | 40 #include <google/protobuf/descriptor.pb.h> 52 string ExtendeeClassName(const FieldDescriptor* descriptor) { 53 const Descriptor* extendee = descriptor->containing_type(); 59 ExtensionGenerator::ExtensionGenerator(const FieldDescriptor* descriptor, 61 : descriptor_(descriptor),
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_field.h | 46 #include <google/protobuf/descriptor.h> 129 // Convenience class which constructs FieldGenerators for a Descriptor. 133 explicit FieldGeneratorMap(const Descriptor* descriptor, 140 const Descriptor* descriptor_; 158 FieldGeneratorMap(const Descriptor* descriptor, 179 void SetCommonFieldVariables(const FieldDescriptor* descriptor, 184 void SetCommonOneofVariables(const FieldDescriptor* descriptor,
|
java_message_field.cc | 54 void SetMessageVariables(const FieldDescriptor* descriptor, 60 SetCommonFieldVariables(descriptor, info, variables); 63 name_resolver->GetImmutableClassName(descriptor->message_type()); 65 name_resolver->GetMutableClassName(descriptor->message_type()); 67 (GetType(descriptor) == FieldDescriptor::TYPE_GROUP) ? 71 (*variables)["deprecation"] = descriptor->options().deprecated() 75 if (SupportFieldPresence(descriptor->file())) { 121 ImmutableMessageFieldGenerator(const FieldDescriptor* descriptor, 125 : descriptor_(descriptor), messageBitIndex_(messageBitIndex), 128 SetMessageVariables(descriptor, messageBitIndex, builderBitIndex [all...] |
/external/protobuf/src/google/protobuf/io/ |
printer.h | 109 // various descriptors. In the above example, if person_ is a descriptor that 111 // a source path pointing to that descriptor with: 118 // source file that defined the person_ descriptor identifying Bob. 143 // the person_ descriptor. 162 // call_ descriptor. 180 // described by descriptor. 182 void Annotate(const char* varname, const SomeDescriptor* descriptor) { 183 Annotate(varname, varname, descriptor); 187 // the last call to Print to the object described by descriptor. The range 192 const SomeDescriptor* descriptor) { [all...] |
printer_unittest.cc | 39 #include <google/protobuf/descriptor.pb.h> 193 // The mock file in which this descriptor was defined. 300 MockDescriptor descriptor("path", path); 301 printer.Annotate("foo", "bar", &descriptor); 325 MockDescriptor descriptor("path", path); 326 printer.Annotate("baz", "bam", &descriptor); 349 MockDescriptor descriptor("path", path); 350 printer.Annotate("bar", "bar", &descriptor); 437 MockDescriptor descriptor("path", path); 438 EXPECT_DEBUG_DEATH(printer.Annotate("foo", "foo", &descriptor), "multiple") [all...] |
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/ |
ApiProvider.java | 58 public boolean apply(MethodDescriptor descriptor) { 59 Method method = descriptor.getMethod(); 110 for (MethodDescriptor descriptor : mMethodDescriptors) { 111 String name = descriptor.getMethod().getName(); 115 String description = descriptor.getMethod().getAnnotation(Rpc.class).description();
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/ |
BleClientService.java | 230 // Literal for registration permission of Descriptor 557 BluetoothGattDescriptor descriptor = getDescriptor(uid); local 558 if (descriptor != null) { 559 descriptor.setValue(writeValue.getBytes()); 560 mBluetoothGatt.writeDescriptor(descriptor); 565 BluetoothGattDescriptor descriptor = getDescriptor(uuid); local 566 if (descriptor != null) { 567 mBluetoothGatt.readDescriptor(descriptor); 572 BluetoothGattDescriptor descriptor = getDescriptor(cuid, duid); local 573 if (descriptor != null) 580 BluetoothGattDescriptor descriptor = getDescriptor(cuid, duid); local 605 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(UPDATE_DESCRIPTOR_UUID); local 844 BluetoothGattDescriptor descriptor = null; local 857 BluetoothGattDescriptor descriptor = null; local [all...] |
/external/proguard/src/proguard/classfile/ |
ProgramClass.java | 324 public Field findField(String name, String descriptor) 330 (descriptor == null || field.getDescriptor(this).equals(descriptor))) 340 public Method findMethod(String name, String descriptor) 346 (descriptor == null || method.getDescriptor(this).equals(descriptor))) 502 public void fieldAccept(String name, String descriptor, MemberVisitor memberVisitor) 504 Field field = findField(name, descriptor); 521 public void methodAccept(String name, String descriptor, MemberVisitor memberVisitor) 523 Method method = findMethod(name, descriptor); [all...] |
/external/desugar/java/com/google/devtools/build/android/desugar/ |
BytecodeTypeInference.java | 428 String descriptor = convertToDescriptor(type); local 431 pushDescriptor(descriptor); // This should be UNINITIALIZED(label). Okay for type inference. 435 pushDescriptor('[' + descriptor); 439 pushDescriptor(descriptor); 776 * the declaring class and the method descriptor. 955 private static InferredType create(String descriptor, @Nullable Label uninitializationLabel) { 956 if (UNINITIALIZED_PREFIX.equals(descriptor)) { 963 descriptor); 964 char firstChar = descriptor.charAt(0); 968 descriptor, /*uninitializationLabel=*/ null) 1004 abstract String descriptor(); method in class:BytecodeTypeInference.InferredType 1019 String descriptor = descriptor(); local 1025 String descriptor = descriptor(); local 1044 String descriptor = descriptor(); local [all...] |
/external/protobuf/src/google/protobuf/compiler/objectivec/ |
objectivec_helpers.cc | 49 #include <google/protobuf/descriptor.pb.h> 193 "clear", "data", "delimitedData", "descriptor", "extensionRegistry", 335 string ClassNameWorker(const Descriptor* descriptor) { 337 if (descriptor->containing_type() != NULL) { 338 name = ClassNameWorker(descriptor->containing_type()); 341 return name + descriptor->name(); 344 string ClassNameWorker(const EnumDescriptor* descriptor) { 346 if (descriptor->containing_type() != NULL) { 347 name = ClassNameWorker(descriptor->containing_type()) [all...] |
/art/runtime/ |
class_table.cc | 60 mirror::Class* ClassTable::UpdateClass(const char* descriptor, mirror::Class* klass, size_t hash) { 63 DescriptorHashPair pair(descriptor, hash); 68 LOG(FATAL) << "Updating class found in frozen table " << descriptor; 71 LOG(FATAL) << "Updating class not found " << descriptor; 74 CHECK_NE(existing, klass) << descriptor; 75 CHECK(!existing->IsResolved()) << descriptor; 76 CHECK_EQ(klass->GetStatus(), ClassStatus::kResolving) << descriptor; 77 CHECK(!klass->IsTemp()) << descriptor; 79 // Update the element in the hash set with the new class. This is safe to do since the descriptor 124 mirror::Class* ClassTable::Lookup(const char* descriptor, size_t hash) [all...] |
/device/linaro/hikey/gralloc960/ |
mali_gralloc_public_interface.cpp | 60 static int32_t mali_gralloc_destroy_descriptor(gralloc1_device_t *device, gralloc1_buffer_descriptor_t descriptor) 63 ret = mali_gralloc_destroy_descriptor_internal(descriptor); 68 static int32_t mali_gralloc_set_consumer_usage(gralloc1_device_t *device, gralloc1_buffer_descriptor_t descriptor, 72 ret = mali_gralloc_set_consumerusage_internal(descriptor, usage); 77 static int32_t mali_gralloc_set_dimensions(gralloc1_device_t *device, gralloc1_buffer_descriptor_t descriptor, 81 ret = mali_gralloc_set_dimensions_internal(descriptor, width, height); 86 static int32_t mali_gralloc_set_format(gralloc1_device_t *device, gralloc1_buffer_descriptor_t descriptor, 90 ret = mali_gralloc_set_format_internal(descriptor, format); 95 static int32_t mali_gralloc_set_producer_usage(gralloc1_device_t *device, gralloc1_buffer_descriptor_t descriptor, 99 ret = mali_gralloc_set_producerusage_internal(descriptor, usage) [all...] |
/external/v8/src/compiler/ |
linkage.cc | 141 // If we are compiling a JS function, use a JS call descriptor, 343 Zone* zone, const CallInterfaceDescriptor& descriptor, 346 const int register_parameter_count = descriptor.GetRegisterParameterCount(); 349 const int context_count = descriptor.HasContextParameter() ? 1 : 0; 353 size_t return_count = descriptor.GetReturnCount(); 358 locations.AddReturn(regloc(kReturnRegister0, descriptor.GetReturnType(0))); 361 locations.AddReturn(regloc(kReturnRegister1, descriptor.GetReturnType(1))); 364 locations.AddReturn(regloc(kReturnRegister2, descriptor.GetReturnType(2))); 371 Register reg = descriptor.GetRegisterParameter(i); 372 MachineType type = descriptor.GetParameterType(i) [all...] |
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
RubyDescriptorPool.java | 90 IRubyObject descriptor = this.symtab.get(name); local 91 if (descriptor == null) { 94 return descriptor; 137 for (Descriptors.Descriptor descriptor : fileDescriptor.getMessageTypes()) { 139 symtab.get(runtime.newString(Utils.unescapeIdentifier(descriptor.getName())))); 140 for (Descriptors.FieldDescriptor fieldDescriptor : descriptor.getFields()) { 157 rubyDescriptor.setDescriptor(descriptor);
|