/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/ |
DWARFDebugPubTable.cpp | 60 GDBIndexEntryLinkageString(E.Descriptor.Linkage); 61 StringRef EntryKind = dwarf::GDBIndexEntryKindString(E.Descriptor.Kind);
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
ExtensionRegistry.java | 33 import com.google.protobuf.Descriptors.Descriptor; 114 /** A (Descriptor, Message) pair, returned by lookup methods. */ 116 /** The extension's descriptor. */ 117 public final FieldDescriptor descriptor; field in class:ExtensionRegistry.ExtensionInfo 125 private ExtensionInfo(final FieldDescriptor descriptor) { 126 this.descriptor = descriptor; 129 private ExtensionInfo(final FieldDescriptor descriptor, 131 this.descriptor = descriptor; 371 private final Descriptor descriptor; field in class:ExtensionRegistry.DescriptorIntPair [all...] |
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
FieldMaskUtil.java | 36 import com.google.protobuf.Descriptors.Descriptor; 135 Descriptor descriptor = Internal.getDefaultInstance(type).getDescriptorForType(); local 139 FieldDescriptor field = descriptor.findFieldByNumber(fieldNumber); 152 Descriptor descriptor = local 155 return isValid(descriptor, fieldMask); 161 public static boolean isValid(Descriptor descriptor, FieldMask fieldMask) { 163 if (!isValid(descriptor, path)) 174 Descriptor descriptor = local [all...] |
/external/v8/src/builtins/ |
builtins-function-gen.cc | 10 #include "src/objects/descriptor-array.h" 18 // TODO(ishell): use constants from Descriptor once the JSFunction linkage 20 Node* argc = Parameter(Descriptor::kJSActualArgumentsCount); 21 Node* context = Parameter(Descriptor::kContext); 22 Node* new_target = Parameter(Descriptor::kJSNewTarget); 47 Comment("Check descriptor array length"); 49 // Minimum descriptor array length required for fast path. 188 // We are not using Parameter(Descriptor::kJSTarget) and loading the value 199 Node* context = Parameter(Descriptor::kContext); 200 Node* f = Parameter(Descriptor::kReceiver) [all...] |
builtins-collections-gen.cc | 752 TNode<Object> new_target = CAST(Parameter(Descriptor::kJSNewTarget)); 754 ChangeInt32ToIntPtr(Parameter(Descriptor::kJSActualArgumentsCount)); 755 TNode<Context> context = CAST(Parameter(Descriptor::kContext)); 762 TNode<Object> new_target = CAST(Parameter(Descriptor::kJSNewTarget)); 764 ChangeInt32ToIntPtr(Parameter(Descriptor::kJSActualArgumentsCount)); 765 TNode<Context> context = CAST(Parameter(Descriptor::kContext)); [all...] |
builtins-typed-array-gen.cc | 106 TNode<JSTypedArray> holder = CAST(Parameter(Descriptor::kHolder)); 107 TNode<Smi> length = CAST(Parameter(Descriptor::kLength)); 108 TNode<JSArrayBuffer> buffer = CAST(Parameter(Descriptor::kBuffer)); 109 TNode<Smi> element_size = CAST(Parameter(Descriptor::kElementSize)); 110 TNode<Number> byte_offset = CAST(Parameter(Descriptor::kByteOffset)); 123 TNode<JSTypedArray> holder = CAST(Parameter(Descriptor::kHolder)); 124 TNode<Smi> length = CAST(Parameter(Descriptor::kLength)); 125 TNode<Smi> element_size = CAST(Parameter(Descriptor::kElementSize)); 126 Node* initialize = Parameter(Descriptor::kInitialize); 128 CAST(Parameter(Descriptor::kBufferConstructor)) [all...] |
/external/autotest/client/cros/cellular/mbim_compliance/ |
usb_descriptors_unittest.py | 14 class TestDescriptor(Descriptor): 15 """ Descriptor for unit testing. """ 24 """ Test cases for verifying Descriptor classes and DescriptorParser. """ 29 Verifies that an excepion is raised when constructing a Descriptor 35 class DescriptorFieldsNotDefined(Descriptor): 36 """ Descriptor without _FIELDS attribute. """ 42 Verifies that it is OK to construct a Descriptor subclass that does not 45 class DescriptorTypeNotDefined(Descriptor): 46 """ Descriptor without DESCRIPTOR_TYPE attribute. """ 50 descriptor = DescriptorTypeNotDefined(descriptor_data [all...] |
/external/perfetto/src/protozero/protoc_plugin/ |
protozero_generator.cc | 24 #include "google/protobuf/descriptor.h" 31 using google::protobuf::Descriptor; // Message descriptor. 67 bool operator()(const Descriptor* lhs, const Descriptor* rhs) const { 96 for (const Descriptor* message : messages_) 121 // Get full name (including outer descriptors) of proto descriptor. 123 inline std::string GetDescriptorName(const T* descriptor) { 125 return StripPrefixString(descriptor->full_name(), package_ + "."); 127 return descriptor->full_name() [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/ |
PciIo.c | [all...] |
/external/protobuf/csharp/src/AddressBook/ |
Addressbook.cs | 16 #region Descriptor 17 /// <summary>File descriptor for addressbook.proto</summary> 18 public static pbr::FileDescriptor Descriptor { 19 get { return descriptor; } 21 private static pbr::FileDescriptor descriptor; field in class:Google.Protobuf.Examples.AddressBook.AddressbookReflection 35 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 54 public static pbr::MessageDescriptor Descriptor { 55 get { return global::Google.Protobuf.Examples.AddressBook.AddressbookReflection.Descriptor.MessageTypes[0]; } 58 pbr::MessageDescriptor pb::IMessage.Descriptor { 59 get { return Descriptor; } [all...] |
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_message.cc | 44 #include <google/protobuf/descriptor.pb.h> 71 // Sort the fields of the given Descriptor by number into a new[]'d array 73 const FieldDescriptor** SortFieldsByNumber(const Descriptor* descriptor) { 75 new const FieldDescriptor*[descriptor->field_count()]; 76 for (int i = 0; i < descriptor->field_count(); i++) { 77 fields[i] = descriptor->field(i); 79 sort(fields, fields + descriptor->field_count(), 87 string UniqueFileScopeIdentifier(const Descriptor* descriptor) { [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Gcd/ |
Gcd.c | 222 Validate resource descriptor HOB's attributes.
227 @param Attributes Resource descriptor HOB attributes.
403 Internal function. Inserts a new descriptor into a sorted list
696 @retval EFI_UNSUPPORTED Could not find the proper descriptor on this
1016 @retval EFI_NOT_FOUND No descriptor for the desired space exists.
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Application/MemoryProfileInfo/ |
MemoryProfileInfo.c | 529 Dump memory profile descriptor information.
531 @param[in] DescriptorIndex Memory profile descriptor index.
532 @param[in] Descriptor Pointer to memory profile descriptor.
534 @return Pointer to next memory profile descriptor.
540 IN MEMORY_PROFILE_DESCRIPTOR *Descriptor
543 if (Descriptor->Header.Signature != MEMORY_PROFILE_DESCRIPTOR_SIGNATURE) {
547 Print (L" Signature - 0x%08x\n", Descriptor->Header.Signature);
548 Print (L" Length - 0x%04x\n", Descriptor->Header.Length);
549 Print (L" Revision - 0x%04x\n", Descriptor->Header.Revision); [all...] |
/external/llvm/lib/Transforms/Utils/ |
SymbolRewriter.cpp | 26 // Currently, the following descriptor types are supported: 44 // New rewrite descriptors can be created. Addding a new rewrite descriptor 47 // a) extended the rewrite descriptor kind enumeration 49 // b) implementing the new descriptor 264 for (auto &Descriptor : *DescriptorList) 265 if (!parseEntry(YS, Descriptor, DL)) 287 YS.printError(Entry.getValue(), "rewrite descriptor must be a map"); 305 yaml::MappingNode *Descriptor, 312 for (auto &Field : *Descriptor) { 321 YS.printError(Field.getKey(), "descriptor key must be a scalar") [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
SymbolRewriter.cpp | 26 // Currently, the following descriptor types are supported: 44 // New rewrite descriptors can be created. Addding a new rewrite descriptor 47 // a) extended the rewrite descriptor kind enumeration 49 // b) implementing the new descriptor 284 for (auto &Descriptor : *DescriptorList) 285 if (!parseEntry(YS, Descriptor, DL)) 307 YS.printError(Entry.getValue(), "rewrite descriptor must be a map"); 325 yaml::MappingNode *Descriptor, 332 for (auto &Field : *Descriptor) { 341 YS.printError(Field.getKey(), "descriptor key must be a scalar") [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/MemoryTest/GenericMemoryTestDxe/ |
LightMemoryTest.c | 702 EFI_GCD_MEMORY_SPACE_DESCRIPTOR Descriptor;
718 // the different GCD memory descriptor, it may be cause different action.
722 &Descriptor
728 if (Descriptor.GcdMemoryType == EfiGcdMemoryTypeReserved &&
729 (Descriptor.Capabilities & (EFI_MEMORY_PRESENT | EFI_MEMORY_INITIALIZED | EFI_MEMORY_TESTED)) ==
732 CurrentLength = Descriptor.BaseAddress + Descriptor.Length - CurrentBase;
740 Descriptor.Capabilities
746 CurrentBase = Descriptor.BaseAddress + Descriptor.Length; [all...] |
/external/protobuf/src/google/protobuf/ |
message.cc | 48 #include <google/protobuf/descriptor.pb.h> 50 #include <google/protobuf/descriptor.h> 68 const Descriptor* descriptor = GetDescriptor(); local 69 GOOGLE_CHECK_EQ(from.GetDescriptor(), descriptor) 71 "to: " << descriptor->full_name() << ", " 81 const Descriptor* descriptor = GetDescriptor(); local 82 GOOGLE_CHECK_EQ(from.GetDescriptor(), descriptor) 84 "to: " << descriptor->full_name() << ", [all...] |
/external/grpc-grpc/examples/csharp/Helloworld/Greeter/ |
Helloworld.cs | 17 #region Descriptor 18 /// <summary>File descriptor for helloworld.proto</summary> 19 public static pbr::FileDescriptor Descriptor { 20 get { return descriptor; } 22 private static pbr::FileDescriptor descriptor; field in class:Helloworld.HelloworldReflection 33 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 54 public static pbr::MessageDescriptor Descriptor { 55 get { return global::Helloworld.HelloworldReflection.Descriptor.MessageTypes[0]; } 59 pbr::MessageDescriptor pb::IMessage.Descriptor { 60 get { return Descriptor; } [all...] |
/external/grpc-grpc/examples/csharp/HelloworldLegacyCsproj/Greeter/ |
Helloworld.cs | 17 #region Descriptor 18 /// <summary>File descriptor for helloworld.proto</summary> 19 public static pbr::FileDescriptor Descriptor { 20 get { return descriptor; } 22 private static pbr::FileDescriptor descriptor; field in class:Helloworld.HelloworldReflection 33 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 54 public static pbr::MessageDescriptor Descriptor { 55 get { return global::Helloworld.HelloworldReflection.Descriptor.MessageTypes[0]; } 59 pbr::MessageDescriptor pb::IMessage.Descriptor { 60 get { return Descriptor; } [all...] |
/external/grpc-grpc/examples/csharp/HelloworldXamarin/HelloworldXamarin/ |
Helloworld.cs | 15 #region Descriptor 16 /// <summary>File descriptor for helloworld.proto</summary> 17 public static pbr::FileDescriptor Descriptor { 18 get { return descriptor; } 20 private static pbr::FileDescriptor descriptor; field in class:Helloworld.HelloworldReflection 31 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 51 public static pbr::MessageDescriptor Descriptor { 52 get { return global::Helloworld.HelloworldReflection.Descriptor.MessageTypes[0]; } 56 pbr::MessageDescriptor pb::IMessage.Descriptor { 57 get { return Descriptor; } [all...] |
/external/grpc-grpc/src/csharp/Grpc.HealthCheck/ |
Health.cs | 17 #region Descriptor 18 /// <summary>File descriptor for grpc/health/v1/health.proto</summary> 19 public static pbr::FileDescriptor Descriptor { 20 get { return descriptor; } 22 private static pbr::FileDescriptor descriptor; field in class:Grpc.Health.V1.HealthReflection 37 descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, 55 public static pbr::MessageDescriptor Descriptor { 56 get { return global::Grpc.Health.V1.HealthReflection.Descriptor.MessageTypes[0]; } 60 pbr::MessageDescriptor pb::IMessage.Descriptor { 61 get { return Descriptor; } [all...] |
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
MessageTest.java | 89 * have the same descriptor, this should work, but it is an entirely different 168 Descriptors.Descriptor descriptor = TestRequired.getDescriptor(); local 169 DynamicMessage.Builder builder = DynamicMessage.newBuilder(descriptor); 172 builder.setField(descriptor.findFieldByName("a"), 1); 174 builder.setField(descriptor.findFieldByName("b"), 1); 176 builder.setField(descriptor.findFieldByName("c"), 1); 181 Descriptors.Descriptor descriptor = TestRequiredForeign.getDescriptor(); local 182 DynamicMessage.Builder builder = DynamicMessage.newBuilder(descriptor); 308 Descriptors.Descriptor descriptor = TestRequired.getDescriptor(); local 318 Descriptors.Descriptor descriptor = TestRequired.getDescriptor(); local 342 Descriptors.Descriptor descriptor = TestRequired.getDescriptor(); local [all...] |
/external/protobuf/php/ext/google/protobuf/ |
message.c | 50 field = upb_msgdef_ntofz(self->descriptor->msgdef, Z_STRVAL_P(field_name)); 54 layout_set(self->descriptor->layout, message_data(self), field, value); 64 field = upb_msgdef_ntofz(self->descriptor->msgdef, Z_STRVAL_P(member)); 68 zval* retval = layout_get(self->descriptor->layout, message_data(self), field TSRMLS_CC); 178 static const upb_handlers* msgdef_pb_serialize_handlers(Descriptor* desc) { 187 Descriptor* desc = (Descriptor*)zend_object_store_get_object( 220 Descriptor* desc = zend_object_store_get_object(php_descriptor TSRMLS_CC); 227 msg->descriptor = desc; 242 Descriptor* desc = php_to_descriptor(php_descriptor) [all...] |
/external/protobuf/src/google/protobuf/compiler/java/ |
java_name_resolver.cc | 49 // Strip package name from a descriptor's full name. 65 string ClassNameWithoutPackage(const Descriptor* descriptor, 67 return StripPackageName(descriptor->full_name(), 68 descriptor->file()); 72 string ClassNameWithoutPackage(const EnumDescriptor* descriptor, 75 const Descriptor* message_descriptor = descriptor->containing_type(); 77 return descriptor->name(); 80 "." + descriptor->name() [all...] |
/external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/ |
WebRtcAudioEffects.java | 16 import android.media.audiofx.AudioEffect.Descriptor; 125 for (Descriptor d : AudioEffect.queryEffects()) { 138 for (Descriptor d : AudioEffect.queryEffects()) { 151 for (Descriptor d : AudioEffect.queryEffects()) { 282 for (Descriptor d : AudioEffect.queryEffects()) { 372 // AudioEffect.Descriptor array that are actually not available on the device. 373 // As an example: Samsung Galaxy S6 includes an AGC in the descriptor but
|