/external/webkit/Tools/Scripts/webkitpy/style/ |
D | filereader_unittest.py | 92 self._file_reader.process_file('does_not_exist.txt') 104 self._file_reader.process_file(temp_dir) 124 self._file_reader.process_file(file_path) 130 self._file_reader.process_file(file_path) 137 self._file_reader.process_file(file_path=file_path, test_kwarg='foo') 144 self._file_reader.process_file(file_path=file_path, test_kwarg='foo')
|
D | filereader.py | 96 def process_file(self, file_path, **kwargs): member in TextFileReader 140 self.process_file(file_path) 153 self.process_file(path)
|
D | patchreader.py | 66 self._text_file_reader.process_file(file_path=path, line_numbers=line_numbers)
|
D | patchreader_unittest.py | 51 def process_file(self, file_path, line_numbers): member in PatchReaderTest.MockTextFileReader
|
/external/webkit/Tools/Scripts/ |
D | check-inspector-strings | 78 def process_file(self, file_path): member in LocalizedStringsExtractor 106 localized_strings_extractor.process_file(_localized_strings)
|
/external/elfutils/libdwfl/ |
D | offline.c | 126 process_file (Dwfl *dwfl, const char *name, const char *file_name, int fd, in process_file() function 243 *mod = process_file (dwfl, name, member_name, fd, member, predicate); in process_archive_member() 292 Dwfl_Module *mod = process_file (dwfl, name, file_name, fd, elf, predicate); in __libdwfl_report_offline()
|
D | ChangeLog | 206 to process_file. Return Elf_Cmd, not bool. 321 * offline.c (process_file): Take new arg PREDICATE, pass it down. 330 (process_elf, process_file): New functions, broken out of ... 331 (dwfl_report_offline): ... here. Call process_file, which recurses on
|
/external/qemu/ |
D | gen-charmap.py | 132 def process_file( file ): function 176 result = process_file( filepath )
|
/external/elfutils/src/ |
D | findtextrel.c | 95 static int process_file (const char *fname, bool more_than_one); 148 result = process_file ("a.out", false); in main() 155 result |= process_file (argv[remaining], more_than_one); in main() 206 process_file (const char *fname, bool more_than_one) in process_file() function
|
D | size.c | 105 static int process_file (const char *fname); 197 result = process_file ("a.out"); in main() 201 result |= process_file (argv[remaining]); in main() 296 process_file (const char *fname) in process_file() function
|
D | objdump.c | 93 static int process_file (const char *fname, bool more_than_one); 161 result = process_file ("a.out", false); in main() 168 result |= process_file (argv[remaining], more_than_one); in main() 251 process_file (const char *fname, bool more_than_one) in process_file() function
|
D | nm.c | 124 static int process_file (const char *fname, bool more_than_one); 233 result = process_file ("a.out", false); in main() 240 result |= process_file (argv[remaining], more_than_one); in main() 357 process_file (const char *fname, bool more_than_one) in process_file() function
|
D | ChangeLog | 13 * readelf.c (count_dwflmod, process_file): Don't presume encoding of 312 * readelf.c (process_file): Set offline_next_address to 0 at start. 315 (process_file): Update caller; dup FD for passing to libdwfl. 351 (process_file): Call it. Change signature to take only fd and name. 354 (main): Update caller. Let process_file do elf_begin. 452 (process_file): Take new arg WILL_PRINT_ARCHIVE_INDEX. 753 * strip.c (process_file): Disallow -f on archives. 983 * size.c (process_file): Fix typo in error message. 1091 * strip.c (process_file): Open read-only when using a different output 1486 * strip.c (process_file): Close file before returning. [all …]
|
D | strip.c | 109 static int process_file (const char *fname); 178 result = process_file ("a.out"); in main() 190 result |= process_file (argv[remaining]); in main() 285 process_file (const char *fname) in process_file() function
|
D | elflint.c | 99 static void process_file (int fd, Elf *elf, const char *prefix, 180 process_file (fd, elf, NULL, NULL, argv[remaining], st.st_size, in main() 251 process_file (int fd, Elf *elf, const char *prefix, const char *suffix, in process_file() function 296 process_file (fd, subelf, new_prefix, new_suffix, in process_file()
|
D | readelf.c | 204 static void process_file (int fd, const char *fname, bool only_one); 260 process_file (fd, argv[remaining], only_one); in main() 513 process_file (int fd, const char *fname, bool only_one) in process_file() function
|
/external/elfutils/tests/ |
D | run-allfcts.sh | 42 /home/drepper/gnu/elfutils/build/src/../../src/strip.c:217:process_file
|
/external/webkit/Tools/ |
D | ChangeLog-2010-05-24 | 3925 of checking file existence at the beginning of the process_file() 8054 - Renamed the process_file parameter to mock_process_file. 17808 * Scripts/webkitpy/style/checker.py: Don't call process_file with a processor of value None. 17934 - Renamed process_file() to check_file(). 17937 - Addressed check_patch() FIXME to share code with process_file(). 17946 - Removed process_file() (moved logic to checker.py). 17959 - Removed process_file(). 18675 - Added verbosity as a parameter to process_file(). 19006 - Removed default parameter value from process_file(). 19013 - Removed default parameter value from process_file(). [all …]
|