Searched refs:FindNamedAt (Results 1 – 3 of 3) sorted by relevance
/build/soong/finder/ |
D | finder_test.go | 99 foundPaths := finder.FindNamedAt(root, "findme.txt") 167 foundPaths := finder.FindNamedAt("", "findme.txt") 191 foundPaths := finder.FindNamedAt(root, "findme.txt") 237 foundPaths := finder.FindNamedAt("/tmp", "findme.txt") 268 foundPaths := finder.FindNamedAt("/tmp", "findme.txt") 294 foundPaths := finder.FindNamedAt("/tmp/a", "findme.txt") 317 foundPaths := finder.FindNamedAt("/tmp/a", "findme.txt") 344 foundPaths := finder.FindNamedAt("/tmp", "misc.txt") 375 foundPaths := finder.FindNamedAt("a", "hi.txt") 380 foundPaths = finder.FindNamedAt("/tmp/include", "hi.txt") [all …]
|
D | finder.go | 234 return f.FindNamedAt("/", fileName) 240 func (f *Finder) FindNamedAt(rootPath string, fileName string) []string { func
|
/build/soong/ui/build/ |
D | finder.go | 94 androidProductsMks := f.FindNamedAt("device", "AndroidProducts.mk") 95 androidProductsMks = append(androidProductsMks, f.FindNamedAt("vendor", "AndroidProducts.mk")...) 96 androidProductsMks = append(androidProductsMks, f.FindNamedAt("product", "AndroidProducts.mk")...) 108 owners := f.FindNamedAt(".", "OWNERS") 114 testMappings := f.FindNamedAt(".", "TEST_MAPPING") 120 androidBps := f.FindNamedAt(".", "Android.bp") 121 androidBps = append(androidBps, f.FindNamedAt("build/blueprint", "Blueprints")...)
|