Searched defs:files (Results 1 - 25 of 168) sorted by relevance

1234567

/external/junit/
H A DCommon.mk2 # List of junit files include in documentation.
9 core-junit-files := \
24 junit-runner-files := \
33 # List of junit javadoc source files for Android public API
37 $(core-junit-files) \
38 $(junit-runner-files)
/external/chromium/base/files/
H A Dfile_path_watcher_stub.cc8 #include "base/files/file_path_watcher.h"
11 namespace files { namespace in namespace:base
30 } // namespace files
H A Dfile_path_watcher.cc6 // specific implementation files, too.
8 #include "base/files/file_path_watcher.h"
14 namespace files { namespace in namespace:base
32 } // namespace files
H A Dfile_path_watcher.h17 namespace files { namespace in namespace:base
24 // modifications to files in a watched directory. FilePathWatcher on Mac will
25 // detect the creation and deletion of files in a watched directory, but will
26 // not detect modifications to those files. See file_path_watcher_mac.cc for
125 } // namespace files
/external/harfbuzz_ng/src/
H A Dgen-arabic-table.py10 files = [file (x) for x in sys.argv[1:]] variable
12 headers = [[files[0].readline (), files[0].readline ()]]
14 while files[0].readline ().find ('##################') < 0:
179 print " * on files with these headers:"
190 print_joining_table (files[0])
191 print_shaping_table (files[1])
/external/compiler-rt/
H A DAndroid.mk201 define get-libcompiler-rt-source-files
202 $(if $(findstring $(1),arm),$(call get-libcompiler-rt-arm-source-files),
203 $(if $(findstring $(1),mips),$(call get-libcompiler-rt-mips-source-files),
204 $(if $(findstring $(1),x86),$(call get-libcompiler-rt-x86-source-files),
214 define filter-libcompiler-rt-common-source-files
218 define get-libcompiler-rt-arm-common-source-files
219 $(call filter-libcompiler-rt-common-source-files,
227 define add-libcompiler-rt-arm-vfp-source-files
236 define get-libcompiler-rt-arm-source-files
238 $(call add-libcompiler-rt-arm-vfp-source-files,
[all...]
/external/elfutils/libdw/
H A Ddwarf_getsrcfiles.c27 found in the source code files (the "Approved Interfaces"). The files
61 dwarf_getsrcfiles (Dwarf_Die *cudie, Dwarf_Files **files, size_t *nfiles) argument
80 else if (cu->files != (void *) -1l)
86 assert (cu->files != NULL && cu->files != (void *) -1l);
87 *files = cu->files;
89 *nfiles = cu->files->nfiles;
/external/libmtp/examples/
H A Dfiles.c2 * \file files.c
3 * Example program that lists all files on a device.
52 LIBMTP_file_t *files; local
61 fprintf(stdout, "mtp-files: No Devices have been found\n");
64 fprintf(stderr, "mtp-files: There has been an error connecting. Exit\n");
67 fprintf(stderr, "mtp-files: Memory Allocation Error. Exit\n");
73 fprintf(stderr, "mtp-files: Unknown error, please report "
79 fprintf(stdout, "mtp-files: Successfully connected\n");
99 files = LIBMTP_Get_Filelisting_With_Callback(iter, NULL, NULL);
100 if (files
[all...]
H A Demptyfolders.c25 static void prune_empty_folders(LIBMTP_mtpdevice_t *device, LIBMTP_file_t *files, LIBMTP_folder_t *folderlist, int do_delete) argument
34 file = files;
43 if(found == 0) { // no files claim this as a parent
55 prune_empty_folders(device,files,folderlist->child,do_delete); // recurse down
56 prune_empty_folders(device,files,folderlist->sibling,do_delete); // recurse along
84 LIBMTP_file_t *files; local
94 files = LIBMTP_Get_Filelisting_With_Callback(device,NULL,NULL);
102 prune_empty_folders(device,files,folders,do_delete);
106 LIBMTP_destroy_file_t(files);
H A Dconnect.c32 LIBMTP_file_t *files; variable
91 files = LIBMTP_Get_Filelisting_With_Callback (device, NULL, NULL);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebOpenPanelResultListener.cpp46 void WebOpenPanelResultListener::didChooseFiles(const Vector<String>& files) argument
48 m_fileChooser->chooseFiles(files);
/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/openfst/
H A DAndroid.mk8 define private-function-all-cpp-files-under
23 LOCAL_SRC_FILES := $(call private-function-all-cpp-files-under, src/lib)
/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/DumpRenderTree/android/
H A Dget_layout_tests_dir_contents.php26 # MODE = [folders|files] (defaults to files) - if 'folders' then lists only folders,
27 # if 'files' then only files
46 $files = getFilesAsArray($relPath); variable
49 foreach($files as $i => $value) {
66 } else if ($mode == 'files') {
88 $mode = 'files';
/external/chromium/chrome/browser/ui/
H A Dshell_dialogs_unittest.cc55 const std::vector<FilePath>& files,
54 MultiFilesSelected( const std::vector<FilePath>& files, void* params) argument
H A Dshell_dialogs.h65 // Notifies the Listener that many files have been selected. The
66 // files are in |files|. |params| is contextual passed to SelectFile.
68 const std::vector<FilePath>& files, void* params) {}
92 // files (i.e. *.*).
67 MultiFilesSelected( const std::vector<FilePath>& files, void* params) argument
/external/dexmaker/src/test/java/com/google/dexmaker/
H A DAppDataDirGuesserTest.java79 TestCondition withNonWriteable(String... files); argument
80 void shouldGive(String... files); argument
86 public void shouldGive(String... files) {
99 assertEquals("Bad lengths for " + path, files.length, results.length);
100 for (int i = 0; i < files.length; ++i) {
101 assertEquals("Element " + i, new File(files[i]), results[i]);
105 public TestCondition withNonWriteable(String... files) {
106 notWriteable.addAll(Arrays.asList(files));
/external/elfutils/tests/
H A Dget-files.c78 Dwarf_Files *files; local
80 if (dwarf_getsrcfiles (die, &files, &nfiles) != 0)
82 printf ("%s: cannot get files\n", argv[cnt]);
89 if (dwarf_getsrcdirs (files, &dirs, &ndirs) != 0)
105 dwarf_filesrc (files, i, NULL, NULL));
/external/icu4c/test/depstest/
H A Ddependencies.py16 files: Set of "library/filename.o" files mentioned in the dependencies file.
19 A library or group item can have an optional set of "files" (as in the files attribute).
30 # item contents: {"type": "binary"} with optional files & deps
35 files = set() variable
74 global files
75 item_files = item.get("files")
80 if item_files == None: item_files = item["files"] = set()
84 if file_name in files
[all...]
/external/littlemock/tests/com/google/testing/littlemock/
H A DAppDataDirGuesserTest.java80 TestCondition withNonWriteable(String... files); argument
81 void shouldGive(String... files); argument
88 public void shouldGive(String... files) {
101 assertEquals("Bad lengths for " + path, files.length, results.length);
102 for (int i = 0; i < files.length; ++i) {
103 assertEquals("Element " + i, new File(files[i]), results[i]);
108 public TestCondition withNonWriteable(String... files) {
109 notWriteable.addAll(Arrays.asList(files));
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DQtPlatformPlugin.cpp58 const QStringList files = dir.entryList(QDir::Files); local
59 for (int j = 0; j < files.count(); ++j) {
60 if (load(dir.absoluteFilePath(files.at(j))))
/external/webkit/Tools/CodeCoverage/
H A Drun-generate-coverage-data44 Collect all files that match the match_array.
48 for root, dirs, files in os.walk(src):
52 for file in files:
64 Parse the .d files of the gcc
80 # Remove files outside WebKit, make path absolute
87 Collect gcov files, collect_sources is not used as it also creates
89 Actually we will build a mapping from source file to gcov files of
150 for root, dirs, files in os.walk(base_path):
153 for file in files:
175 Generate gcov files i
222 files = {} variable
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dtestoutputset.py64 def files(self): member in class:TestOutputSet
75 for output_file in self.files():
90 def _extract_file_with_name(self, name, files):
91 for file in files:
/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)

Completed in 2072 milliseconds

1234567