HomeSort by relevance Sort by last modified time
    Searched refs:Glob (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/jsoncpp/scons-tools/
globtool.py 5 def Glob( env, includes = None, excludes = None, dir = '.' ):
6 """Adds Glob( includes = Split( '*' ), excludes = None, dir = '.')
9 Glob both the file-system files.
15 sources = env.Glob( ("*.cpp", '*.h'), "~*.cpp", "#src" )
47 Environment.Glob = Glob
  /build/kati/
fileutil.h 45 void Glob(const char* pat, vector<string>** files);
fileutil.cc 21 #include <glob.h>
169 glob(pat, 0, NULL, &gl);
201 void Glob(const char* pat, vector<string>** files) {
  /prebuilts/go/darwin-x86/src/path/filepath/
match_test.go 135 matches, err := Glob(pattern)
137 t.Errorf("Glob error for %q: %s", pattern, err)
141 t.Errorf("Glob(%#q) = %#v want %v", pattern, matches, result)
145 matches, err := Glob(pattern)
147 t.Errorf("Glob error for %q: %s", pattern, err)
151 t.Errorf("Glob(%#q) = %#v want []", pattern, matches)
157 _, err := Glob("[7]")
166 Glob(`\\?\C:\*`)
204 matches, err := Glob(dest)
209 t.Errorf("Glob(%#q) = %#v want %v", dest, matches, dest
    [all...]
match.go 226 // Glob returns the names of all files matching pattern or nil
231 // Glob ignores file system errors such as I/O errors reading directories.
234 func Glob(pattern string) (matches []string, err error) {
251 return glob(dir, file, nil)
260 m, err = Glob(dir)
265 matches, err = glob(d, file, matches)
273 // cleanGlobPath prepares path for glob matching.
305 // glob searches for files matching pattern in the directory dir
309 func glob(dir, pattern string, matches []string) (m []string, e error) { func
  /prebuilts/go/linux-x86/src/path/filepath/
match_test.go 135 matches, err := Glob(pattern)
137 t.Errorf("Glob error for %q: %s", pattern, err)
141 t.Errorf("Glob(%#q) = %#v want %v", pattern, matches, result)
145 matches, err := Glob(pattern)
147 t.Errorf("Glob error for %q: %s", pattern, err)
151 t.Errorf("Glob(%#q) = %#v want []", pattern, matches)
157 _, err := Glob("[7]")
166 Glob(`\\?\C:\*`)
204 matches, err := Glob(dest)
209 t.Errorf("Glob(%#q) = %#v want %v", dest, matches, dest
    [all...]
match.go 226 // Glob returns the names of all files matching pattern or nil
231 // Glob ignores file system errors such as I/O errors reading directories.
234 func Glob(pattern string) (matches []string, err error) {
251 return glob(dir, file, nil)
260 m, err = Glob(dir)
265 matches, err = glob(d, file, matches)
273 // cleanGlobPath prepares path for glob matching.
305 // glob searches for files matching pattern in the directory dir
309 func glob(dir, pattern string, matches []string) (m []string, e error) { func
  /device/linaro/bootloader/edk2/StdLib/PosixLib/
PosixLib.inf 39 Glob/glob.c
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug387.go 25 switch _, err := filepath.Glob(filepath.Join(".", "vnc")); {
  /prebuilts/go/linux-x86/test/fixedbugs/
bug387.go 25 switch _, err := filepath.Glob(filepath.Join(".", "vnc")); {
  /toolchain/binutils/binutils-2.25/gold/
script.h 267 // Fast lookup information for a glob pattern.
268 struct Glob
270 Glob()
274 Glob(const Version_expression* e, const Version_tree* v, bool ig)
288 typedef std::vector<Glob> Globs;
313 // A vector of glob patterns mapping to Version_trees.
  /build/blueprint/pathtools/
fs.go 60 Glob(pattern string, excludes []string) (matches, dirs []string, err error)
61 glob(pattern string) (matches []string, err error)
83 return false, fmt.Errorf("unexpected error after glob: %s", err)
88 func (fs osFs) Glob(pattern string, excludes []string) (matches, dirs []string, err error) {
92 func (osFs) glob(pattern string) ([]string, error) { func
93 return filepath.Glob(pattern)
135 func (m *mockFs) Glob(pattern string, excludes []string) (matches, dirs []string, err error) {
139 func (m *mockFs) glob(pattern string) ([]string, error) { func
glob.go 31 // Glob returns the list of files that match the given pattern but
33 // that were searched to construct the file list. The supported glob and
34 // exclude patterns are equivalent to filepath.Glob, with an extension that
35 // recursive glob (** matching zero or more complete path entries) is supported.
36 // Glob also returns a list of directories that were searched.
41 func Glob(pattern string, excludes []string) (matches, dirs []string, err error) {
49 matches, dirs, err = glob(fs, pattern, false)
64 // glob is a recursive helper function to handle globbing each level of the pattern individually,
65 // allowing searched directories to be tracked. Also handles the recursive glob pattern, **.
66 func glob(fs FileSystem, pattern string, hasRecursive bool) (matches, dirs []string, err error) func
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
vet_test.go 98 gos, err := filepath.Glob(filepath.Join(dataDir, "*.go"))
124 gos, err := filepath.Glob(filepath.Join(asmDir, "*.go"))
128 asms, err := filepath.Glob(filepath.Join(asmDir, "*.s"))
151 gos, err := filepath.Glob(filepath.Join("testdata", dir, "*.go"))
  /prebuilts/go/linux-x86/src/cmd/vet/
vet_test.go 98 gos, err := filepath.Glob(filepath.Join(dataDir, "*.go"))
124 gos, err := filepath.Glob(filepath.Join(asmDir, "*.go"))
128 asms, err := filepath.Glob(filepath.Join(asmDir, "*.s"))
151 gos, err := filepath.Glob(filepath.Join("testdata", dir, "*.go"))
  /build/blueprint/
glob.go 33 panic(fmt.Errorf("Mismatched patterns %q and %q for glob file %q", pattern, g.Pattern, fileName))
36 panic(fmt.Errorf("Mismatched excludes %v and %v for glob file %q", excludes, g.Excludes, fileName))
40 func (c *Context) glob(pattern string, excludes []string) ([]string, error) { func
43 // Try to get existing glob from the stored results
49 // Glob has already been done, double check it is identical
55 files, deps, err := c.fs.Glob(pattern, excludes)
113 return ret + ".glob"
  /build/kati/testcase/
gen_testcase_parse_benchmark.go 96 matches, err := filepath.Glob("testcase/*.mk")
  /build/soong/cc/
ndk_headers.go 65 // List of headers to install. Glob compatible. Common case is "include/**/*.h".
194 srcFiles := ctx.Glob(filepath.Join(fromSrcPath.String(), "**/*.h"), nil)
204 ctx.ModuleErrorf("glob %q matched zero files", m.properties.From)
216 // ctx.Glob doesn't follow symlinks, so we need to do this ourselves so we correctly
220 depsGlob := ctx.Glob(filepath.Join(depsPath.String(), "**/*"), nil)
llndk_library.go 88 srcFiles := ctx.Glob(filepath.Join(srcDir.String(), "**/*.h"), nil)
  /build/soong/java/
resources.go 59 dirs := ctx.Glob(resourceDir.String(), nil)
app.go 206 // use glob to create a filelist.
210 newDeps := ctx.Glob(filepath.Join(d.String(), "**/*"), aaptIgnoreFilenames)
217 newDeps := ctx.Glob(filepath.Join(d.String(), "**/*"), aaptIgnoreFilenames)
  /device/linaro/bootloader/edk2/StdLib/
StdLib.dsc 136 StdLib/PosixLib/Glob/LibGlob.inf
StdLib.inc 57 LibGlob|StdLib/PosixLib/Glob/LibGlob.inf
  /prebuilts/go/darwin-x86/src/text/template/
helper.go 108 // processed by filepath.Glob and must match at least one file. ParseGlob is
121 filenames, err := filepath.Glob(pattern)
  /prebuilts/go/linux-x86/src/text/template/
helper.go 108 // processed by filepath.Glob and must match at least one file. ParseGlob is
121 filenames, err := filepath.Glob(pattern)

Completed in 568 milliseconds

1 2 3