/external/llvm/lib/ObjectYAML/ |
D | MachOYAML.cpp | 75 IO &IO, MachOYAML::FileHeader &FileHdr) { in mapping() argument 76 IO.mapRequired("magic", FileHdr.magic); in mapping() 77 IO.mapRequired("cputype", FileHdr.cputype); in mapping() 78 IO.mapRequired("cpusubtype", FileHdr.cpusubtype); in mapping() 79 IO.mapRequired("filetype", FileHdr.filetype); in mapping() 80 IO.mapRequired("ncmds", FileHdr.ncmds); in mapping() 81 IO.mapRequired("sizeofcmds", FileHdr.sizeofcmds); in mapping() 82 IO.mapRequired("flags", FileHdr.flags); in mapping() 85 IO.mapRequired("reserved", FileHdr.reserved); in mapping() 88 void MappingTraits<MachOYAML::Object>::mapping(IO &IO, in mapping() argument [all …]
|
D | COFFYAML.cpp | 16 #define ECase(X) IO.enumCase(Value, #X, COFF::X); 27 IO &IO, COFFYAML::COMDATType &Value) { in enumeration() argument 28 IO.enumCase(Value, "0", 0); in enumeration() 40 IO &IO, COFFYAML::WeakExternalCharacteristics &Value) { in enumeration() argument 41 IO.enumCase(Value, "0", 0); in enumeration() 48 IO &IO, COFFYAML::AuxSymbolType &Value) { in enumeration() argument 53 IO &IO, COFF::MachineTypes &Value) { in enumeration() argument 79 IO &IO, COFF::SymbolBaseType &Value) { in enumeration() argument 99 IO &IO, COFF::SymbolStorageClass &Value) { in enumeration() argument 130 IO &IO, COFF::SymbolComplexType &Value) { in enumeration() argument [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | MachOYAML.cpp | 84 IO &IO, MachOYAML::FileHeader &FileHdr) { in mapping() argument 85 IO.mapRequired("magic", FileHdr.magic); in mapping() 86 IO.mapRequired("cputype", FileHdr.cputype); in mapping() 87 IO.mapRequired("cpusubtype", FileHdr.cpusubtype); in mapping() 88 IO.mapRequired("filetype", FileHdr.filetype); in mapping() 89 IO.mapRequired("ncmds", FileHdr.ncmds); in mapping() 90 IO.mapRequired("sizeofcmds", FileHdr.sizeofcmds); in mapping() 91 IO.mapRequired("flags", FileHdr.flags); in mapping() 94 IO.mapRequired("reserved", FileHdr.reserved); in mapping() 97 void MappingTraits<MachOYAML::Object>::mapping(IO &IO, in mapping() argument [all …]
|
D | CodeViewYAMLSymbols.cpp | 76 void ScalarEnumerationTraits<SymbolKind>::enumeration(IO &io, in enumeration() argument 80 io.enumCase(Value, E.Name.str().c_str(), E.Value); in enumeration() 83 void ScalarBitSetTraits<CompileSym2Flags>::bitset(IO &io, in bitset() argument 87 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset() 92 void ScalarBitSetTraits<CompileSym3Flags>::bitset(IO &io, in bitset() argument 96 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset() 101 void ScalarBitSetTraits<ExportFlags>::bitset(IO &io, ExportFlags &Flags) { in bitset() argument 104 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset() 109 void ScalarBitSetTraits<PublicSymFlags>::bitset(IO &io, PublicSymFlags &Flags) { in bitset() argument 112 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset() [all …]
|
D | WasmYAML.cpp | 32 IO &IO, WasmYAML::FileHeader &FileHdr) { in mapping() argument 33 IO.mapRequired("Version", FileHdr.Version); in mapping() 36 void MappingTraits<WasmYAML::Object>::mapping(IO &IO, in mapping() argument 38 IO.setContext(&Object); in mapping() 39 IO.mapTag("!WASM", true); in mapping() 40 IO.mapRequired("FileHeader", Object.Header); in mapping() 41 IO.mapOptional("Sections", Object.Sections); in mapping() 42 IO.setContext(nullptr); in mapping() 45 static void commonSectionMapping(IO &IO, WasmYAML::Section &Section) { in commonSectionMapping() argument 46 IO.mapRequired("Type", Section.Type); in commonSectionMapping() [all …]
|
D | CodeViewYAMLTypes.cpp | 84 virtual void map(yaml::IO &io) = 0; 93 void map(yaml::IO &io) override; 110 void map(yaml::IO &io) override; 123 virtual void map(yaml::IO &io) = 0; 131 void map(yaml::IO &io) override; 193 void ScalarEnumerationTraits<TypeLeafKind>::enumeration(IO &io, in enumeration() argument 195 #define CV_TYPE(name, val) io.enumCase(Value, #name, name); in enumeration() 201 IO &IO, PointerToMemberRepresentation &Value) { in enumeration() argument 202 IO.enumCase(Value, "Unknown", PointerToMemberRepresentation::Unknown); in enumeration() 203 IO.enumCase(Value, "SingleInheritanceData", in enumeration() [all …]
|
D | DWARFYAML.cpp | 24 void MappingTraits<DWARFYAML::Data>::mapping(IO &IO, DWARFYAML::Data &DWARF) { in mapping() argument 25 auto oldContext = IO.getContext(); in mapping() 26 IO.setContext(&DWARF); in mapping() 27 IO.mapOptional("debug_str", DWARF.DebugStrings); in mapping() 28 IO.mapOptional("debug_abbrev", DWARF.AbbrevDecls); in mapping() 29 if (!DWARF.ARanges.empty() || !IO.outputting()) in mapping() 30 IO.mapOptional("debug_aranges", DWARF.ARanges); in mapping() 31 if (!DWARF.PubNames.Entries.empty() || !IO.outputting()) in mapping() 32 IO.mapOptional("debug_pubnames", DWARF.PubNames); in mapping() 33 if (!DWARF.PubTypes.Entries.empty() || !IO.outputting()) in mapping() [all …]
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
D | MachOYAML.cpp | 84 IO &IO, MachOYAML::FileHeader &FileHdr) { in mapping() argument 85 IO.mapRequired("magic", FileHdr.magic); in mapping() 86 IO.mapRequired("cputype", FileHdr.cputype); in mapping() 87 IO.mapRequired("cpusubtype", FileHdr.cpusubtype); in mapping() 88 IO.mapRequired("filetype", FileHdr.filetype); in mapping() 89 IO.mapRequired("ncmds", FileHdr.ncmds); in mapping() 90 IO.mapRequired("sizeofcmds", FileHdr.sizeofcmds); in mapping() 91 IO.mapRequired("flags", FileHdr.flags); in mapping() 94 IO.mapRequired("reserved", FileHdr.reserved); in mapping() 97 void MappingTraits<MachOYAML::Object>::mapping(IO &IO, in mapping() argument [all …]
|
D | CodeViewYAMLSymbols.cpp | 76 void ScalarEnumerationTraits<SymbolKind>::enumeration(IO &io, in enumeration() argument 80 io.enumCase(Value, E.Name.str().c_str(), E.Value); in enumeration() 83 void ScalarBitSetTraits<CompileSym2Flags>::bitset(IO &io, in bitset() argument 87 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset() 92 void ScalarBitSetTraits<CompileSym3Flags>::bitset(IO &io, in bitset() argument 96 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset() 101 void ScalarBitSetTraits<ExportFlags>::bitset(IO &io, ExportFlags &Flags) { in bitset() argument 104 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset() 109 void ScalarBitSetTraits<PublicSymFlags>::bitset(IO &io, PublicSymFlags &Flags) { in bitset() argument 112 io.bitSetCase(Flags, E.Name.str().c_str(), in bitset() [all …]
|
D | WasmYAML.cpp | 32 IO &IO, WasmYAML::FileHeader &FileHdr) { in mapping() argument 33 IO.mapRequired("Version", FileHdr.Version); in mapping() 36 void MappingTraits<WasmYAML::Object>::mapping(IO &IO, in mapping() argument 38 IO.setContext(&Object); in mapping() 39 IO.mapTag("!WASM", true); in mapping() 40 IO.mapRequired("FileHeader", Object.Header); in mapping() 41 IO.mapOptional("Sections", Object.Sections); in mapping() 42 IO.setContext(nullptr); in mapping() 45 static void commonSectionMapping(IO &IO, WasmYAML::Section &Section) { in commonSectionMapping() argument 46 IO.mapRequired("Type", Section.Type); in commonSectionMapping() [all …]
|
D | CodeViewYAMLTypes.cpp | 84 virtual void map(yaml::IO &io) = 0; 93 void map(yaml::IO &io) override; 110 void map(yaml::IO &io) override; 123 virtual void map(yaml::IO &io) = 0; 131 void map(yaml::IO &io) override; 193 void ScalarEnumerationTraits<TypeLeafKind>::enumeration(IO &io, in enumeration() argument 195 #define CV_TYPE(name, val) io.enumCase(Value, #name, name); in enumeration() 201 IO &IO, PointerToMemberRepresentation &Value) { in enumeration() argument 202 IO.enumCase(Value, "Unknown", PointerToMemberRepresentation::Unknown); in enumeration() 203 IO.enumCase(Value, "SingleInheritanceData", in enumeration() [all …]
|
D | DWARFYAML.cpp | 91 void MappingTraits<DWARFYAML::Data>::mapping(IO &IO, DWARFYAML::Data &DWARF) { in mapping() argument 92 void *OldContext = IO.getContext(); in mapping() 94 IO.setContext(&DWARFCtx); in mapping() 95 IO.mapOptional("debug_str", DWARF.DebugStrings); in mapping() 96 IO.mapOptional("debug_abbrev", DWARF.DebugAbbrev); in mapping() 97 IO.mapOptional("debug_aranges", DWARF.DebugAranges); in mapping() 98 IO.mapOptional("debug_ranges", DWARF.DebugRanges); in mapping() 99 IO.mapOptional("debug_pubnames", DWARF.PubNames); in mapping() 100 IO.mapOptional("debug_pubtypes", DWARF.PubTypes); in mapping() 102 IO.mapOptional("debug_gnu_pubnames", DWARF.GNUPubNames); in mapping() [all …]
|
D | COFFYAML.cpp | 19 #define ECase(X) IO.enumCase(Value, #X, COFF::X); 34 IO &IO, COFFYAML::COMDATType &Value) { in enumeration() argument 35 IO.enumCase(Value, "0", 0); in enumeration() 47 IO &IO, COFFYAML::WeakExternalCharacteristics &Value) { in enumeration() argument 48 IO.enumCase(Value, "0", 0); in enumeration() 55 IO &IO, COFFYAML::AuxSymbolType &Value) { in enumeration() argument 60 IO &IO, COFF::MachineTypes &Value) { in enumeration() argument 86 IO &IO, COFF::SymbolBaseType &Value) { in enumeration() argument 106 IO &IO, COFF::SymbolStorageClass &Value) { in enumeration() argument 137 IO &IO, COFF::SymbolComplexType &Value) { in enumeration() argument [all …]
|
/external/grpc-grpc-java/compiler/src/test/golden/ |
D | TestService.java.txt | 1 package io.grpc.testing.compiler; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/grpc-grpc-java/testing-proto/src/generated/main/grpc/io/grpc/testing/protobuf/ |
D | SimpleServiceGrpc.java | 1 package io.grpc.testing.protobuf; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/grpc-grpc-java/compiler/src/testLite/golden/ |
D | TestService.java.txt | 1 package io.grpc.testing.compiler; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/llvm-project/lld/lib/ReaderWriter/MachO/ |
D | MachONormalizedFileYAML.cpp | 56 static size_t size(IO &io, std::vector<Section> &seq) { in size() 59 static Section& element(IO &io, std::vector<Section> &seq, size_t index) { in element() 68 static size_t size(IO &io, std::vector<Symbol> &seq) { in size() 71 static Symbol& element(IO &io, std::vector<Symbol> &seq, size_t index) { in element() 81 static size_t size(IO &io, Relocations &seq) { in size() 84 static Relocation& element(IO &io, Relocations &seq, size_t index) { in element() 94 static size_t size(IO &io, ContentBytes &seq) { in size() 97 static Hex8& element(IO &io, ContentBytes &seq, size_t index) { in element() 109 static size_t size(IO &io, IndirectSymbols &seq) { in size() 112 static uint32_t& element(IO &io, IndirectSymbols &seq, size_t index) { in element() [all …]
|
/external/grpc-grpc-java/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/ |
D | TestServiceGrpc.java | 1 package io.grpc.testing.integration; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/grpc-grpc-java/services/src/generated/main/grpc/io/grpc/channelz/v1/ |
D | ChannelzGrpc.java | 1 package io.grpc.channelz.v1; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/grpc-grpc-java/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/ |
D | BenchmarkServiceGrpc.java | 1 package io.grpc.benchmarks.proto; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
D | WorkerServiceGrpc.java | 1 package io.grpc.benchmarks.proto; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/llvm-project/llvm/tools/llvm-pdbutil/ |
D | PdbYaml.cpp | 34 static void enumeration(IO &io, llvm::pdb::PDB_Machine &Value) { in enumeration() 35 io.enumCase(Value, "Invalid", PDB_Machine::Invalid); in enumeration() 36 io.enumCase(Value, "Am33", PDB_Machine::Am33); in enumeration() 37 io.enumCase(Value, "Amd64", PDB_Machine::Amd64); in enumeration() 38 io.enumCase(Value, "Arm", PDB_Machine::Arm); in enumeration() 39 io.enumCase(Value, "ArmNT", PDB_Machine::ArmNT); in enumeration() 40 io.enumCase(Value, "Ebc", PDB_Machine::Ebc); in enumeration() 41 io.enumCase(Value, "x86", PDB_Machine::x86); in enumeration() 42 io.enumCase(Value, "Ia64", PDB_Machine::Ia64); in enumeration() 43 io.enumCase(Value, "M32R", PDB_Machine::M32R); in enumeration() [all …]
|
/external/grpc-grpc-java/compiler/src/testNano/golden/ |
D | TestService.java.txt | 1 package io.grpc.testing.compiler.nano; 3 import static io.grpc.MethodDescriptor.generateFullMethodName; 4 import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall; 5 import static io.grpc.stub.ClientCalls.asyncClientStreamingCall; 6 import static io.grpc.stub.ClientCalls.asyncServerStreamingCall; 7 import static io.grpc.stub.ClientCalls.asyncUnaryCall; 8 import static io.grpc.stub.ClientCalls.blockingServerStreamingCall; 9 import static io.grpc.stub.ClientCalls.blockingUnaryCall; 10 import static io.grpc.stub.ClientCalls.futureUnaryCall; 11 import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall; [all …]
|
/external/llvm-project/llvm/lib/DebugInfo/CodeView/ |
D | SymbolRecordMapping.cpp | 20 Error operator()(CodeViewRecordIO &IO, LocalVariableAddrGap &Gap) const { in operator ()() 21 error(IO.mapInteger(Gap.GapStartOffset)); in operator ()() 22 error(IO.mapInteger(Gap.Range)); in operator ()() 28 static Error mapLocalVariableAddrRange(CodeViewRecordIO &IO, in mapLocalVariableAddrRange() argument 30 error(IO.mapInteger(Range.OffsetStart)); in mapLocalVariableAddrRange() 31 error(IO.mapInteger(Range.ISectStart)); in mapLocalVariableAddrRange() 32 error(IO.mapInteger(Range.Range)); in mapLocalVariableAddrRange() 37 error(IO.beginRecord(MaxRecordLength - sizeof(RecordPrefix))); in visitSymbolBegin() 42 error(IO.padToAlignment(alignOf(Container))); in visitSymbolEnd() 43 error(IO.endRecord()); in visitSymbolEnd() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | SymbolRecordMapping.cpp | 20 Error operator()(CodeViewRecordIO &IO, LocalVariableAddrGap &Gap) const { in operator ()() 21 error(IO.mapInteger(Gap.GapStartOffset)); in operator ()() 22 error(IO.mapInteger(Gap.Range)); in operator ()() 28 static Error mapLocalVariableAddrRange(CodeViewRecordIO &IO, in mapLocalVariableAddrRange() argument 30 error(IO.mapInteger(Range.OffsetStart)); in mapLocalVariableAddrRange() 31 error(IO.mapInteger(Range.ISectStart)); in mapLocalVariableAddrRange() 32 error(IO.mapInteger(Range.Range)); in mapLocalVariableAddrRange() 37 error(IO.beginRecord(MaxRecordLength - sizeof(RecordPrefix))); in visitSymbolBegin() 42 error(IO.padToAlignment(alignOf(Container))); in visitSymbolEnd() 43 error(IO.endRecord()); in visitSymbolEnd() [all …]
|