Home | History | Annotate | Download | only in finder

Lines Matching refs:subDirs

70 //          subdirs.
1390 var subdirs []string
1401 subdirs = append(subdirs, child.Name())
1413 entry := &DirEntries{Path: path, DirNames: subdirs, FileNames: subfiles}
1445 filter WalkFunc) (subDirs []*pathMap, filePaths []string) {
1456 subDirs = []*pathMap{}
1461 subDirs = make([]*pathMap, 0, len(dirNames))
1465 subDirs = append(subDirs, child)
1469 return subDirs, filePaths
1487 subDirs, filePaths := f.listMatches(node, filter)
1490 for _, child := range subDirs {
1503 for i := 0; i < len(subDirs); i++ {
1526 subDirs, filePaths := f.listMatches(currentNode, filter)
1528 nodes = append(nodes, subDirs...)