Home
last modified time | relevance | path

Searched refs:YIn (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A Dyaml2obj.cpp21 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 DDWARFEmitter.cpp1059 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 DApplyReplacements.cpp69 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 DDWARFYAMLTest.cpp21 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 DDXContainerYAMLTest.cpp24 yaml::Input YIn(YAML); in convert() local
25 return convertYAML(YIn, OS, [](const Twine &Err) { errs() << Err; }); in convert()
H A DYAML2ObjTest.cpp75 yaml::Input YIn(Yaml); in TEST() local
76 bool Res = convertYAML(YIn, OS, ErrHandler); in TEST()
H A DELFYAMLTest.cpp25 yaml::Input YIn(Yaml); in toBinary() local
26 if (!yaml::convertYAML(YIn, OS, [](const Twine &Msg) {})) in toBinary()
H A DMinidumpYAMLTest.cpp22 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 DTestUtilities.cpp32 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 Dyaml2obj.cpp136 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 DMinidumpParserTest.cpp57 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 Dyaml2obj.h78 bool convertYAML(Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler,
/llvm-project-15.0.7/llvm/unittests/Object/
H A DELFObjectFileTest.cpp322 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 DYAMLIOTest.cpp349 Input YIn(Serialized); in TEST() local
350 YIn >> Deserialized; in TEST()
351 ASSERT_FALSE(YIn.error()) in TEST()