Lines Matching refs:graphs
46 graphs := []*Graph{
55 for _, g := range graphs {
67 for _, g := range graphs {
75 printFinalStats(graphs)
76 display(graphs)
163 func printFinalStats(graphs []*Graph) {
164 for i := 1; i < len(graphs[0].Headers); i++ {
165 fmt.Printf("%-12v%16v%16v%16v\n", "", graphs[0].Headers[0], graphs[0].Headers[i], "diff")
166 for _, g := range graphs {
183 func display(graphs []*Graph) {
188 if err := htmlTemplate.Execute(outf, graphs); err != nil {