Searched refs:YIn (Results 1 – 4 of 4) sorted by relevance
/external/llvm/tools/yaml2obj/ |
D | yaml2obj.cpp | 63 typedef int (*ConvertFuncPtr)(yaml::Input & YIn, raw_ostream &Out); 65 static int convertYAML(yaml::Input &YIn, raw_ostream &Out, in convertYAML() argument 70 return Convert(YIn, Out); in convertYAML() 71 } while (YIn.nextDocument()); in convertYAML() 110 yaml::Input YIn(Buf.get()->getBuffer()); in main() local 112 int Res = convertYAML(YIn, Out->os(), Convert); in main()
|
D | yaml2obj.h | 21 int yaml2coff(llvm::yaml::Input &YIn, llvm::raw_ostream &Out); 22 int yaml2elf(llvm::yaml::Input &YIn, llvm::raw_ostream &Out);
|
D | yaml2elf.cpp | 561 int yaml2elf(yaml::Input &YIn, raw_ostream &Out) { in yaml2elf() argument 563 YIn >> Doc; in yaml2elf() 564 if (YIn.error()) { in yaml2elf()
|
D | yaml2coff.cpp | 528 int yaml2coff(yaml::Input &YIn, raw_ostream &Out) { in yaml2coff() argument 530 YIn >> Doc; in yaml2coff() 531 if (YIn.error()) { in yaml2coff()
|