HomeSort by relevance Sort by last modified time
    Searched defs:glob (Results 1 - 25 of 219) sorted by null

1 2 3 4 5 6 7 8 9

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue16193.go 7 // The compiler used the name "glob" as the function holding a global
8 // function literal, colliding with an actual function named "glob".
12 func glob() { func
24 glob()
  /prebuilts/go/linux-x86/test/fixedbugs/
issue16193.go 7 // The compiler used the name "glob" as the function holding a global
8 // function literal, colliding with an actual function named "glob".
12 func glob() { func
24 glob()
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
tls-longplt.s 42 @ glob used by tls-longplt-lib
43 .type glob, %object
44 .globl glob
45 glob: .space 4 label
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
got-dump-1.s 1 .global glob
2 .ent glob
3 glob: label
7 lw $4,%call16(glob)($28)
9 .end glob
got-dump-2.s 1 .global glob
2 .ent glob
3 glob: label
7 ld $4,%call16(glob)($28)
9 .end glob
  /external/compiler-rt/test/tsan/
pthread_atfork_deadlock.c 9 int glob = 0; variable
13 glob++;
19 glob++;
27 glob++;
  /external/protobuf/js/
gulpfile.js 3 var glob = require('glob'); variable
67 glob.sync('*_test.js').forEach(addTestFile);
68 glob.sync('binary/*_test.js').forEach(addTestFile);
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-spu/
fixup.s 3 .global glob
17 .long 0, 0, 0, glob
20 glob: label
pic.s 3 .global glob
42 ila 8,glob
43 .reloc .,SPU_ADD_PIC,glob
67 glob: label
  /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"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
glob.py 8 __all__ = ["glob", "iglob"]
10 def glob(pathname): function
45 # These 2 helper functions non-recursively glob inside a literal directory.
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_filesystem_glob.py 15 """A fake glob module implementation that uses fake_filesystem for unit tests.
19 glob module.
28 >>> glob_module.glob('*')
30 >>> glob_module.glob('???-file')
35 import glob
42 """Uses a FakeFilesystem to provide a fake replacement for glob module."""
45 """Construct fake glob module using the fake filesystem.
50 self._glob_module = glob
54 def glob(self, pathname): # pylint: disable-msg=C6409 member in class:FakeGlobModule
63 List of strings matching the glob pattern
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-global-ctor-dtor.cpp 12 A glob; variable
  /external/compiler-rt/test/asan/TestCases/Posix/
init-order-pthread-create.cc 21 void *glob = bar((void*)0x1234, false); variable
25 void **glob = (void**)arg; local
28 printf("glob is now: %p\n", *glob);
38 pthread_create(&p, 0, poll, &glob);
40 printf("glob poller is started");
45 printf("%p %p\n", glob, glob2);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
glob.py 16 __all__ = ["glob", "iglob"]
18 def glob(pathname): function
62 # These 2 helper functions non-recursively glob inside a literal directory.
  /prebuilts/gdb/linux-x86/lib/python2.7/
glob.py 16 __all__ = ["glob", "iglob"]
18 def glob(pathname): function
62 # These 2 helper functions non-recursively glob inside a literal directory.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
glob.py 16 __all__ = ["glob", "iglob"]
18 def glob(pathname): function
62 # These 2 helper functions non-recursively glob inside a literal directory.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
glob.py 16 __all__ = ["glob", "iglob"]
18 def glob(pathname): function
62 # These 2 helper functions non-recursively glob inside a literal directory.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
absrel.s 5 .global glob
13 glob: label
18 mov glob, %eax
29 mov glob - abs, %eax
40 mov glob - abs2,%eax
47 mov glob - loc, %eax
48 mov glob - loc2,%eax
pcrel.s 5 .global glob
13 glob: label
18 jmp glob
29 jmp glob - abs
40 jmp glob - abs2
47 jmp glob - loc
48 jmp glob - loc2
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_glob.py 3 import glob
35 def glob(self, *parts): member in class:GlobTests
41 res = glob.glob(p)
42 self.assertEqual(list(glob.iglob(p)), res)
50 eq(self.glob('a'), [self.norm('a')])
51 eq(self.glob('a', 'D'), [self.norm('a', 'D')])
52 eq(self.glob('aab'), [self.norm('aab')])
53 eq(self.glob('zymurgy'), [])
60 u1 = glob.glob(u'*')
    [all...]
  /prebuilts/go/darwin-x86/src/path/filepath/
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.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

Completed in 1151 milliseconds

1 2 3 4 5 6 7 8 9