/external/e2fsprogs/lib/ss/ |
D | help.c | 138 register char **dirs; local 150 dirs = info->info_dirs; 151 for (n_dirs = 0; dirs[n_dirs] != (char *)NULL; n_dirs++) 153 dirs = (char **)realloc((char *)dirs, 155 if (dirs == (char **)NULL) { 160 info->info_dirs = dirs; 161 dirs[n_dirs + 1] = (char *)NULL; 162 dirs[n_dirs] = malloc((unsigned)strlen(info_dir)+1); 163 strcpy(dirs[n_dirs], info_dir);
|
/external/webkit/Tools/CodeCoverage/ |
D | run-generate-coverage-data | 48 for root, dirs, files in os.walk(src): 150 for root, dirs, files in os.walk(base_path): 189 def analyze_coverage(sources,data,dirs,runid,base): argument 198 gcov = collect_cov(base,dirs) 221 dirs = {} variable 224 if not dir in dirs: 225 dirs[dir] = {} 227 if not dep in dirs[dir]: 228 dirs[dir][dep] = dep 236 generate_covs(dirs) [all …]
|
/external/openssl/crypto/x509/ |
D | by_dir.c | 92 STACK_OF(BY_DIR_ENTRY) *dirs; 167 a->dirs=NULL; in new_dir() 201 if (a->dirs != NULL) in free_dir() 202 sk_BY_DIR_ENTRY_pop_free(a->dirs, by_dir_entry_free); in free_dir() 230 for (j=0; j < sk_BY_DIR_ENTRY_num(ctx->dirs); j++) in add_cert_dir() 232 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j); in add_cert_dir() 237 if (j < sk_BY_DIR_ENTRY_num(ctx->dirs)) in add_cert_dir() 239 if (ctx->dirs == NULL) in add_cert_dir() 241 ctx->dirs = sk_BY_DIR_ENTRY_new_null(); in add_cert_dir() 242 if (!ctx->dirs) in add_cert_dir() [all …]
|
/external/elfutils/tests/ |
D | get-files.c | 87 const char *const *dirs; in main() local 89 if (dwarf_getsrcdirs (files, &dirs, &ndirs) != 0) in main() 96 if (dirs[0] == NULL) in main() 99 printf (" dirs[0] = \"%s\"\n", dirs[0]); in main() 101 printf (" dirs[%zu] = \"%s\"\n", i, dirs[i]); in main()
|
/external/v8/test/mozilla/ |
D | testcfg.py | 99 for root, dirs, files in os.walk(current_root): 100 for dotted in [x for x in dirs if x.startswith('.')]: 101 dirs.remove(dotted) 103 if excluded in dirs: 104 dirs.remove(excluded) 105 dirs.sort()
|
/external/webkit/Tools/wx/packaging/ |
D | build-win-installer.py | 48 dirs = os.environ["PATH"].split(":") 50 dirs.append("C:\\Program Files\\Inno Setup 5") 51 dirs.append("C:\\Program Files (x86)\\Inno Setup 5") 57 for dir in dirs:
|
/external/openssl/crypto/engine/ |
D | eng_dyn.c | 149 STACK_OF(OPENSSL_STRING) *dirs; 176 if(ctx->dirs) in dynamic_data_ctx_free_func() 177 sk_OPENSSL_STRING_pop_free(ctx->dirs, int_free_str); in dynamic_data_ctx_free_func() 206 c->dirs = sk_OPENSSL_STRING_new_null(); in dynamic_set_data_ctx() 207 if(!c->dirs) in dynamic_set_data_ctx() 396 sk_OPENSSL_STRING_insert(ctx->dirs, tmp_str, -1); in dynamic_ctrl() 414 if(!ctx->dir_load || (num = sk_OPENSSL_STRING_num(ctx->dirs)) < 1) in int_load() 418 const char *s = sk_OPENSSL_STRING_value(ctx->dirs, loop); in int_load()
|
/external/v8/test/es5conform/ |
D | testcfg.py | 82 for root, dirs, files in os.walk(current_root): 83 for dotted in [x for x in dirs if x.startswith('.')]: 84 dirs.remove(dotted) 85 dirs.sort()
|
/external/webkit/Tools/Scripts/ |
D | svn-unapply | 221 my @dirs = File::Spec->splitdir($path); 222 while (scalar @dirs) { 223 my $dir = File::Spec->catdir(@dirs); 224 pop(@dirs);
|
D | svn-apply | 164 my @dirs = File::Spec->splitdir($path); 166 while (scalar @dirs) { 167 $dir = File::Spec->catdir($dir, shift @dirs);
|
D | VCSUtils.pm | 434 my @dirs = (); 436 if ($dir eq '..' && $#dirs >= 0 && $dirs[$#dirs] ne '..') { 437 pop(@dirs); 439 push(@dirs, $dir); 442 return ($#dirs >= 0) ? File::Spec->catdir(@dirs) : ".";
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
D | filesystem_mock.py | 52 self.dirs = {} 149 if path in self.dirs: 158 self.dirs[path] = True 173 dirs = [] 180 if not dir in dirs: 181 dirs.append(dir) 184 return dirs + files 224 self.dirs[norm_path] = True
|
/external/v8/test/test262/ |
D | testcfg.py | 86 for root, dirs, files in os.walk(testroot): 87 for dotted in [x for x in dirs if x.startswith('.')]: 88 dirs.remove(dotted) 89 dirs.sort()
|
/external/webkit/Source/WebKit/wx/bindings/python/ |
D | wscript | 42 dirs = [ 50 for adir in dirs:
|
/external/webkit/Tools/wx/build/ |
D | build_utils.py | 63 def get_dirs_for_features(root, features, dirs): argument 68 outdirs = dirs 69 for adir in dirs:
|
/external/doclava/src/com/google/doclava/ |
D | SampleCode.java | 72 TreeSet<String> dirs = new TreeSet<String>(); in writeDirectory() local 100 dirs.add(name); in writeDirectory() 110 for (String d : dirs) { in writeDirectory()
|
/external/chromium/chrome/common/extensions/docs/build/ |
D | directory.py | 26 for base, dirs, files in os.walk(path): 27 dirs.sort() 29 yield base, dirs, files 663 for root, dirs, files in sorted_walk(sample_path): 664 if '.svn' in dirs: 665 dirs.remove('.svn')
|
/external/webrtc/src/modules/audio_processing/test/ |
D | apmtest.m | 179 dirs = dir(inpath); variable 182 for i=3:length(dirs) % skip . and .. 183 nDirs = nDirs + dirs(i).isdir; 303 for i=3:length(dirs) 304 if dirs(i).isdir 305 [nErr, nCases] = recurseDir([inpath dirs(i).name '/'], outpath, ... 306 refpath,[outfile '_' dirs(i).name], progname, opt, ...
|
/external/oprofile/m4/ |
D | qt.m4 | 11 dirs="$3" 15 dirs="$dirs $dir" 19 for dir in $dirs; do
|
/external/mksh/src/ |
D | dot.mkshrc | 55 # Berkeley C shell compatible dirs, popd, and pushd functions 79 function dirs { 88 (*) print -u2 'Usage: dirs [-lvn].' 94 print -u2 'Usage: dirs [-lvn].' 157 dirs $fa 199 dirs $fa
|
/external/e2fsprogs/tests/f_dup_de2/ |
D | name | 1 duplicate directory entries for non-indexed dirs
|
/external/clang/test/CodeGenCXX/ |
D | 2004-11-27-ExceptionCleanupAssertion.cpp | 13 Strongbad dirs[] = { Strongbad(0) + 1}; in TheCheat() local
|
/external/dnsmasq/contrib/dynamic-dnsmasq/ |
D | dynamic-dnsmasq.pl | 236 my @dirs = grep(/^\d+$/, readdir(DIR)); 238 foreach my $process (@dirs) {
|
/external/clang/include/clang/Lex/ |
D | HeaderSearch.h | 236 void SetSearchPaths(const std::vector<DirectoryLookup> &dirs, in SetSearchPaths() argument 239 assert(angledDirIdx <= systemDirIdx && systemDirIdx <= dirs.size() && in SetSearchPaths() 241 SearchDirs = dirs; in SetSearchPaths()
|
/external/chromium/build/ |
D | common.croc | 53 # Don't include subversion or mercurial SCM dirs 58 # Don't include output dirs
|