type internal/profile.Nodes

15 uses

	internal/profile (current package)
		graph.go#L37: type Nodes []*Node
		graph.go#L64: 	Nodes Nodes
		graph.go#L307: func selectNodesForGraph(nodes Nodes, dropNegative bool) *Graph {
		graph.go#L309: 	gNodes := make(Nodes, 0, len(nodes))
		graph.go#L343: 	s []Nodes          // a slice for small sequential IDs
		graph.go#L344: 	m map[uint64]Nodes // fallback for large IDs (unlikely)
		graph.go#L347: func (l *locationMap) add(id uint64, n Nodes) {
		graph.go#L355: func (l locationMap) get(id uint64) Nodes {
		graph.go#L366: func CreateNodes(prof *Profile, o *Options) (Nodes, locationMap) {
		graph.go#L367: 	locations := locationMap{make([]Nodes, len(prof.Location)+1), make(map[uint64]Nodes)}
		graph.go#L374: 		nodes := make(Nodes, len(lines))
		graph.go#L383: func (nm NodeMap) nodes() Nodes {
		graph.go#L384: 	nodes := make(Nodes, 0, len(nm))
		graph.go#L417: func (ns Nodes) Sum() (flat int64, cum int64) {