Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
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()
49 } while (YIn.nextDocument()); in convertYAML()
62 yaml::Input YIn(Yaml); in yaml2ObjectFile() local
63 if (!convertYAML(YIn, OS, ErrHandler)) in yaml2ObjectFile()
DDWARFEmitter.cpp356 yaml::Input YIn(YAMLString); in EmitDebugSections() local
360 YIn >> DI; in EmitDebugSections()
361 if (YIn.error()) in EmitDebugSections()
362 return errorCodeToError(YIn.error()); in EmitDebugSections()
/external/llvm-project/llvm/lib/ObjectYAML/
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()
51 } while (YIn.nextDocument()); in convertYAML()
64 yaml::Input YIn(Yaml); in yaml2ObjectFile() local
65 if (!convertYAML(YIn, OS, ErrHandler)) in yaml2ObjectFile()
DDWARFEmitter.cpp1060 yaml::Input YIn(YAMLString, /*Ctxt=*/nullptr, CollectDiagnostic, in emitDebugSections() local
1067 YIn >> DI; in emitDebugSections()
1068 if (YIn.error()) in emitDebugSections()
1069 return createStringError(YIn.error(), GeneratedDiag.getMessage()); in emitDebugSections()
/external/llvm/tools/yaml2obj/
Dyaml2obj.cpp43 static int convertYAML(yaml::Input &YIn, raw_ostream &Out) { in convertYAML() argument
48 YIn >> Doc; in convertYAML()
49 if (YIn.error()) { in convertYAML()
63 } while (YIn.nextDocument()); in convertYAML()
92 yaml::Input YIn(Buf.get()->getBuffer()); in main() local
94 int Res = convertYAML(YIn, Out->os()); in main()
/external/llvm-project/clang-tools-extra/clang-apply-replacements/lib/Tooling/
DApplyReplacements.cpp68 yaml::Input YIn(Out.get()->getBuffer(), nullptr, &eatDiagnostics); in collectReplacementsFromDirectory() local
70 YIn >> TU; in collectReplacementsFromDirectory()
71 if (YIn.error()) { in collectReplacementsFromDirectory()
112 yaml::Input YIn(Out.get()->getBuffer(), nullptr, &eatDiagnostics); in collectReplacementsFromDirectory() local
114 YIn >> TU; in collectReplacementsFromDirectory()
115 if (YIn.error()) { in collectReplacementsFromDirectory()
/external/llvm-project/llvm/unittests/ObjectYAML/
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()
DYAML2ObjTest.cpp75 yaml::Input YIn(Yaml); in TEST() local
76 bool Res = convertYAML(YIn, OS, ErrHandler); in TEST()
DELFYAMLTest.cpp25 yaml::Input YIn(Yaml); in toBinary() local
26 if (!yaml::convertYAML(YIn, OS, [](const Twine &Msg) {})) in toBinary()
DMinidumpYAMLTest.cpp22 yaml::Input YIn(Yaml); in toBinary() local
23 if (!yaml::convertYAML(YIn, OS, [](const Twine &Msg) {})) in toBinary()
/external/llvm-project/lldb/unittests/TestingSupport/
DTestUtilities.cpp32 llvm::yaml::Input YIn(Yaml); in fromYaml() local
33 if (!llvm::yaml::convertYAML(YIn, OS, [](const llvm::Twine &Msg) {})) in fromYaml()
/external/llvm-project/llvm/tools/yaml2obj/
Dyaml2obj.cpp134 yaml::Input YIn(*Buffer); in main() local
136 if (!convertYAML(YIn, Out->os(), ErrHandler, DocNum, in main()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
Dyaml2obj.h56 bool convertYAML(Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler,
/external/llvm-project/llvm/include/llvm/ObjectYAML/
Dyaml2obj.h62 bool convertYAML(Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler,
/external/llvm-project/lldb/unittests/Process/minidump/
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()
/external/llvm-project/llvm/unittests/Object/
DELFObjectFileTest.cpp305 yaml::Input YIn(Yaml); in toBinary() local
306 if (!yaml::convertYAML(YIn, OS, [](const Twine &Msg) {})) in toBinary()
/external/llvm-project/llvm/tools/llvm-ifs/
Dllvm-ifs.cpp338 yaml::Input YIn(YamlStr); in writeElfStub() local
342 return convertYAML(YIn, Out, ErrHandler) ? 0 : 1; in writeElfStub()
/external/llvm-project/llvm/unittests/Support/
DYAMLIOTest.cpp297 Input YIn(Serialized); in TEST() local
298 YIn >> Deserialized; in TEST()
299 ASSERT_FALSE(YIn.error()) in TEST()