Lines Matching refs:follow
484 def print_follow_graph(self, ofile, follow, visited = None): argument
489 for f in follow:
493 while len(follow) > 0:
498 if e.src.nicename in follow:
502 visited.extend(follow)
503 follow = []
506 follow.append(n.nicename)
508 for f in follow:
518 def print_graph(self, ofile, follow): argument
890 if args.follow and len(args.follow) > 0:
892 graph.print_follow_graph(args.graph, args.follow)
895 graph.print_graph(args.graph, args.follow)