/third_party/node/deps/npm/node_modules/normalize-package-data/node_modules/resolve/test/ |
D | node-modules-paths.js | 8 var verifyDirs = function verifyDirs(t, start, dirs, moduleDirectories, paths) { argument 19 for (var i = 0; i < dirs.length; ++i) { 20 var parsed = parse(dirs[i]); 24 uniqueDirs[dirs[i]] = true; 29 t.equal(keys(uniqueDirs).length, dirs.length, 'all dirs provided were unique'); 41 var dirs = nodeModulesPaths(start); 43 verifyDirs(t, start, dirs); 50 var dirs = nodeModulesPaths(start, {}); 52 verifyDirs(t, start, dirs); 60 var dirs = nodeModulesPaths(start, { paths: paths }); [all …]
|
/third_party/e2fsprogs/lib/ss/ |
D | help.c | 138 register char **dirs; in ss_add_info_dir() local 150 dirs = info->info_dirs; in ss_add_info_dir() 151 for (n_dirs = 0; dirs[n_dirs] != (char *)NULL; n_dirs++) in ss_add_info_dir() 153 dirs = (char **)realloc((char *)dirs, in ss_add_info_dir() 155 if (dirs == (char **)NULL) { in ss_add_info_dir() 159 info->info_dirs = dirs; in ss_add_info_dir() 160 dirs[n_dirs + 1] = (char *)NULL; in ss_add_info_dir() 161 dirs[n_dirs] = malloc((unsigned)strlen(info_dir)+1); in ss_add_info_dir() 162 if (dirs[n_dirs] == (char *)NULL) { in ss_add_info_dir() 166 strcpy(dirs[n_dirs], info_dir); in ss_add_info_dir()
|
/third_party/mesa3d/src/gallium/targets/opencl/ |
D | meson.build | 38 polly_dep = cpp.find_library('Polly', dirs : llvm_libdir, required : false) 39 polly_isl_dep = cpp.find_library('PollyISL', dirs : llvm_libdir, required : false) 42 dep_clang = cpp.find_library('clang-cpp', dirs : llvm_libdir, required : false) 44 # meson will return clang-cpp from system dirs if it's not found in llvm_libdir 63 cpp.find_library('clangCodeGen', dirs : llvm_libdir), 64 cpp.find_library('clangFrontendTool', dirs : llvm_libdir), 65 cpp.find_library('clangFrontend', dirs : llvm_libdir), 66 cpp.find_library('clangDriver', dirs : llvm_libdir), 67 cpp.find_library('clangSerialization', dirs : llvm_libdir), 68 cpp.find_library('clangParse', dirs : llvm_libdir), [all …]
|
/third_party/node/deps/npm/node_modules/tar/lib/ |
D | path-reservations.js | 29 const dirs = path.split('/').slice(0, -1).reduce((set, path) => { constant 35 return dirs 50 dirs: [...res.dirs].map(path => queues.get(path)), 57 const {paths, dirs} = getQueues(fn) 59 dirs.every(q => q[0] instanceof Set && q[0].has(fn)) 75 const { paths, dirs } = reservations.get(fn) 92 dirs.forEach(dir => { 124 const dirs = new Set( constant 127 reservations.set(fn, {dirs, paths}) property 135 dirs.forEach(dir => {
|
/third_party/toybox/toys/pending/ |
D | modprobe.c | 33 struct arg_list *dirs; 505 struct arg_list *dirs; in modprobe_main() local 518 if (!TT.dirs) { in modprobe_main() 520 TT.dirs = xzalloc(sizeof(struct arg_list)); in modprobe_main() 521 TT.dirs->arg = xmprintf("/lib/modules/%s", uts.release); in modprobe_main() 526 for (dirs = TT.dirs; dirs; dirs = dirs->next) { in modprobe_main() 527 xchdir(dirs->arg); in modprobe_main() 558 for (dirs = TT.dirs; dirs; dirs = dirs->next) { in modprobe_main() 559 xchdir(dirs->arg); in modprobe_main() 564 for (dirs = TT.dirs; dirs; dirs = dirs->next) { in modprobe_main() [all …]
|
/third_party/openssl/test/recipes/ |
D | 99-test_fuzz.t | 29 my @dirs = glob(srctop_file('fuzz', 'corpora', $f)); 30 push @dirs, glob(srctop_file('fuzz', 'corpora', "$f-*")); 32 plan skip_all => "No corpora for $f-test" unless @dirs; 34 plan tests => scalar @dirs; 36 foreach (@dirs) {
|
/third_party/weex-loader/test/spec/ |
D | example-list.we | 21 var dirs = this.root.split('/'); 22 dirs.forEach(function(dir, index) { 23 if (!dir) dirs.splice(index, 1); 25 var root = dirs.length > 0 ? dirs[0] : ''; 26 var subRoot = dirs.length > 1 ? dirs.slice(1).join('/') + '/' : '';
|
/third_party/node/deps/npm/test/tap/ |
D | prune-with-dev-dep-duplicate.js | 62 var dirs = readdir(pkg + '/node_modules').sort() 63 t.same(dirs, [ 'test-package' ].sort()) 77 var dirs = readdir(pkg + '/node_modules').sort() 78 t.same(dirs, [ 'test-package' ]) 93 var dirs = readdir(pkg + '/node_modules').sort() 94 t.same(dirs, [ 'test-package' ])
|
D | prune-with-only-dev-deps.js | 67 var dirs = readdir(pkg + '/node_modules').sort() 68 t.same(dirs, [ 'test-package', 'test-package-with-one-dep' ].sort()) 86 var dirs = readdir(pkg + '/node_modules').sort() 87 t.same(dirs, [ 'test-package', 'test-package-with-one-dep' ]) 106 var dirs = readdir(pkg + '/node_modules').sort() 107 t.same(dirs, [])
|
D | prune.js | 74 var dirs = fs.readdirSync(pkg + '/node_modules').sort() 75 t.same(dirs, [ 'test-package', 'mkdirp', 'underscore' ].sort()) 93 var dirs = fs.readdirSync(pkg + '/node_modules').sort() 94 t.same(dirs, [ 'mkdirp', 'underscore' ])
|
/third_party/openssl/crypto/x509/ |
D | by_dir.c | 38 STACK_OF(BY_DIR_ENTRY) *dirs; 106 a->dirs = NULL; in new_dir() 147 sk_BY_DIR_ENTRY_pop_free(a->dirs, by_dir_entry_free); in free_dir() 175 for (j = 0; j < sk_BY_DIR_ENTRY_num(ctx->dirs); j++) { in add_cert_dir() 176 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j); in add_cert_dir() 180 if (j < sk_BY_DIR_ENTRY_num(ctx->dirs)) in add_cert_dir() 182 if (ctx->dirs == NULL) { in add_cert_dir() 183 ctx->dirs = sk_BY_DIR_ENTRY_new_null(); in add_cert_dir() 184 if (!ctx->dirs) { in add_cert_dir() 201 if (!sk_BY_DIR_ENTRY_push(ctx->dirs, ent)) { in add_cert_dir() [all …]
|
/third_party/python/Mac/ |
D | Extras.install.py | 24 for cursrc, dirs, files in os.walk(src): 41 for i in range(len(dirs)-1, -1, -1): 42 if not isclean(dirs[i]): 44 print("skipdir", os.path.join(cursrc, dirs[i])) 45 del dirs[i]
|
/third_party/boost/tools/build/src/util/ |
D | path.py | 260 def glob (dirs, patterns): argument 326 dirs = to_seq (dirs) 330 for dir in dirs: 839 def glob(dirs, patterns, exclude_patterns=None): argument 855 assert(isinstance(dirs, list)) 862 real_patterns = [os.path.join(d, p) for p in patterns for d in dirs] 864 for d in dirs]
|
/third_party/flutter/skia/third_party/externals/sdl/premake/util/ |
D | sdl_file.lua | 100 local dirs = os.matchdirs(sourcePath.."/**") 101 for k,d in pairs(dirs) do 102 dirs[k] = string.sub(d, #sourcePath + 1) .. "/" 104 table.insert(dirs, "/") 105 return dirs
|
/third_party/boost/tools/boostdep/depinst/ |
D | depinst.py | 100 for root, dirs, files in os.walk( d ): 119 def scan_module_dependencies( m, x, gm, deps, dirs ): argument 123 for dir in dirs: 262 dirs = [ 'include', 'src', 'test' ] variable 265 dirs.remove( dir ) 268 dirs.append( dir ) 270 vprint( 1, 'Directories to scan:', *dirs ) 272 scan_module_dependencies( m, x, gm, deps, dirs )
|
/third_party/eudev/src/shared/ |
D | conf-files.c | 109 …nt conf_files_list_strv_internal(char ***strv, const char *suffix, const char *root, char **dirs) { in conf_files_list_strv_internal() argument 118 if (!path_strv_resolve_uniq(dirs, root)) in conf_files_list_strv_internal() 125 STRV_FOREACH(p, dirs) { in conf_files_list_strv_internal() 145 …conf_files_list_strv(char ***strv, const char *suffix, const char *root, const char* const* dirs) { in conf_files_list_strv() argument 151 copy = strv_copy((char**) dirs); in conf_files_list_strv()
|
/third_party/jerryscript/targets/mbedos5/tools/ |
D | generate_pins.py | 69 for root, dirs, files in os.walk(root_dir, topdown=True): 71 …dirs[:] = [directory for directory in dirs if directory in directories or not directory.startswith… 82 for root, dirs, _ in os.walk(root_dir, topdown=True): 84 dirs[:] = [dir_label for dir_label in dirs
|
/third_party/node/deps/npm/node_modules/global-dirs/ |
D | readme.md | 1 # global-dirs [![Build Status](https://travis-ci.org/sindresorhus/global-dirs.svg?branch=master)](h… 11 $ npm install global-dirs 18 const globalDirs = require('global-dirs');
|
/third_party/grpc/templates/ |
D | config.w32.template | 42 dirs = sorted(set(src[:src.rfind('/')] for src in srcs)) 43 dirset = set(dirs) 44 for dir in dirs: 48 dirs = [d.replace('/', '\\\\') for d in sorted(dirset)] 53 % for dir in dirs:
|
/third_party/boost/tools/ |
D | Jamfile.v2 | 48 local dirs = boostbook/dtd boostbook/xsl ; 51 [ glob $(dirs)/$(patterns) $(dirs)/*/$(patterns) $(dirs)/*/*/$(patterns) ]
|
/third_party/curl/docs/cmdline-opts/ |
D | ftp-create-dirs.d | 1 Long: ftp-create-dirs 3 Help: Create the remote dirs if not present 4 See-also: create-dirs
|
/third_party/openssl/crypto/engine/ |
D | eng_dyn.c | 111 STACK_OF(OPENSSL_STRING) *dirs; 143 sk_OPENSSL_STRING_pop_free(ctx->dirs, int_free_str); in dynamic_data_ctx_free_func() 163 c->dirs = sk_OPENSSL_STRING_new_null(); in dynamic_set_data_ctx() 164 if (c->dirs == NULL) { in dynamic_set_data_ctx() 189 sk_OPENSSL_STRING_free(c->dirs); in dynamic_set_data_ctx() 356 if (!sk_OPENSSL_STRING_push(ctx->dirs, tmp_str)) { in dynamic_ctrl() 379 if (!ctx->dir_load || (num = sk_OPENSSL_STRING_num(ctx->dirs)) < 1) in int_load() 382 const char *s = sk_OPENSSL_STRING_value(ctx->dirs, loop); in int_load()
|
/third_party/node/deps/npm/node_modules/node-gyp/test/ |
D | test-configure-python.js | 49 var dirs = process.env.PYTHONPATH.split(SEPARATOR) 50 t.deepEqual(dirs, [EXPECTED_PYPATH, existingPath]) 71 var dirs = process.env.PYTHONPATH.split(SEPARATOR) 72 t.deepEqual(dirs, [EXPECTED_PYPATH, pythonDir1, pythonDir2])
|
/third_party/skia/tests/ |
D | PathOpsInverseTest.cpp | 10 const SkPathDirection dirs[] = {SkPathDirection::kCW, SkPathDirection::kCCW}; in DEF_TEST() local 19 for (auto oneDir : dirs) { in DEF_TEST() 24 for (auto twoDir : dirs) { in DEF_TEST()
|
/third_party/littlefs/scripts/ |
D | readtree.py | 13 dirs = [] 21 for m in it.chain((m for d in dirs for m in d), mdirs): 71 dirs.append(mdirs) 82 for dir in dirs: 85 pending = [("/", dirs[0])] 122 for i, dir in enumerate(dirs):
|