Home | History | Annotate | Download | only in report

Lines Matching defs:Dot

29 	case Dot:
501 // printDOT prints an annotated callgraph in DOT format.
572 // dotLegend generates the overall graph label for a report in DOT format.
645 // dotNode generates a graph node in DOT format.
686 // dotEdge generates a graph edge in DOT format.
718 // dotNodelets generates the DOT boxes for the node tags.
719 func dotNodelets(rpt *Report, rIndex int, n *node) (dot string) {
739 dot += fmt.Sprintf(`N%d_%d [label = "%s" fontsize=8 shape=box3d tooltip="%s"]`+"\n", rIndex, i, t.name, weight)
740 dot += fmt.Sprintf(`N%d -> N%d_%d [label=" %s" weight=100 tooltip="\L" labeltooltip="\L"]`+"\n", rIndex, rIndex, i, weight)
749 dot += fmt.Sprintf(`NN%d_%d [label = "%s" fontsize=8 shape=box3d tooltip="%s"]`+"\n", rIndex, i, t.name, weight)
750 dot += fmt.Sprintf(`N%d -> NN%d_%d [label=" %s" weight=100 tooltip="\L" labeltooltip="\L"]`+"\n", rIndex, rIndex, i, weight)
753 return dot
957 Dot
996 buildTree := o.CallTree && o.OutputFormat == Dot
1178 if o.OutputFormat == Dot {
1202 // For DOT output, count the tags as nodes since we will draw
1204 if o.OutputFormat == Dot {