Lines Matching refs:Out
55 void addEntry(const Value *V, formatted_raw_ostream &Out) {
56 Out.flush();
57 Lines.insert(std::make_pair(V, Out.getLine() + 1));
71 void printInfoComment(const Value &V, formatted_raw_ostream &Out) {
72 addEntry(&V, Out);
75 void emitFunctionAnnot(const Function *F, formatted_raw_ostream &Out) {
76 addEntry(F, Out);
527 OwningPtr<raw_fd_ostream> Out;
532 Out.reset(new raw_fd_ostream(Path.c_str(), error));
538 Out.reset(new raw_fd_ostream(*fd, true));
541 M->print(*Out, 0);
542 Out->close();