/external/icu4c/tools/gencmn/ |
D | gencmn.c | 100 static File files[MAX_FILE_COUNT]; variable 264 qsort(files, fileCount, sizeof(File), compareFiles); in main() 273 files[i].fileOffset=fileOffset; in main() 274 fileOffset+=(files[i].fileSize+15)&~0xf; in main() 275 files[i].basenameOffset=basenameOffset; in main() 276 basenameOffset+=files[i].basenameLength; in main() 294 udata_write32(out, files[i].basenameOffset); in main() 295 udata_write32(out, files[i].fileOffset); in main() 300 udata_writeString(out, files[i].basename, files[i].basenameLength); in main() 313 …printf("adding %s (%ld byte%s)\n", files[i].pathname, (long)files[i].fileSize, files[i].fileSize =… in main() [all …]
|
/external/webkit/WebKitTools/Scripts/ |
D | bisect-builds | 301 my @files; 307 push(@files, +{ rev => $1, file => $file }); 318 push(@files, +{ rev => $revision, file => $nightly }); 325 @files = grep { $_->{rev} >= 39682 } @files; 327 @files = grep { $_->{rev} >= 37348 } @files; 329 @files = grep { $_->{rev} >= 29711 } @files; 331 @files = grep { $_->{rev} >= 25124 } @files; 333 @files = grep { $_->{rev} >= 19594 } @files; 339 @files = grep { $_->{rev} >= 39682 } @files; 341 @files = grep { $_->{rev} >= 37348 } @files; [all …]
|
D | parallelcl | 144 my ($files, $jobSize) = @_; 147 if (@{$files} > ($jobSize * 1.5)) { 148 @job = splice(@{$files}, -$jobSize); 151 @job = splice(@{$files}); 160 my ($files, $options) = @_; 163 foreach my $file (@{$files}) { 177 foreach my $file (@{$files}) {
|
D | check-webkit-style | 100 for filename, diff in patch.files.iteritems(): 128 (files, flags) = cpp_style.parse_arguments(sys.argv[1:], ["git-commit="]) 137 if files and "--git-commit" in flags: 142 if files: 143 for filename in files:
|
/external/bluetooth/glib/gio/tests/ |
D | g-file.c | 439 GFile *files[6] = {NULL}; in roundtrip_parent_child() local 444 files[0] = g_file_new_for_uri (path); in roundtrip_parent_child() 445 files[1] = g_file_new_for_uri (path); in roundtrip_parent_child() 449 files[0] = g_file_new_for_path (path); in roundtrip_parent_child() 450 files[1] = g_file_new_for_path (path); in roundtrip_parent_child() 453 g_assert (files[0] != NULL); in roundtrip_parent_child() 454 g_assert (files[1] != NULL); in roundtrip_parent_child() 456 files[2] = g_file_get_child (files[1], dir_holder); in roundtrip_parent_child() 457 g_assert (files[2] != NULL); in roundtrip_parent_child() 459 files[3] = g_file_get_parent (files[2]); in roundtrip_parent_child() [all …]
|
/external/clearsilver/util/test/ |
D | listdir_test.c | 12 ULIST *files = NULL; in main() local 23 err = ne_listdir(path, &files); in main() 30 for (x = 0; x < uListLength(files); x++) in main() 32 err = uListGet(files, x, (void *)&filename); in main() 36 uListDestroy(&files, ULIST_FREE); in main() 39 err = ne_listdir_match(path, &files, "*.c"); in main() 46 for (x = 0; x < uListLength(files); x++) in main() 48 err = uListGet(files, x, (void *)&filename); in main() 52 uListDestroy(&files, ULIST_FREE); in main()
|
/external/tesseract/ |
D | tesseract.spec | 15 Source0: http://tesseract-ocr.googlecode.com/files/tesseract-%{version}.tar.gz 16 Source1: http://tesseract-ocr.googlecode.com/files/tesseract-%{version}.eng.tar.gz 17 Source2: http://tesseract-ocr.googlecode.com/files/tesseract-%{version}.fra.tar.gz 18 Source3: http://tesseract-ocr.googlecode.com/files/tesseract-%{version}.ita.tar.gz 19 Source4: http://tesseract-ocr.googlecode.com/files/tesseract-%{version}.deu.tar.gz 20 Source5: http://tesseract-ocr.googlecode.com/files/tesseract-%{version}.spa.tar.gz 21 Source6: http://tesseract-ocr.googlecode.com/files/tesseract-%{version}.nld.tar.gz 28 Summary: Development files for tesseract 75 %files 87 %files devel [all …]
|
/external/dbus/test/ |
D | Makefile.am | 89 data/valid-config-files \ 90 data/valid-config-files/basic.d \ 91 data/valid-config-files/system.d \ 92 data/valid-service-files \ 93 data/invalid-config-files \ 94 data/equiv-config-files \ 95 data/equiv-config-files/basic \ 96 data/equiv-config-files/basic/basic.d \ 97 data/equiv-config-files/entities \ 98 data/equiv-config-files/entities/basic.d [all …]
|
/external/elfutils/libdw/ |
D | dwarf_getsrcfiles.c | 25 dwarf_getsrcfiles (Dwarf_Die *cudie, Dwarf_Files **files, size_t *nfiles) in dwarf_getsrcfiles() argument 43 else if (cu->files != (void *) -1l) in dwarf_getsrcfiles() 49 assert (cu->files != NULL && cu->files != (void *) -1l); in dwarf_getsrcfiles() 50 *files = cu->files; in dwarf_getsrcfiles() 52 *nfiles = cu->files->nfiles; in dwarf_getsrcfiles()
|
D | dwarf_linesrc.c | 28 if (line->file >= line->files->nfiles) in dwarf_linesrc() 35 *mtime = line->files->info[line->file].mtime; in dwarf_linesrc() 38 *length = line->files->info[line->file].length; in dwarf_linesrc() 40 return line->files->info[line->file].name; in dwarf_linesrc()
|
/external/clearsilver/util/ |
D | neo_files.c | 195 NEOERR *ne_listdir(const char *path, ULIST **files) in ne_listdir() argument 197 return nerr_pass(ne_listdir_fmatch(path, files, NULL, NULL)); in ne_listdir() 205 NEOERR *ne_listdir_match(const char *path, ULIST **files, const char *match) in ne_listdir_match() argument 207 return nerr_pass(ne_listdir_fmatch(path, files, _glob_match, (void *)match)); in ne_listdir_match() 210 NEOERR *ne_listdir_fmatch(const char *path, ULIST **files, MATCH_FUNC fmatch, in ne_listdir_fmatch() argument 218 if (files == NULL) in ne_listdir_fmatch() 221 if (*files == NULL) in ne_listdir_fmatch() 228 myfiles = *files; in ne_listdir_fmatch() 247 if (err && *files == NULL) in ne_listdir_fmatch() 251 else if (*files == NULL) in ne_listdir_fmatch() [all …]
|
/external/icu4c/data/ |
D | makedata.mak | 5 # nmake file for creating data files on win32 30 # Suffixes for data files 62 # The directory that contains ucmcore.mk files along with *.ucm files 67 # The directory that contains resfiles.mk files along with *.txt locale data files 72 # The directory that contains colfiles.mk files along with *.txt collation data files 77 # The directory that contains rbnffiles.mk files along with *.txt RBNF data files 82 # The directory that contains trfiles.mk files along with *.txt transliterator files 87 # The directory that contains resfiles.mk files along with *.txt break iterator files 92 # The directory that contains Unicode data files 98 # The directory that contains miscfiles.mk along with files that are miscelleneous data [all …]
|
/external/blktrace/btt/ |
D | btt_plot.py | 89 def get_data(files): argument 154 for file in files: 360 files = [] 366 files.append(fn) 368 files = glob.glob('*%s.dat' % type) 369 return files 373 files = parse_args(sys.argv) variable 378 files = get_files(t) variable 379 if len(files) == 0: 382 generate_output(t, get_data(files)) [all …]
|
/external/jpeg/ |
D | filelist.doc | 8 Here is a road map to the files in the IJG JPEG distribution. The 11 files to and from some other popular image formats. A third application 20 Include files: 28 jinclude.h Central include file used by all IJG .c files to reference 29 system include files. 40 other include files are intended for internal use and would not normally 43 Most other applications will directly include the system include files they 47 C source code files: 49 These files contain most of the functions intended to be called directly by 103 Support files for both compression and decompression: [all …]
|
/external/tremor/Tremor/ |
D | misc.c | 25 static char **files=NULL; variable 77 if(!strcmp(file,files[i]))break; in _insert() 81 if(!files){ in _insert() 82 files=malloc(filecount*sizeof(*files)); in _insert() 85 files=realloc(files,filecount*sizeof(*files)); in _insert() 88 files[i]=strdup(file); in _insert() 142 if(!strcmp(file,files[i]))break; in _ripremove()
|
/external/webkit/WebKitTools/Scripts/modules/ |
D | diff_parser_unittest.py | 90 self.assertEquals(3, len(parser.files)) 92 self.assertTrue('WebCore/rendering/style/StyleFlexibleBoxData.h' in parser.files) 93 diff = parser.files['WebCore/rendering/style/StyleFlexibleBoxData.h'] 105 self.assertTrue('WebCore/rendering/style/StyleRareInheritedData.cpp' in parser.files) 106 diff = parser.files['WebCore/rendering/style/StyleRareInheritedData.cpp'] 125 … diff = parser.files['LayoutTests/platform/mac/fast/flexbox/box-orient-button-expected.checksum']
|
/external/bzip2/ |
D | bzip2.txt | 4 bzcat - decompresses files to stdout 5 bzip2recover - recovers data from damaged bzip2 files 16 bzip2 compresses files using the Burrows-Wheeler block 39 files. If you want this to happen, specify the -f flag. 47 bunzip2 (or bzip2 -d) decompresses all specified files. 68 catenation of two or more compressed files. The result is 69 the concatenation of the corresponding uncompressed files. 70 Integrity testing (-t) of concatenated compressed files is 73 You can also compress or decompress files to the standard 74 output by giving the -c flag. Multiple files may be com- [all …]
|
D | bzip2.1.preformatted | 7 bzcat − decompresses files to stdout 8 bzip2recover − recovers data from damaged bzip2 files 19 _b_z_i_p_2 compresses files using the Burrows‐Wheeler block 42 files. If you want this to happen, specify the −f flag. 50 _b_u_n_z_i_p_2 (or _b_z_i_p_2 _−_d_) decompresses all specified files. 71 catenation of two or more compressed files. The result is 72 the concatenation of the corresponding uncompressed files. 73 Integrity testing (−t) of concatenated compressed files is 76 You can also compress or decompress files to the standard 77 output by giving the −c flag. Multiple files may be com [all …]
|
/external/clearsilver/imd/ |
D | imd.c | 500 ULIST *files = NULL; in load_images() local 510 err = uListInit(&files, 50, 0); in load_images() 512 *rfiles = files; in load_images() 516 files = *rfiles; in load_images() 551 err = uListAppend(files, strdup(ppath)); in load_images() 560 uListDestroy(&files, ULIST_FREE); in load_images() 564 *rfiles = files; in load_images() 726 ULIST *files = NULL; in dowork_picture() local 778 err = load_images(path, &files, NULL, 0); in dowork_picture() 780 err = uListSort(files, alpha_sort); in dowork_picture() [all …]
|
/external/icu4c/tools/cpysearch/ |
D | cpyscan.pl | 16 my @files = `$command`; 17 @files = grep(!/$ignore/, @files); 19 foreach $file (@files) {
|
D | cpysearch.pl | 20 my @files = `$command`; 21 @files = grep(!/$ignore/, @files); 23 foreach $file (@files) {
|
D | readme.txt | 4 …files that might not have the copyright notice. Best when used on windows on a clean checkout. Edi… 6 cpysearch.pl searches for files modified this year that don't have the 9 cpyscan.pl searches for all files that don't have any copyright
|
/external/bluetooth/glib/docs/reference/ |
D | README | 20 package installed. To rebuild the template files, 22 header files installed. 39 template files 43 Generate SGML files using the DocBook DTD from 44 the template files 48 Generate HTML from the SGML files.
|
/external/emma/ant/ant14/com/vladium/emma/data/ |
D | mergeTask.java | 37 String [] files = getDataPath (true); in execute() local 38 if ((files == null) || (files.length == 0)) in execute() 44 processor.setDataPath (files); files = null; in execute()
|
/external/webkit/WebKitTools/CodeCoverage/ |
D | run-generate-coverage-data | 48 for root, dirs, files in os.walk(src): 52 for file in files: 150 for root, dirs, files in os.walk(base_path): 153 for file in files: 222 files = {} variable 229 if not dep in files: 230 files[dep] = dep 232 sources = files.keys()
|