Home
last modified time | relevance | path

Searched refs:UDT (Results 1 – 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
DUDTLayout.cpp73 if (auto UDT = unique_dyn_cast<PDBSymbolTypeUDT>(Type)) { in DataMemberLayoutItem() local
74 UdtLayout = std::make_unique<ClassLayout>(std::move(UDT)); in DataMemberLayoutItem()
130 ClassLayout::ClassLayout(const PDBSymbolTypeUDT &UDT) in ClassLayout() argument
131 : UDTLayoutBase(nullptr, UDT, UDT.getName(), 0, UDT.getLength(), false), in ClassLayout()
132 UDT(UDT) { in ClassLayout()
142 ClassLayout::ClassLayout(std::unique_ptr<PDBSymbolTypeUDT> UDT) in ClassLayout() argument
143 : ClassLayout(*UDT) { in ClassLayout()
144 OwnedStorage = std::move(UDT); in ClassLayout()
DPDBSymbol.cpp76 FACTORY_SYMTAG_CASE(UDT, PDBSymbolTypeUDT) in createSymbol()
DPDBExtras.cpp236 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, UDT, OS) in operator <<()
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/
Dflag_benchmark.cc76 struct UDT { struct
77 UDT() = default;
78 UDT(const UDT&) {} in UDT() argument
79 UDT& operator=(const UDT&) { return *this; } in operator =() argument
82 bool AbslParseFlag(absl::string_view, UDT*, std::string*) { return true; } in AbslParseFlag() argument
83 std::string AbslUnparseFlag(const UDT&) { return ""; } in AbslUnparseFlag() argument
102 A(UDT)
196 struct Accumulator<UDT> {
209 void Accumulate(bool& a, const UDT& f) { in Accumulate()
Dparse_test.cc46 struct UDT { struct
47 UDT() = default;
48 UDT(const UDT&) = default;
49 UDT& operator=(const UDT&) = default;
50 UDT(int v) : value(v) {} // NOLINT in UDT() argument
55 bool AbslParseFlag(absl::string_view in, UDT* udt, std::string* err) { in AbslParseFlag()
68 std::string AbslUnparseFlag(const UDT& udt) { in AbslUnparseFlag()
201 ABSL_FLAG(UDT, udt_flag, -1, "");
Dflag_test.cc61 struct UDT { struct
62 UDT() = default;
63 UDT(const UDT&) = default;
64 UDT& operator=(const UDT&) = default;
66 bool AbslParseFlag(absl::string_view, UDT*, std::string*) { return true; } in AbslParseFlag() argument
67 std::string AbslUnparseFlag(const UDT&) { return ""; } in AbslUnparseFlag() argument
173 DEFINE_CONSTRUCTED_FLAG(UDT, &TestMakeDflt<UDT>, kGenFunc);
204 TEST_CONSTRUCTED_FLAG(UDT); in TEST_F()
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/internal/
Dusage_test.cc45 struct UDT { struct
46 UDT() = default;
47 UDT(const UDT&) = default;
48 UDT& operator=(const UDT&) = default;
50 bool AbslParseFlag(absl::string_view, UDT*, std::string*) { return true; } in AbslParseFlag() argument
51 std::string AbslUnparseFlag(const UDT&) { return "UDT{}"; } in AbslUnparseFlag() argument
53 ABSL_FLAG(UDT, usage_reporting_test_flag_05, {},
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/
DUDTLayout.h164 explicit ClassLayout(const PDBSymbolTypeUDT &UDT);
165 explicit ClassLayout(std::unique_ptr<PDBSymbolTypeUDT> UDT);
169 const PDBSymbolTypeUDT &getClass() const { return UDT; } in getClass()
175 const PDBSymbolTypeUDT &UDT; variable
DPDBSymbolTypeUDT.h25 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::UDT)
DPDBTypes.h253 UDT, enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DNativeTypeUDT.cpp21 : NativeRawSymbol(Session, PDB_SymType::UDT, Id), Index(TI), in NativeTypeUDT()
26 : NativeRawSymbol(Session, PDB_SymType::UDT, Id), Index(TI), in NativeTypeUDT()
32 : NativeRawSymbol(Session, PDB_SymType::UDT, Id), in NativeTypeUDT()
DNativeExeSymbol.cpp49 case PDB_SymType::UDT: in findChildren()
DSymbolCache.cpp130 case PDB_SymType::UDT: in createSymbolForModifiedType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h637 UdtSourceLineRecord(TypeIndex UDT, TypeIndex SourceFile, uint32_t LineNumber) in UdtSourceLineRecord() argument
638 : TypeRecord(TypeRecordKind::UdtSourceLine), UDT(UDT), in UdtSourceLineRecord()
641 TypeIndex getUDT() const { return UDT; } in getUDT()
645 TypeIndex UDT; variable
655 UdtModSourceLineRecord(TypeIndex UDT, TypeIndex SourceFile, in UdtModSourceLineRecord() argument
657 : TypeRecord(TypeRecordKind::UdtSourceLine), UDT(UDT), in UdtModSourceLineRecord()
660 TypeIndex getUDT() const { return UDT; } in getUDT()
665 TypeIndex UDT; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DSymbolRecordMapping.cpp458 Error SymbolRecordMapping::visitKnownRecord(CVSymbol &CVR, UDTSym &UDT) { in visitKnownRecord() argument
460 error(IO.mapInteger(UDT.Type)); in visitKnownRecord()
461 error(IO.mapStringZ(UDT.Name)); in visitKnownRecord()
DSymbolDumper.cpp624 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, UDTSym &UDT) { in visitKnownRecord() argument
625 printTypeIndex("Type", UDT.Type); in visitKnownRecord()
626 W.printString("UDTName", UDT.Name); in visitKnownRecord()
DTypeRecordMapping.cpp509 error(IO.mapInteger(Record.UDT, "UDT")); in visitKnownRecord()
518 error(IO.mapInteger(Record.UDT, "UDT")); in visitKnownRecord()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCodeViewYAMLTypes.cpp570 IO.mapRequired("UDT", Record.UDT); in map()
576 IO.mapRequired("UDT", Record.UDT); in map()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp2968 for (const auto &UDT : UDTs) { in emitDebugInfoForUDTs() local
2969 const DIType *T = UDT.second; in emitDebugInfoForUDTs()
2975 emitNullTerminatedSymbolName(OS, UDT.first); in emitDebugInfoForUDTs()
/third_party/json/
DChangeLog.md2005 - fix sfinae on basic\_json UDT constructor [\#919](https://github.com/nlohmann/json/pull/919) ([th…