Lines Matching full:filepath
19 "path/filepath"
96 pattern: filepath.Join(pwd, "testdata/c/*/*.ext"),
98 filepath.Join(pwd, "testdata/c/f/f.ext"),
99 filepath.Join(pwd, "testdata/c/g/g.ext"),
102 filepath.Join(pwd, "testdata/c"),
103 filepath.Join(pwd, "testdata/c/f"),
104 filepath.Join(pwd, "testdata/c/g"),
105 filepath.Join(pwd, "testdata/c/h"),
152 pattern: filepath.Join(pwd, "testdata/**/*.ext"),
154 filepath.Join(pwd, "testdata/d.ext"),
155 filepath.Join(pwd, "testdata/e.ext"),
156 filepath.Join(pwd, "testdata/c/f/f.ext"),
157 filepath.Join(pwd, "testdata/c/g/g.ext"),
160 filepath.Join(pwd, "testdata"),
161 filepath.Join(pwd, "testdata/a"),
162 filepath.Join(pwd, "testdata/a/a"),
163 filepath.Join(pwd, "testdata/a/b"),
164 filepath.Join(pwd, "testdata/b"),
165 filepath.Join(pwd, "testdata/c"),
166 filepath.Join(pwd, "testdata/c/f"),
167 filepath.Join(pwd, "testdata/c/g"),
168 filepath.Join(pwd, "testdata/c/h"),
232 pattern: filepath.Join(pwd, "testdata/c/*/*.ext"),
233 excludes: []string{filepath.Join(pwd, "testdata/c/*/f.ext")},
235 filepath.Join(pwd, "testdata/c/g/g.ext"),
238 filepath.Join(pwd, "testdata/c"),
239 filepath.Join(pwd, "testdata/c/f"),
240 filepath.Join(pwd, "testdata/c/g"),
241 filepath.Join(pwd, "testdata/c/h"),
245 pattern: filepath.Join(pwd, "testdata/c/*/*.ext"),
246 excludes: []string{filepath.Join(pwd, "testdata/c/f/*.ext")},
248 filepath.Join(pwd, "testdata/c/g/g.ext"),
251 filepath.Join(pwd, "testdata/c"),
252 filepath.Join(pwd, "testdata/c/f"),
253 filepath.Join(pwd, "testdata/c/g"),
254 filepath.Join(pwd, "testdata/c/h"),
304 pattern: filepath.Join(pwd, "testdata/c/*/*.ext"),
305 excludes: []string{filepath.Join(pwd, "testdata/**/f.ext")},
307 filepath.Join(pwd, "testdata/c/g/g.ext"),
310 filepath.Join(pwd, "testdata/c"),
311 filepath.Join(pwd, "testdata/c/f"),
312 filepath.Join(pwd, "testdata/c/g"),
313 filepath.Join(pwd, "testdata/c/h"),