HomeSort by relevance Sort by last modified time
    Searched refs:UDT (Results 1 - 25 of 29) sorted by null

1 2

  /external/libcxx/test/std/numerics/complex.number/cmplx.over/
UDT_is_rejected.fail.cpp 12 // Test that UDT's convertible to an integral or floating point type do not
20 struct UDT {
24 UDT<float> ft;
25 UDT<double> dt;
26 UDT<long double> ldt;
27 UDT<int> it;
28 UDT<unsigned long> uit;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/
PDBSymbolTypeUDT.cpp 29 assert(RawSymbol->getSymTag() == PDB_SymType::UDT);
UDTLayout.cpp 74 if (auto UDT = unique_dyn_cast<PDBSymbolTypeUDT>(Type)) {
75 UdtLayout = llvm::make_unique<ClassLayout>(std::move(UDT));
109 // UDT storage comes from a union of all the children's storage, so start out
131 ClassLayout::ClassLayout(const PDBSymbolTypeUDT &UDT)
132 : UDTLayoutBase(nullptr, UDT, UDT.getName(), 0, UDT.getLength(), false),
133 UDT(UDT) {
143 ClassLayout::ClassLayout(std::unique_ptr<PDBSymbolTypeUDT> UDT)
    [all...]
PDBSymbol.cpp 80 FACTORY_SYMTAG_CASE(UDT, PDBSymbolTypeUDT)
PDBExtras.cpp 185 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, UDT, OS)
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeUDT.h 1 //===- PDBSymbolTypeUDT.h - UDT type info -----------------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::UDT)
PDBTypes.h 180 UDT,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeUDT.h 1 //===- PDBSymbolTypeUDT.h - UDT type info -----------------------*- C++ -*-===//
35 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::UDT)
UDTLayout.h 1 //===- UDTLayout.h - UDT layout info ----------------------------*- C++ -*-===//
165 explicit ClassLayout(const PDBSymbolTypeUDT &UDT);
166 explicit ClassLayout(std::unique_ptr<PDBSymbolTypeUDT> UDT);
170 const PDBSymbolTypeUDT &getClass() const { return UDT; }
176 const PDBSymbolTypeUDT &UDT;
PDBTypes.h 191 UDT,
  /external/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 505 // SizeOf: The 'sizeof' the UDT in bytes is encoded as an LF_NUMERIC
541 // SizeOf: The 'sizeof' the UDT in bytes is encoded as an LF_NUMERIC
747 UdtSourceLineRecord(TypeIndex UDT, TypeIndex SourceFile, uint32_t LineNumber)
748 : TypeRecord(TypeRecordKind::UdtSourceLine), UDT(UDT),
758 TypeIndex getUDT() const { return UDT; }
764 TypeIndex UDT; // The user-defined type
769 TypeIndex UDT;
777 UdtModSourceLineRecord(TypeIndex UDT, TypeIndex SourceFile,
779 : TypeRecord(TypeRecordKind::UdtSourceLine), UDT(UDT)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 613 UdtSourceLineRecord(TypeIndex UDT, TypeIndex SourceFile, uint32_t LineNumber)
614 : TypeRecord(TypeRecordKind::UdtSourceLine), UDT(UDT),
617 TypeIndex getUDT() const { return UDT; }
621 TypeIndex UDT;
631 UdtModSourceLineRecord(TypeIndex UDT, TypeIndex SourceFile,
633 : TypeRecord(TypeRecordKind::UdtSourceLine), UDT(UDT),
636 TypeIndex getUDT() const { return UDT; }
641 TypeIndex UDT;
    [all...]
  /external/llvm/lib/DebugInfo/PDB/
PDBSymbol.cpp 79 FACTORY_SYMTAG_CASE(UDT, PDBSymbolTypeUDT)
PDBExtras.cpp 226 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, UDT, OS)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
SymbolRecordMapping.cpp 459 Error SymbolRecordMapping::visitKnownRecord(CVSymbol &CVR, UDTSym &UDT) {
461 error(IO.mapInteger(UDT.Type));
462 error(IO.mapStringZ(UDT.Name));
TypeRecordMapping.cpp 316 error(IO.mapInteger(Record.UDT));
325 error(IO.mapInteger(Record.UDT));
SymbolDumper.cpp 608 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, UDTSym &UDT) {
609 printTypeIndex("Type", UDT.Type);
610 W.printString("UDTName", UDT.Name);
  /external/llvm/unittests/DebugInfo/PDB/
PDBApiTest.cpp 338 InsertItemWithTag(PDB_SymType::UDT);
400 VerifyDyncast<PDBSymbolTypeUDT>(PDB_SymType::UDT);
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/CodeView/
TypeIndexDiscoveryTest.cpp 322 checkTypeReferences(0, UdtSourceLine.UDT, UdtSourceLine.SourceFile);
328 checkTypeReferences(0, UdtModSourceLine.UDT, UdtModSourceLine.SourceFile);
441 checkTypeReferences(5, UdtSourceLine.UDT, UdtSourceLine.SourceFile);
442 checkTypeReferences(6, UdtModSourceLine.UDT, UdtModSourceLine.SourceFile);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DumpOutputStyle.cpp 697 UDTSym UDT = cantFail(SymbolDeserializer::deserializeAs<UDTSym>(Sym));
702 if (UDT.Type.isNoneType())
704 else if (UDT.Type.isSimple())
706 else if (Optional<CVType> T = TpiTypes.tryGetType(UDT.Type)) {
714 size_t Pos = UDT.Name.find("::");
718 StringRef Scope = UDT.Name.take_front(Pos);
    [all...]
MinimalSymbolDumper.cpp 554 "spilled udt = {3}",
757 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, UDTSym &UDT) {
758 P.format(" `{0}`", UDT.Name);
760 P.formatLine("original type = {0}", UDT.Type);
MinimalTypeDumper.cpp 187 PUSH_FLAG(FunctionOptions, CxxReturnUdt, Options, "returns cxx udt");
424 P.formatLine("udt = {0}, mod = {1}, file = {2}, line = {3}", U.UDT, U.Module,
431 P.formatLine("udt = {0}, file = {1}, line = {2}", U.UDT,
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/PDB/
PDBApiTest.cpp 420 InsertItemWithTag(PDB_SymType::UDT);
482 VerifyDyncast<PDBSymbolTypeUDT>(PDB_SymType::UDT);
  /external/llvm/lib/DebugInfo/CodeView/
SymbolDumper.cpp 619 void CVSymbolDumperImpl::visitUDTSym(SymbolKind Kind, UDTSym &UDT) {
620 DictScope S(W, "UDT");
621 CVTD.printTypeIndex("Type", UDT.Header.Type);
622 W.printString("UDTName", UDT.Name);
TypeRecord.cpp 240 return UdtSourceLineRecord(L->UDT, L->SourceFile, L->LineNumber);
499 Success &= remapIndex(IndexMap, UDT);
506 Success &= remapIndex(IndexMap, UDT);

Completed in 483 milliseconds

1 2