Lines Matching defs:Bin
556 Binary *Bin = ChildOrErr->get();
557 if (ObjectFile *Obj = dyn_cast<ObjectFile>(Bin))
559 else if (COFFImportFile *Imp = dyn_cast<COFFImportFile>(Bin))
563 Bin->getFileName() +
632 std::unique_ptr<Binary> Bin = std::move(*BinaryOrErr);
633 if (Archive *Arc = dyn_cast<Archive>(Bin.get()))
636 dyn_cast<MachOUniversalBinary>(Bin.get()))
638 else if (COFFObjectFile *Obj = dyn_cast<COFFObjectFile>(Bin.get()))
640 else if (ObjectFile *Obj = dyn_cast<ObjectFile>(Bin.get()))
642 else if (COFFImportFile *Import = dyn_cast<COFFImportFile>(Bin.get()))
644 else if (WindowsResource *WinRes = dyn_cast<WindowsResource>(Bin.get()))
650 OwningBinary<Binary>(std::move(Bin), std::move(Buffer)));