Searched refs:files (Results 51 - 75 of 498) sorted by relevance

1234567891011>>

/external/bluetooth/glib/gio/tests/
H A Dg-file.c439 GFile *files[6] = {NULL}; local
444 files[0] = g_file_new_for_uri (path);
445 files[1] = g_file_new_for_uri (path);
449 files[0] = g_file_new_for_path (path);
450 files[1] = g_file_new_for_path (path);
453 g_assert (files[0] != NULL);
454 g_assert (files[1] != NULL);
456 files[2] = g_file_get_child (files[1], dir_holder);
457 g_assert (files[
[all...]
/external/webkit/Tools/Scripts/webkitpy/style/
H A Doptparser_unittest.py143 (files, options) = parse([])
145 self.assertEquals(files, [])
158 (files, options) = parse(['--min-confidence=4'])
160 (files, options) = parse(['--output=emacs'])
162 (files, options) = parse(['-g', 'commit'])
164 (files, options) = parse(['--git-commit=commit'])
166 (files, options) = parse(['--git-diff=commit'])
168 (files, options) = parse(['--verbose'])
170 (files, options) = parse(['--diff-files', 'fil
[all...]
/external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
H A Dimageinfo.js15 var files = [];
27 files[url] = tags;
157 if (!files[url]) {
165 if (!files[url]) return null;
168 for (var a in files[url]) {
169 if (files[url].hasOwnProperty(a))
170 tags[a] = files[url][a];
176 if (!files[url]) return null;
177 return files[url][field];
/external/apache-harmony/
H A DAndroid.mk5 define all-harmony-test-java-files-under
31 $(call all-harmony-test-java-files-under,$(harmony_test_dirs),src/test/java) \
32 $(call all-harmony-test-java-files-under,$(harmony_test_dirs),src/test/support/java) \
33 $(call all-harmony-test-java-files-under,luni,src/test/api/common) \
34 $(call all-harmony-test-java-files-under,luni,src/test/api/unix) \
35 $(call all-harmony-test-java-files-under,luni,src/test/impl/common) \
36 $(call all-harmony-test-java-files-under,luni,src/test/impl/unix)
/external/openssl/apps/
H A Dprogs.pl32 push(@files,$_);
60 push(@files,$_);
85 push(@files,$_);
/external/webkit/Tools/Scripts/
H A Dbisect-builds118 my $nightlyFilesURLBase = $nightlyWebSite . File::Spec->catdir("/files", $branch, "mac");
304 my @files;
310 push(@files, +{ rev => $1, file => $file });
321 push(@files, +{ rev => $revision, file => $nightly });
328 @files = grep { $_->{rev} >= 39682 } @files;
330 @files = grep { $_->{rev} >= 37348 } @files;
332 @files = grep { $_->{rev} >= 29711 } @files;
[all...]
H A Dparallelcl72 # The rest of the lines of the command file just contain source files, one per line
94 # The hope is that by splitting the source files up into 2*$numJobs pieces, we
103 # Sort the source files randomly so that we don't end up with big clumps of large files (aka SVG)
144 my ($files, $jobSize) = @_;
147 if (@{$files} > ($jobSize * 1.5)) {
148 @job = splice(@{$files}, -$jobSize);
150 # Compile all the remaining files in this job to avoid having a small job later
151 @job = splice(@{$files});
160 my ($files,
[all...]
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Drebaseline_chromium_webkit_tests_unittest.py234 # We expect to have written 12 files over the course of this rebaseline:
235 # *) 3 files in /__im_tmp for the extracted archive members
237 # *) 4 files in /tmp for the new and old baselines in the result file
243 self.assertEqual(filesystem.files['/test.checkout/LayoutTests/platform/test-mac-leopard/failures/expected/image-expected.checksum'], 'new-image-checksum')
244 self.assertEqual(filesystem.files['/test.checkout/LayoutTests/platform/test-mac-leopard/failures/expected/image-expected.png'], 'new-image-png')
245 self.assertEqual(filesystem.files['/test.checkout/LayoutTests/platform/test-mac-leopard/failures/expected/image-expected.txt'], 'new-image-txt')
255 self.assertEqual(filesystem.files['/test.checkout/LayoutTests/platform/test-mac-leopard/failures/expected/image-expected.checksum'], 'new-image-checksum')
256 self.assertEqual(filesystem.files['/test.checkout/LayoutTests/platform/test-mac-leopard/failures/expected/image-expected.png'], 'new-image-png')
257 self.assertEqual(filesystem.files['/test.checkout/LayoutTests/platform/test-mac-leopard/failures/expected/image-expected.txt'], 'new-image-txt')
269 self.assertEqual(filesystem.files['/tes
[all...]
/external/libyuv/
H A Dpublic.mk6 LIBYUV_INCLUDES := $(LIBYUV_PATH)/files/include
H A Dsetup_env.bat7 :: TODO(fbarchard): add files\win32 to for psnr tool
/external/chromium/chrome/browser/policy/
H A Dconfig_dir_policy_provider.cc21 // Enumerate the files and sort them lexicographically.
22 std::set<FilePath> files; local
27 files.insert(config_file_path);
29 // Start with an empty dictionary and merge the files' contents.
31 for (std::set<FilePath>::iterator config_file_iter = files.begin();
32 config_file_iter != files.end(); ++config_file_iter) {
63 // Enumerate the files and find the most recent modification timestamp.
/external/emma/
H A DAndroid.mk10 LOCAL_SRC_FILES := $(call all-java-files-under, core pregenerated)
28 LOCAL_SRC_FILES := $(call all-java-files-under, core pregenerated)
/external/mockwebserver/
H A DAndroid.mk18 mockwebserver_src_files := $(call all-java-files-under,src/main/java)
/external/oprofile/libpp/
H A Dpopulate.cpp31 /// load merged files for one set of sample files
34 list<profile_sample_files> const & files)
36 list<profile_sample_files>::const_iterator it = files.begin();
37 list<profile_sample_files>::const_iterator const end = files.end();
40 // we can't handle cg files here obviously
87 // image_set's files - this is because it->app_image
92 if (populate_from_files(profile, abfd, it->files)) {
33 populate_from_files(profile_t & profile, op_bfd const & abfd, list<profile_sample_files> const & files) argument
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dtest_results_uploader.py43 def _encode_multipart_form_data(fields, files):
48 files: A sequence of (name, filename, value) elements for data to be
49 uploaded as files.
68 for key, filename, value in files:
95 def upload(self, params, files, timeout_seconds):
97 for filename, path in files:
/external/elfutils/tests/
H A Dget-files.c62 Dwarf_Files *files; local
64 if (dwarf_getsrcfiles (die, &files, &nfiles) != 0)
66 printf ("%s: cannot get files\n", argv[cnt]);
73 dwarf_filesrc (files, i, NULL, NULL));
/external/emma/ant/ant14/com/vladium/emma/ant/
H A DFileTask.java33 // public FileElement (final List /* File */ files)
35 // m_files = files;
104 // // merge files:
118 final String [] files = new String [_files.size ()];
119 _files.toArray (files);
121 return files;
/external/strace/linux/
H A Dioctlent.sh71 files="linux/* $asm/* scsi/* sound/*"
75 (cd $dir ; grep $regexp $files 2>/dev/null ) | \
87 (cd $dir ; grep -h $regexp 2>/dev/null $files ) | \
/external/strace/strace/linux/
H A Dioctlent.sh71 files="linux/* $asm/* scsi/* sound/*"
75 (cd $dir ; grep $regexp $files 2>/dev/null ) | \
87 (cd $dir ; grep -h $regexp 2>/dev/null $files ) | \
/external/v8/tools/
H A Dpresubmit.py130 def FilterUnchangedFiles(self, files):
132 for file in files:
151 files and invoke a custom check on the files.
170 for (root, dirs, files) in os.walk(path):
173 for file in files:
181 Lint files to check that they follow the google code style.
200 def ProcessFiles(self, files, path):
203 files = good_files_cache.FilterUnchangedFiles(files)
[all...]
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dgoogle_chrome_unittest.py55 # we should be able to test for the files existing or not, and
71 fs.files[chromium_path] = expected_chromium_overrides
72 fs.files[chrome_path] = None
76 fs.files[chrome_path] = expected_chrome_overrides
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DSerializationStressTest5.java119 File[] files = makeClassPathArray();
120 for (int i = 0; i < files.length; i++) {
121 if (files[i].isDirectory()) {
122 String[] tempFileNames = files[i].list();
124 File tempfile = new File(files[i], tempFileNames[j]);
153 private Class[] findThrowableClasses(File[] files) { argument
159 for (int i = 0; i < files.length; i++) {
160 String fileName = files[i].getPath();
299 // One or more class files in awt make the VM hang after being
323 File[] files
[all...]
/external/emma/ant/ant14/com/vladium/emma/report/
H A DreportTask.java53 String [] files = getDataPath (true);
54 if ((files == null) || (files.length == 0))
56 + ": no valid input data files have been specified", location).fillInStackTrace ();
73 processor.setDataPath (files); files = null;
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Duser.py98 def edit(self, files):
102 subprocess.call(args + files)
108 def edit_changelog(self, files):
116 subprocess.call(["open", "-W", "-n", "-a"] + args + files)
118 self.edit(files)
/external/tremolo/Tremolo/
H A Dmisc.c46 static char **files=NULL; variable
98 if(!strcmp(file,files[i]))break;
102 if(!files){
103 files=malloc(filecount*sizeof(*files));
106 files=realloc(files,filecount*sizeof(*files));
109 files[i]=strdup(file);
163 if(!strcmp(file,files[
[all...]

Completed in 4394 milliseconds

1234567891011>>