reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/ObjectYAML/COFFYAML.cpp
  419     IO.mapRequired("Type", NT->Type);
  423     IO.mapRequired("Type", NT->Type);
  427     IO.mapRequired("Type", NT->Type);
  431     IO.mapRequired("Type", NT->Type);
  462   IO.mapRequired("Subsystem", NWS->Subsystem);
  463   IO.mapRequired("DLLCharacteristics", NDC->Characteristics);
  495   IO.mapRequired("Machine", NM->Machine);
  496   IO.mapOptional("Characteristics", NC->Characteristics);
  519   IO.mapRequired("Characteristics", NWEC->Characteristics);
  532   IO.mapOptional("Selection", NSST->SelectionType, COFFYAML::COMDATType(0));
  538   IO.mapRequired("AuxType", NATT->AuxType);
  550   IO.mapRequired("StorageClass", NS->StorageClass);
  563   IO.mapRequired("Characteristics", NC->Characteristics);
  584       NC->Characteristics & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA)
lib/ObjectYAML/ELFYAML.cpp
  976   IO.mapOptional("Other", Keys->Other);
 1396     IO.mapRequired("Type", Key->Type);
 1397     IO.mapOptional("Type2", Key->Type2, ELFYAML::ELF_REL(ELF::R_MIPS_NONE));
 1398     IO.mapOptional("Type3", Key->Type3, ELFYAML::ELF_REL(ELF::R_MIPS_NONE));
 1399     IO.mapOptional("SpecSym", Key->SpecSym, ELFYAML::ELF_RSS(ELF::RSS_UNDEF));
lib/TextAPI/MachO/TextStub.cpp
 1023     IO.mapRequired("archs", Keys->Architectures);
 1025       IO.mapOptional("uuids", Keys->UUIDs);
 1026     IO.mapRequired("platform", Keys->Platforms);
 1028       IO.mapOptional("flags", Keys->Flags, TBDFlags::None);
 1029     IO.mapRequired("install-name", Keys->InstallName);
 1030     IO.mapOptional("current-version", Keys->CurrentVersion,
 1032     IO.mapOptional("compatibility-version", Keys->CompatibilityVersion,
 1035       IO.mapOptional("swift-version", Keys->SwiftABIVersion, SwiftVersion(0));
 1037       IO.mapOptional("swift-abi-version", Keys->SwiftABIVersion,
 1039     IO.mapOptional("objc-constraint", Keys->ObjCConstraint,
 1044       IO.mapOptional("parent-umbrella", Keys->ParentUmbrella, StringRef());
 1045     IO.mapOptional("exports", Keys->Exports);
 1047       IO.mapOptional("undefineds", Keys->Undefineds);
 1054     IO.mapRequired("tbd-version", Keys->TBDVersion);
 1055     IO.mapRequired("targets", Keys->Targets);
 1056     IO.mapOptional("uuids", Keys->UUIDs);
 1057     IO.mapOptional("flags", Keys->Flags, TBDFlags::None);
 1058     IO.mapRequired("install-name", Keys->InstallName);
 1059     IO.mapOptional("current-version", Keys->CurrentVersion,
 1061     IO.mapOptional("compatibility-version", Keys->CompatibilityVersion,
 1063     IO.mapOptional("swift-abi-version", Keys->SwiftABIVersion, SwiftVersion(0));
 1064     IO.mapOptional("parent-umbrella", Keys->ParentUmbrellas);
 1066     IO.mapOptionalWithContext("allowable-clients", Keys->AllowableClients,
 1069     IO.mapOptionalWithContext("reexported-libraries", Keys->ReexportedLibraries,
 1071     IO.mapOptional("exports", Keys->Exports);
 1072     IO.mapOptional("reexports", Keys->Reexports);
 1073     IO.mapOptional("undefineds", Keys->Undefineds);
tools/clang/include/clang/Tooling/DiagnosticsYaml.h
   79     Io.mapRequired("DiagnosticName", Keys->DiagnosticName);
   80     Io.mapRequired("DiagnosticMessage", Keys->Message);
   81     Io.mapOptional("Notes", Keys->Notes);
tools/clang/include/clang/Tooling/ReplacementsYaml.h
   60     Io.mapRequired("FilePath", Keys->FilePath);
   61     Io.mapRequired("Offset", Keys->Offset);
   62     Io.mapRequired("Length", Keys->Length);
   63     Io.mapRequired("ReplacementText", Keys->ReplacementText);
tools/clang/lib/Tooling/Refactoring/AtomicChange.cpp
   71     Io.mapRequired("Key", Keys->Key);
   72     Io.mapRequired("FilePath", Keys->FilePath);
   73     Io.mapRequired("Error", Keys->Error);
   74     Io.mapRequired("InsertedHeaders", Keys->InsertedHeaders);
   75     Io.mapRequired("RemovedHeaders", Keys->RemovedHeaders);
   76     Io.mapRequired("Replacements", Keys->Replaces);
tools/clang/tools/extra/clang-include-fixer/tool/ClangIncludeFixer.cpp
   52     IO.mapRequired("Offset", Keys->Offset);
   53     IO.mapRequired("Length", Keys->Length);
tools/clang/tools/extra/clang-tidy/ClangTidyOptions.cpp
   92     IO.mapOptional("CheckOptions", NOpts->Options);
tools/clang/tools/extra/clangd/index/YAMLSerialization.cpp
  156     IO.mapRequired("FileURI", NFile->URI);
  159     IO.mapRequired("Start", NStart->P);
  162     IO.mapRequired("End", NEnd->P);
  190     IO.mapRequired("ID", NSymbolID->HexString);
  198     IO.mapOptional("Origin", NSymbolOrigin->Origin);
  199     IO.mapOptional("Flags", NSymbolFlag->Flag);
  261     IO.mapRequired("ID", NSymbolID->HexString);
  278     IO.mapRequired("Kind", NKind->Kind);
  297     IO.mapRequired("ID", NSymbolID->HexString);
  306     IO.mapRequired("Predicate", NRole->Kind);
tools/dsymutil/DebugMap.cpp
  174   io.mapRequired("filename", Norm->Filename);
  175   io.mapOptional("timestamp", Norm->Timestamp);
  176   io.mapRequired("symbols", Norm->Entries);
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileYAML.cpp
  314       io.mapOptional("content",         content->_normalizedContent);
tools/llvm-exegesis/lib/BenchmarkResult.cpp
  326     Io.mapOptional("assembled_snippet", BinaryString->Binary);
unittests/Support/YAMLIOTest.cpp
 1420       io.mapOptional("hours", keys->hours, 0);
 1421       io.mapOptional("minutes", keys->minutes, 0);
 1422       io.mapRequired("seconds",  keys->seconds);