/external/perfetto/tools/ftrace_proto_gen/ |
proto_gen_utils.h | 26 #include <google/protobuf/descriptor.h> 73 Proto(std::string evt_name, const google::protobuf::Descriptor& desc);
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
IDescriptor.cs | 36 /// Interface implemented by all descriptor types. 51 /// Returns the descriptor for the .proto file that this entity is part of.
|
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
Utils.java | 210 * Replace invalid "." in descriptor with __DOT__ 219 * Replace __DOT__ in descriptor name with "." 275 IRubyObject descriptor = klass.getInstanceVariable(DESCRIPTOR_INSTANCE_VAR); local 276 if (descriptor.isNil()) { 277 throw runtime.newArgumentError("Type class has no descriptor. Please pass a " + 281 if (! (descriptor instanceof RubyDescriptor)) { 282 throw runtime.newArgumentError("Descriptor has an incorrect type"); 285 if (! (descriptor instanceof RubyEnumDescriptor)) { 286 throw runtime.newArgumentError("Descriptor has an incorrect type"); 293 public static String DESCRIPTOR_INSTANCE_VAR = "@descriptor"; [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
importer.cc | 178 const Message* descriptor, 184 owner_->source_locations_.Find(descriptor, location, &line, &column); 191 const Message* descriptor, 197 owner_->source_locations_.Find(descriptor, location, &line, &column);
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_service.cc | 49 ServiceGenerator::ServiceGenerator(const ServiceDescriptor* descriptor) 50 : descriptor_(descriptor) {} 56 const ServiceDescriptor* descriptor, Context* context) 57 : ServiceGenerator(descriptor), context_(context), 197 " \"Service.callMethod() given method descriptor for wrong \" +\n" 245 " \"Service.callBlockingMethod() given method descriptor for \" +\n" 292 " \"descriptor for wrong service type.\");\n"
|
java_message.cc | 57 #include <google/protobuf/descriptor.pb.h> 71 bool GenerateHasBits(const Descriptor* descriptor) { 72 return SupportFieldPresence(descriptor->file()) || 73 HasRepeatedFields(descriptor); 76 string MapValueImmutableClassdName(const Descriptor* descriptor, 78 const FieldDescriptor* value_field = descriptor->FindFieldByName("value"); 86 MessageGenerator::MessageGenerator(const Descriptor* descriptor) [all...] |
/external/protobuf/src/google/protobuf/ |
drop_unknown_fields_test.cc | 76 factory.GetPrototype(Foo::descriptor())->New());
|
extension_set.h | 57 class Descriptor; // descriptor.h 58 class FieldDescriptor; // descriptor.h 59 class DescriptorPool; // descriptor.h 96 descriptor(NULL) {} 112 // The descriptor for this extension, if one exists and is known. May be 113 // NULL. Must not be NULL if the descriptor for the extension does not 114 // live in the same pool as the descriptor for the containing type. 115 const FieldDescriptor* descriptor; member in struct:google::protobuf::internal::ExtensionInfo 187 void AppendToList(const Descriptor* containing_type 519 const FieldDescriptor* descriptor; member in struct:google::protobuf::internal::ExtensionSet::Extension [all...] |
empty.pb.cc | 14 #include <google/protobuf/descriptor.h> 25 const ::google::protobuf::Descriptor* Empty_descriptor_ = NULL; 172 const ::google::protobuf::Descriptor* Empty::descriptor() { function in class:google::protobuf::Empty 304 metadata.descriptor = Empty_descriptor_;
|
/external/skia/src/core/ |
SkRemoteGlyphCacheImpl.h | 20 SkGlyphCacheState(const SkDescriptor& descriptor,
|
/external/u-boot/drivers/usb/host/ |
ehci-hcd.c | 40 static struct descriptor { struct 46 } __attribute__ ((packed)) descriptor = { variable in typeref:struct:descriptor 49 0x29, /* bDescriptorType: hub descriptor */ 329 * described by a transfer descriptor (the qTD). The qTDs form a linked 700 srcptr = &descriptor.device; 701 srclen = descriptor.device.bLength; 705 srcptr = &descriptor.config; 706 srclen = descriptor.config.bLength + 707 descriptor.interface.bLength + 708 descriptor.endpoint.bLength [all...] |
/frameworks/av/media/libaudiohal/impl/ |
EffectHalHidl.h | 55 // Returns the effect descriptor. 69 const EffectDescriptor& descriptor, effect_descriptor_t* halDescriptor);
|
/art/runtime/ |
class_linker_test.cc | 65 void AssertNonExistentClass(const std::string& descriptor) 68 EXPECT_TRUE(class_linker_->FindSystemClass(self, descriptor.c_str()) == nullptr); 78 void AssertPrimitiveClass(const std::string& descriptor) 81 AssertPrimitiveClass(descriptor, class_linker_->FindSystemClass(self, descriptor.c_str())); 84 void AssertPrimitiveClass(const std::string& descriptor, ObjPtr<mirror::Class> primitive) 91 ASSERT_STREQ(descriptor.c_str(), primitive->GetDescriptor(&temp)); 265 void AssertClass(const std::string& descriptor, Handle<mirror::Class> klass) 268 EXPECT_STREQ(descriptor.c_str(), klass->GetDescriptor(&temp)); 269 if (descriptor == "Ljava/lang/Object;") 434 const char* descriptor = dex.GetClassDescriptor(class_def); local 440 const char* descriptor = dex.GetTypeDescriptor(type_id); local 906 std::string descriptor; local 1352 const char* descriptor = "LErroneous;"; local [all...] |
class_table.h | 101 // Data contains the class pointer GcRoot as well as the low bits of the descriptor hash. 112 // Same class loader and descriptor. 115 // Same descriptor. 133 // Hash set that hashes class descriptor, and compares descriptors and class loaders. Results 134 // should be compared for a matching class descriptor and class loader. 175 mirror::Class* UpdateClass(const char* descriptor, mirror::Class* new_klass, size_t hash) 202 // Return the first class that matches the descriptor. Returns null if there are none. 203 mirror::Class* Lookup(const char* descriptor, size_t hash) 207 // Return the first class that matches the descriptor of klass. Returns null if there are none. 213 // with the same descriptor is already in the table, return the existing entry [all...] |
/developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/ |
BluetoothLeService.java | 301 BluetoothGattDescriptor descriptor = characteristic.getDescriptor( local 303 descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE); 304 mBluetoothGatt.writeDescriptor(descriptor);
|
/developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/ |
BluetoothLeService.java | 301 BluetoothGattDescriptor descriptor = characteristic.getDescriptor( local 303 descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE); 304 mBluetoothGatt.writeDescriptor(descriptor);
|
/development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/ |
BluetoothLeService.java | 301 BluetoothGattDescriptor descriptor = characteristic.getDescriptor( local 303 descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE); 304 mBluetoothGatt.writeDescriptor(descriptor);
|
/device/linaro/bootloader/edk2/DuetPkg/BootSector/ |
efi32.S | 65 addl $8, %edi # move up to next descriptor
69 ## at this point edi contains the offset of the descriptor for INT 20
78 # add edi, 8 ; move up to next descriptor
[all...] |
efi64.S | 80 addl $16, %edi # move up to next descriptor
84 ## at this point edi contains the offset of the descriptor for INT 20
94 # add edi, 16 ; move up to next descriptor
[all...] |
/external/freetype/builds/amiga/src/base/ |
ftsystem.c | 242 #define STREAM_FILE( stream ) ( (struct SysFile *)stream->descriptor.pointer ) 265 stream->descriptor.pointer = NULL; 436 stream->descriptor.pointer = (void *)sysfile;
|
/external/google-breakpad/src/common/ |
stabs_reader.cc | 63 .Read(2, false, &entry_.descriptor) 189 line.number = (uint16_t) iterator_->descriptor; 255 uint16_t line_number = iterator_->descriptor;
|
/external/grpc-grpc-java/testing-proto/src/test/java/io/grpc/testing/protobuf/ |
SimpleServiceTest.java | 88 MethodDescriptor<SimpleRequest, SimpleResponse> descriptor, RpcMethod annotation) { 89 assertEquals(descriptor.getFullMethodName(), annotation.fullMethodName()); 90 assertEquals(descriptor.getType(), annotation.methodType());
|
/external/proguard/src/proguard/evaluation/ |
BasicInvocationUnit.java | 67 String descriptor = method.getDescriptor(clazz); local 74 int parameterSize = ClassUtil.internalMethodParameterSize(descriptor, isStatic); 81 new InternalTypeEnumeration(descriptor);
|
/external/proguard/src/proguard/optimize/ |
TailRecursionSimplifier.java | 279 String descriptor = method.getDescriptor(clazz); local 285 int parameterSize = ClassUtil.internalMethodParameterSize(descriptor); 292 new InternalTypeEnumeration(descriptor);
|
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
FieldMaskTree.java | 33 import com.google.protobuf.Descriptors.Descriptor; 216 Descriptor descriptor = source.getDescriptorForType(); local 218 FieldDescriptor field = descriptor.findFieldByName(entry.getKey()); 224 + descriptor.getFullName());
|