Home
last modified time | relevance | path

Searched refs:paths (Results 101 - 125 of 430) sorted by relevance

12345678910>>...18

/third_party/python/Lib/importlib/resources/
H A Dreaders.py45 # for non-existent paths.
61 def __init__(self, *paths):
62 self._paths = list(map(pathlib.Path, remove_duplicates(paths)))
86 # first try to find child in current paths
103 paths = ', '.join(f"'{path}'" for path in self._paths)
104 return f'MultiplexedPath({paths})'
/third_party/skia/third_party/externals/brotli/python/tests/
H A D_test_utils.py71 paths = TESTDATA_PATHS_FOR_DECOMPRESSION
73 paths = TESTDATA_PATHS
86 for testdata in paths:
/third_party/skia/tools/
H A Dcheck-headers-self-sufficient106 paths = [os.path.relpath(os.path.abspath(arg), skia_dir) for arg in argv[1:]]
110 paths = [path for path in subprocess.check_output(['git', 'ls-files']).splitlines()
112 compile_headers(paths)
/third_party/node/deps/v8/tools/profview/
H A Dprofile-utils.js131 function addFrameToFrameList(paths, pathIndex, depth) {
133 if (paths.length > 0 &&
134 paths[paths.length - 3] + 1 === pathIndex &&
135 paths[paths.length - 2] === depth) {
136 paths[paths.length - 1]++;
138 paths.push(pathIndex, depth, 1);
/third_party/skia/third_party/externals/zlib/google/
H A Dzip_writer.h46 // Writes the files at |paths| to the ZIP file and closes this Zip file.
50 bool WriteEntries(const std::vector<base::FilePath>& paths);
64 // Adds the files at |paths| to the ZIP file. These FilePaths must be relative
66 bool AddEntries(const std::vector<base::FilePath>& paths);
79 // Path to the directory entry paths are relative to.
/third_party/alsa-utils/axfer/
H A Dxfer.c99 if (xfer->paths) { in xfer_context_destroy()
101 free(xfer->paths[i]); in xfer_context_destroy()
102 free(xfer->paths); in xfer_context_destroy()
105 xfer->paths = NULL; in xfer_context_destroy()
/kernel/linux/linux-5.10/drivers/staging/sm750fb/
H A Dsm750_hw.c198 if (output->paths & sm750_panel) in hw_sm750_output_setMode()
200 if (output->paths & sm750_crt) in hw_sm750_output_setMode()
205 if (output->paths & sm750_panel) in hw_sm750_output_setMode()
207 if (output->paths & sm750_crt) in hw_sm750_output_setMode()
414 if (output->paths & sm750_crt) { in hw_sm750le_setBLANK()
459 if (output->paths & sm750_crt) { in hw_sm750_setBLANK()
468 if (output->paths & sm750_panel) { in hw_sm750_setBLANK()
/kernel/linux/linux-6.6/drivers/staging/sm750fb/
H A Dsm750_hw.c198 if (output->paths & sm750_panel) in hw_sm750_output_setMode()
200 if (output->paths & sm750_crt) in hw_sm750_output_setMode()
205 if (output->paths & sm750_panel) in hw_sm750_output_setMode()
207 if (output->paths & sm750_crt) in hw_sm750_output_setMode()
414 if (output->paths & sm750_crt) { in hw_sm750le_setBLANK()
459 if (output->paths & sm750_crt) { in hw_sm750_setBLANK()
468 if (output->paths & sm750_panel) { in hw_sm750_setBLANK()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
H A DPseudoLocales.java139 // But since we don't want to filter paths which come from the "root" locale (such as in PseudoSupplier()
140 // aliases) then we need to find the union of "English" paths we expect to filter. in PseudoSupplier()
151 ImmutableSet.Builder<CldrPath> paths = ImmutableSet.builder(); in getUnresolvedPaths()
153 src.getDataForLocale(id, UNRESOLVED).accept(ARBITRARY, v -> paths.add(v.getPath())); in getUnresolvedPaths()
155 return paths.build(); in getUnresolvedPaths()
196 // These paths were mostly derived from looking at the previous implementation's behaviour
215 // The expectation is that all non-alias paths with values under these roots are "date/time
224 private static PathMatcher ldml(String paths) { in ldml() argument
225 return LDML.withSuffix(paths); in ldml()
228 private static Predicate<CldrPath> matchAnyLdmlPrefix(String... paths) { in matchAnyLdmlPrefix() argument
[all...]
/third_party/littlefs/scripts/
H A Dcoverage.py15 def collect(paths, **args):
23 for path in paths:
81 paths = []
87 paths.append(path)
89 if not paths:
93 results = collect(paths, **args)
294 or list of paths. *.info files will be merged to show the total \
/third_party/python/Lib/test/
H A Dtest_embed.py689 paths = pythonpath_env.split(os.path.pathsep)
690 expected['module_search_paths'] = [*paths, *expected['module_search_paths']]
1177 paths = config['config']['module_search_paths']
1180 'module_search_paths': paths,
1190 env = {'TESTPATH': os.path.pathsep.join(paths)}
1199 paths = config['config']['module_search_paths']
1203 'module_search_paths': paths,
1217 env = {'TESTPATH': os.path.pathsep.join(paths)}
1271 paths = config['config']['module_search_paths']
1272 paths_str = os.path.pathsep.join(paths)
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/opp/
H A Dof.c380 struct icc_path **paths; in dev_pm_opp_of_find_icc_paths() local
407 paths = kcalloc(num_paths, sizeof(*paths), GFP_KERNEL); in dev_pm_opp_of_find_icc_paths()
408 if (!paths) { in dev_pm_opp_of_find_icc_paths()
413 paths[i] = of_icc_get_by_index(dev, i); in dev_pm_opp_of_find_icc_paths()
414 if (IS_ERR(paths[i])) { in dev_pm_opp_of_find_icc_paths()
415 ret = PTR_ERR(paths[i]); in dev_pm_opp_of_find_icc_paths()
424 opp_table->paths = paths; in dev_pm_opp_of_find_icc_paths()
431 icc_put(paths[ in dev_pm_opp_of_find_icc_paths()
[all...]
/kernel/linux/linux-5.10/drivers/opp/
H A Dof.c369 struct icc_path **paths; in dev_pm_opp_of_find_icc_paths() local
394 paths = kcalloc(num_paths, sizeof(*paths), GFP_KERNEL); in dev_pm_opp_of_find_icc_paths()
395 if (!paths) in dev_pm_opp_of_find_icc_paths()
399 paths[i] = of_icc_get_by_index(dev, i); in dev_pm_opp_of_find_icc_paths()
400 if (IS_ERR(paths[i])) { in dev_pm_opp_of_find_icc_paths()
401 ret = PTR_ERR(paths[i]); in dev_pm_opp_of_find_icc_paths()
411 opp_table->paths = paths; in dev_pm_opp_of_find_icc_paths()
418 icc_put(paths[ in dev_pm_opp_of_find_icc_paths()
[all...]
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/
H A Dtest_corpus.js19 function testSoftSkipped(count, softSkipped, paths) {
25 assert.deepEqual(paths, cases);
90 it('caches relative paths', () => {
/third_party/node/deps/v8/tools/dev/
H A Dgen-tags.py75 paths = ["include", "src", "test"]
81 for path in paths:
/third_party/weex-loader/
H A Dmodule-source.js36 fs.readdir(src, function(err, paths) {
40 paths.forEach(function(_path) {
/third_party/node/lib/internal/modules/
H A Dhelpers.js45 * Cache for storing resolved real paths of modules.
46 * In order to minimize unnecessary lstat() calls, this cache is a list of known-real paths.
194 * The `paths` method that gets attached to module-scope `require`.
197 function paths(request) { function
202 resolve.paths = paths;
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/
H A Dfallback.pm35 This is similar to L<lib>, except the paths are I<appended> to @INC rather
43 non-Unix users must first translate their file paths to Unix conventions.
119 L<FindBin> - optional module which deals with paths relative to the source
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/regex/
H A DSubgroupOptimizer.java144 private final List<RangeSpecification> paths = new ArrayList<>(); field in SubgroupOptimizer.SubgraphExtractionVisitor
154 return v.splitHappens ? Optional.of(RangeTree.from(v.paths)) : Optional.empty(); in extractSubgraph()
165 // Potentially emit paths for any terminating node (not just the end of the graph). We have in visit()
170 paths.add(path); in visit()
172 // Records that there were other paths not in the subgroup (since we only want to return in visit()
178 // Recurse with the flag set to emit paths once we hit the terminal node (note that the in visit()
/third_party/openssl/util/perl/OpenSSL/
H A Dfallback.pm35 This is similar to L<lib>, except the paths are I<appended> to @INC rather
43 non-Unix users must first translate their file paths to Unix conventions.
119 L<FindBin> - optional module which deals with paths relative to the source
/third_party/skia/gm/
H A Dinversepaths.cpp67 SkPath (*paths[])(SkScalar, SkScalar, SkScalar) = { member
115 pathIndex < SK_ARRAY_COUNT(paths); in DEF_SIMPLE_GM()
122 SkPath path = paths[pathIndex](cx, cy, size); in DEF_SIMPLE_GM()
/third_party/ffmpeg/libavfilter/
H A Daf_ladspa.c509 char *paths = av_strdup(getenv("LADSPA_PATH")); in init() local
513 if (paths) { in init()
514 p = paths; in init()
521 av_free(paths); in init()
522 if (!s->dl_handle && home_path && (paths = av_asprintf("%s/.ladspa", home_path))) { in init()
523 s->dl_handle = try_load(paths, s->dl_name); in init()
524 av_free(paths); in init()
527 if (!s->dl_handle && home_path && (paths = av_asprintf("%s/.ladspa/lib", home_path))) { in init()
528 s->dl_handle = try_load(paths, s->dl_name); in init()
529 av_free(paths); in init()
[all...]
/third_party/toybox/lib/
H A Dportability.c200 not->paths = xmalloc(max * sizeof(char *)); in xnotify_init()
214 not->paths[not->count] = path; in xnotify_add()
229 *path = not->paths[i]; in xnotify_wait()
247 not->paths = xmalloc(max * sizeof(char *)); in xnotify_init()
261 not->paths[not->count++] = path; in xnotify_add()
275 *path = not->paths[i]; in xnotify_wait()
/third_party/node/deps/v8/tools/vim/
H A Dninja_output.py54 paths = [path] + [os.path.join(path, f) for f in os.listdir(path)]
55 return max(filter(None, [safe_mtime(p) for p in paths]))
/third_party/node/tools/gyp/pylib/gyp/
H A DMSVSUserFile.py31 paths = os.environ.get("PATH", "").split(os.pathsep)
32 for path in paths:

Completed in 13 milliseconds

12345678910>>...18