Home
last modified time | relevance | path

Searched refs:glob (Results 51 - 75 of 191) sorted by relevance

12345678

/third_party/musl/porting/uniproton/kernel/include/
H A Dglob.h22 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 Dglob.h22 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 Dglob.h22 int glob(const char *__restrict, int, int (*)(const char *, int), glob_t *__restrict);
43 #define glob64 glob
/third_party/musl/include/
H A Dglob.h22 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 Dglob.c1 #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 Dfix_encoding.py27 for f in ROOT_DIR.glob('*.vcxproj'):
31 for f in ROOT_DIR.glob('*.vcxproj.filters'):
/third_party/jerryscript/tools/
H A Djs2c.py20 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 Dtest_parse_directory.py10 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 Dperf_test_runner.py19 import glob namespace
29 perftests_paths = glob.glob('out/*elease*')
/third_party/skia/third_party/externals/brotli/python/tests/
H A D_test_utils.py3 import glob namespace
47 TESTDATA_PATHS_FOR_DECOMPRESSION = glob.glob(
/third_party/skia/buildtools/reclient_cfgs/
H A Dfetch_reclient_cfgs.py9 import glob namespace
90 for cfg in glob.glob(os.path.join(THIS_DIR, toolchain,
/third_party/python/Lib/distutils/command/
H A Dbuild_py.py8 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 Dcommon.rs3 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 Dsndhdr.py257 import glob namespace
258 names = glob.glob(os.path.join(glob.escape(filename), '*'))
/third_party/python/Lib/test/
H A Dtest_unicode_file.py4 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.py55 for level, glob in LEVEL_GLOBS.items():
57 yield from expand_filenames([glob])
/third_party/python/Lib/test/test_tomllib/
H A Dtest_data.py19 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 Dlib.rs13 //! 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 Dunity_to_junit.py3 from glob import glob namespace
131 targets = list(map(lambda x: x.replace('\\', '/'), glob(targets_dir + '*.test*')))
H A Dunity_test_summary.py11 from glob import glob namespace
124 targets = list(map(lambda x: x.replace('\\', '/'), glob(targets_dir + '*.test*')))
/third_party/mbedtls/tests/scripts/
H A Dtest_config_script.py32 import glob namespace
49 filenames = glob.glob(pattern)
/third_party/node/deps/v8/third_party/inspector_protocol/
H A Droll.py10 import glob namespace
107 files += glob.glob(os.path.join(path, f))
/third_party/node/tools/inspector_protocol/
H A Droll.py11 import glob namespace
75 files += glob.glob(os.path.join(path, f))
/third_party/unity/auto/
H A Dstylize_as_junit.py11 from glob import glob namespace
149 targets = list(map(lambda x: x.replace('\\', '/'), glob(args.targets_dir + '*.test*')))
H A Dunity_test_summary.py11 from glob import glob namespace
124 targets = list(map(lambda x: x.replace('\\', '/'), glob(targets_dir + '**/*.test*', recursive=True)))

Completed in 9 milliseconds

12345678