Lines Matching refs:pattern
98 Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (GlobResult, error)
99 glob(pattern string) (matches []string, err error)
197 func (fs *osFs) Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (GlobResult, e…
198 return startGlob(fs, pattern, excludes, follow)
201 func (fs *osFs) glob(pattern string) ([]string, error) {
202 paths, err := filepath.Glob(fs.toAbs(pattern))
349 func (m *mockFs) Glob(pattern string, excludes []string, follow ShouldFollowSymlinks) (GlobResult, …
350 return startGlob(m, pattern, excludes, follow)
365 func (m *mockFs) glob(pattern string) ([]string, error) {
366 dir, file := saneSplit(pattern)
379 if (f == "." || f == "/") && f != pattern {