| /llvm-project-15.0.7/llvm/lib/ObjectYAML/ |
| H A D | yaml2obj.cpp | 21 bool convertYAML(yaml::Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler, in convertYAML() argument 29 YIn >> Doc; in convertYAML() 30 if (std::error_code EC = YIn.error()) { in convertYAML() 57 } while (YIn.nextDocument()); in convertYAML() 70 yaml::Input YIn(Yaml); in yaml2ObjectFile() local 71 if (!convertYAML(YIn, OS, ErrHandler)) in yaml2ObjectFile()
|
| H A D | DWARFEmitter.cpp | 1059 yaml::Input YIn(YAMLString, /*Ctxt=*/nullptr, CollectDiagnostic, in emitDebugSections() local 1066 YIn >> DI; in emitDebugSections() 1067 if (YIn.error()) in emitDebugSections() 1068 return createStringError(YIn.error(), GeneratedDiag.getMessage()); in emitDebugSections()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-apply-replacements/lib/Tooling/ |
| H A D | ApplyReplacements.cpp | 69 yaml::Input YIn(Out.get()->getBuffer(), nullptr, &eatDiagnostics); in collectReplacementsFromDirectory() local 71 YIn >> TU; in collectReplacementsFromDirectory() 72 if (YIn.error()) { in collectReplacementsFromDirectory() 113 yaml::Input YIn(Out.get()->getBuffer(), nullptr, &eatDiagnostics); in collectReplacementsFromDirectory() local 115 YIn >> TU; in collectReplacementsFromDirectory() 116 if (YIn.error()) { in collectReplacementsFromDirectory()
|
| /llvm-project-15.0.7/llvm/unittests/ObjectYAML/ |
| H A D | DWARFYAMLTest.cpp | 21 yaml::Input YIn( in parseDWARFYAML() local 28 YIn >> Data; in parseDWARFYAML() 29 if (YIn.error()) in parseDWARFYAML() 30 return createStringError(YIn.error(), GenerateDiag.getMessage()); in parseDWARFYAML()
|
| H A D | DXContainerYAMLTest.cpp | 24 yaml::Input YIn(YAML); in convert() local 25 return convertYAML(YIn, OS, [](const Twine &Err) { errs() << Err; }); in convert()
|
| H A D | YAML2ObjTest.cpp | 75 yaml::Input YIn(Yaml); in TEST() local 76 bool Res = convertYAML(YIn, OS, ErrHandler); in TEST()
|
| H A D | ELFYAMLTest.cpp | 25 yaml::Input YIn(Yaml); in toBinary() local 26 if (!yaml::convertYAML(YIn, OS, [](const Twine &Msg) {})) in toBinary()
|
| H A D | MinidumpYAMLTest.cpp | 22 yaml::Input YIn(Yaml); in toBinary() local 23 if (!yaml::convertYAML(YIn, OS, [](const Twine &Msg) {})) in toBinary()
|
| /llvm-project-15.0.7/lldb/unittests/TestingSupport/ |
| H A D | TestUtilities.cpp | 32 llvm::yaml::Input YIn(Yaml); in fromYaml() local 33 if (!llvm::yaml::convertYAML(YIn, OS, [](const llvm::Twine &Msg) {})) in fromYaml()
|
| /llvm-project-15.0.7/llvm/tools/yaml2obj/ |
| H A D | yaml2obj.cpp | 136 yaml::Input YIn(*Buffer); in main() local 138 if (!convertYAML(YIn, Out->os(), ErrHandler, DocNum, in main()
|
| /llvm-project-15.0.7/lldb/unittests/Process/minidump/ |
| H A D | MinidumpParserTest.cpp | 57 llvm::yaml::Input YIn(yaml); in SetUpFromYaml() local 58 if (!llvm::yaml::convertYAML(YIn, os, [](const llvm::Twine &Msg) {})) in SetUpFromYaml() 78 llvm::yaml::Input YIn(R"( in TEST_F() local 87 ASSERT_TRUE(llvm::yaml::convertYAML(YIn, os, [](const llvm::Twine &Msg){})); in TEST_F()
|
| /llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/ |
| H A D | yaml2obj.h | 78 bool convertYAML(Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler,
|
| /llvm-project-15.0.7/llvm/unittests/Object/ |
| H A D | ELFObjectFileTest.cpp | 322 yaml::Input YIn(Yaml); in toBinary() local 323 if (!yaml::convertYAML(YIn, OS, [](const Twine &Msg) {})) in toBinary()
|
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | YAMLIOTest.cpp | 349 Input YIn(Serialized); in TEST() local 350 YIn >> Deserialized; in TEST() 351 ASSERT_FALSE(YIn.error()) in TEST()
|