Lines Matching refs:rootPath
243 func (f *Finder) FindNamedAt(rootPath string, fileName string) []string {
254 return f.FindMatching(rootPath, filter)
265 func (f *Finder) FindFirstNamedAt(rootPath string, fileName string) []string {
279 return f.FindMatching(rootPath, filter)
286 func (f *Finder) FindMatching(rootPath string, filter WalkFunc) []string {
292 isRel = !filepath.IsAbs(rootPath)
294 rootPath = filepath.Join(workingDir, rootPath)
297 rootPath = filepath.Clean(rootPath)
304 node := f.nodes.GetNode(rootPath, false)
307 rootPath, f.cacheMetadata.Config.CacheParams)
313 f.verbosef("Finder finding %v using cache\n", rootPath)
324 len(results), rootPath, time.Since(scanStart))