Searched defs:YIn (Results 1 - 3 of 3) sorted by relevance

/external/llvm/tools/yaml2obj/
H A Dyaml2obj.cpp63 typedef int (*ConvertFuncPtr)(yaml::Input & YIn, raw_ostream &Out);
65 int convertYAML(yaml::Input & YIn, raw_ostream &Out, ConvertFuncPtr Convert) { argument
69 return Convert(YIn, Out);
70 } while (YIn.nextDocument());
109 yaml::Input YIn(Buf.get()->getBuffer());
111 int Res = convertYAML(YIn, Out->os(), Convert);
H A Dyaml2coff.cpp330 int yaml2coff(yaml::Input &YIn, raw_ostream &Out) { argument
332 YIn >> Doc;
333 if (YIn.error()) {
H A Dyaml2elf.cpp471 int yaml2elf(yaml::Input &YIn, raw_ostream &Out) { argument
473 YIn >> Doc;
474 if (YIn.error()) {

Completed in 1020 milliseconds