/third_party/musl/porting/uniproton/kernel/include/ |
H A D | glob.h | 22 int glob(const char *__restrict, int, int (*)(const char *, int), glob_t *__restrict); 43 #define glob64 glob
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | glob.h | 22 int glob(const char *__restrict, int, int (*)(const char *, int), glob_t *__restrict); 43 #define glob64 glob
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | glob.h | 22 int glob(const char *__restrict, int, int (*)(const char *, int), glob_t *__restrict); 43 #define glob64 glob
|
/third_party/musl/include/ |
H A D | glob.h | 22 int glob(const char *__restrict, int, int (*)(const char *, int), glob_t *__restrict); 43 #define glob64 glob
|
/third_party/musl/libc-test/src/api/ |
H A D | glob.c | 1 #include <glob.h> 25 {int(*p)(const char*restrict,int,int(*)(const char*,int),glob_t*restrict) = glob;} in f()
|
/third_party/python/PCbuild/ |
H A D | fix_encoding.py | 27 for f in ROOT_DIR.glob('*.vcxproj'): 31 for f in ROOT_DIR.glob('*.vcxproj.filters'):
|
/third_party/jerryscript/tools/ |
H A D | js2c.py | 20 import glob namespace 107 files = glob.glob(os.path.join(script_args.js_source_path, '*.js'))
|
/third_party/python/Tools/peg_generator/scripts/ |
H A D | test_parse_directory.py | 10 from glob import glob, escape namespace 112 for file in sorted(glob(os.path.join(escape(directory), f"**/*.py"), recursive=True)):
|
/third_party/skia/third_party/externals/dawn/scripts/ |
H A D | perf_test_runner.py | 19 import glob namespace 29 perftests_paths = glob.glob('out/*elease*')
|
/third_party/skia/third_party/externals/brotli/python/tests/ |
H A D | _test_utils.py | 3 import glob namespace 47 TESTDATA_PATHS_FOR_DECOMPRESSION = glob.glob(
|
/third_party/skia/buildtools/reclient_cfgs/ |
H A D | fetch_reclient_cfgs.py | 9 import glob namespace 90 for cfg in glob.glob(os.path.join(THIS_DIR, toolchain,
|
/third_party/python/Lib/distutils/command/ |
H A D | build_py.py | 8 import glob namespace 128 filelist = glob.glob(os.path.join(glob.escape(src_dir), convert_path(pattern))) 219 module_files = glob.glob(os.path.join(glob.escape(package_dir), "*.py"))
|
/third_party/rust/crates/clang-sys/build/ |
H A D | common.rs | 3 extern crate glob; 11 use glob::{MatchOptions, Pattern}; 185 /// Finds the files in a directory that match one or more filename glob patterns 189 // special meaning in glob patterns (e.g., `[` or `]`). in search_directory() 193 // Join the escaped directory to the filename glob patterns to obtain in search_directory() 194 // complete glob patterns for the files being searched for. in search_directory() 205 .map(|p| glob::glob_with(&p, options)) in search_directory() 226 /// match one or more filename glob patterns and returns the paths to and 245 /// filename glob patterns and returns the paths to and filenames of those files. 311 if let Ok(directories) = glob in search_libclang_directories() [all...] |
/third_party/python/Lib/ |
H A D | sndhdr.py | 257 import glob namespace 258 names = glob.glob(os.path.join(glob.escape(filename), '*'))
|
/third_party/python/Lib/test/ |
H A D | test_unicode_file.py | 4 import os, glob, time, shutil namespace 43 # Filename should appear in glob output 45 os.path.abspath(filename)==os.path.abspath(glob.glob(glob.escape(filename))[0]))
|
/third_party/python/Tools/c-analyzer/cpython/ |
H A D | _files.py | 55 for level, glob in LEVEL_GLOBS.items(): 57 yield from expand_filenames([glob])
|
/third_party/python/Lib/test/test_tomllib/ |
H A D | test_data.py | 19 VALID_FILES = tuple((DATA_DIR / "valid").glob("**/*.toml")) 32 INVALID_FILES = tuple((DATA_DIR / "invalid").glob("**/*.toml"))
|
/third_party/rust/crates/glob/src/ |
H A D | lib.rs | 13 //! The `glob` and `glob_with` functions allow querying the filesystem for all 14 //! files that match a particular pattern (similar to the libc `glob` function). 21 //! `glob`/`fnmatch` functions. 28 //! use glob::glob; 30 //! for entry in glob("/media/**/*.jpg").expect("Failed to read glob pattern") { 43 //! use glob::glob_with; 44 //! use glob::MatchOptions; 61 html_root_url = "https://docs.rs/glob/0. 160 pub fn glob(pattern: &str) -> Result<Paths, PatternError> { glob() functions [all...] |
/third_party/cJSON/tests/unity/auto/ |
H A D | unity_to_junit.py | 3 from glob import glob namespace 131 targets = list(map(lambda x: x.replace('\\', '/'), glob(targets_dir + '*.test*')))
|
H A D | unity_test_summary.py | 11 from glob import glob namespace 124 targets = list(map(lambda x: x.replace('\\', '/'), glob(targets_dir + '*.test*')))
|
/third_party/mbedtls/tests/scripts/ |
H A D | test_config_script.py | 32 import glob namespace 49 filenames = glob.glob(pattern)
|
/third_party/node/deps/v8/third_party/inspector_protocol/ |
H A D | roll.py | 10 import glob namespace 107 files += glob.glob(os.path.join(path, f))
|
/third_party/node/tools/inspector_protocol/ |
H A D | roll.py | 11 import glob namespace 75 files += glob.glob(os.path.join(path, f))
|
/third_party/unity/auto/ |
H A D | stylize_as_junit.py | 11 from glob import glob namespace 149 targets = list(map(lambda x: x.replace('\\', '/'), glob(args.targets_dir + '*.test*')))
|
H A D | unity_test_summary.py | 11 from glob import glob namespace 124 targets = list(map(lambda x: x.replace('\\', '/'), glob(targets_dir + '**/*.test*', recursive=True)))
|