Lines Matching refs:OS
72 virtual void print(raw_ostream &OS, const Module *) const {
73 OS << "CallGraph Root is: ";
75 OS << F->getName() << "\n";
77 OS << "<<null function: 0x" << getRoot() << ">>\n";
80 CallGraph::print(OS, 0);
198 void CallGraph::print(raw_ostream &OS, Module*) const {
200 I->second->print(OS);
255 void CallGraphNode::print(raw_ostream &OS) const {
257 OS << "Call graph node for function: '" << F->getName() << "'";
259 OS << "Call graph node <<null function>>";
261 OS << "<<" << this << ">> #uses=" << getNumReferences() << '\n';
264 OS << " CS<" << I->first << "> calls ";
266 OS << "function '" << FI->getName() <<"'\n";
268 OS << "external node\n";
270 OS << '\n';