Home | History | Annotate | Download | only in doc

Lines Matching refs:scan

18 // Although it can be used to scan the tree multiple times, it
21 scan chan string // directories generated by walk.
30 dirs.scan = make(chan string)
34 // Reset puts the scan back at the beginning.
39 // Next returns the next directory in the scan. The boolean
40 // is false when the scan is done.
47 path, ok := <-d.scan
62 close(d.scan)
66 // Each Go source directory it finds is delivered on d.scan.
110 d.scan <- dir