Searched refs:files (Results 26 - 50 of 5727) sorted by relevance

1234567891011>>

/external/svox/PicoLangInstallerItaIta/
H A DAndroid.mk4 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/external/svox/PicoLangInstallerSpaEsp/
H A DAndroid.mk4 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/external/svox/picolanginstaller/
H A DAndroid.mk4 LOCAL_SRC_FILES := $(call all-subdir-java-files)
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DAssetManagerTest.java42 List<String> files;
46 files = Arrays.asList(assetManager.list(testPath));
47 assertTrue(files.contains("docs"));
48 assertTrue(files.contains("assetsHome.txt"));
51 files = Arrays.asList(assetManager.list(testPath));
52 assertTrue(files.contains("extra"));
55 files = Arrays.asList(assetManager.list(testPath));
56 assertTrue(files.contains("testing"));
59 files = Arrays.asList(assetManager.list(testPath));
60 assertTrue(files
[all...]
/external/chromium_org/build/secondary/tools/grit/
H A Dstamp_grit_sources.py5 # This script enumerates the files in the given directory, writing an empty
9 # files to every .grd file's .d file would entail) or shelling out to grit
19 files = []
23 files.extend(grit_src)
24 files = [f.replace('\\', '/') for f in files]
25 return sorted(files)
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DHTMLInputElementFileSystem.cpp50 FileList* files = input.files(); local
52 if (!files)
61 for (unsigned i = 0; i < files->length(); ++i) {
62 File* file = files->item(i);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Dprint_layout_test_times_unittest.py37 def check(self, args, expected_output, files=None):
41 if files:
42 fs.files = files
109 files={'/tmp/times_ms.json': '{"foo":{"bar.html": 1}}'})
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Dsimplefileflags.py17 """Determines the list of files to be checked from command line arguments."""
45 'Exclude the specified files',
64 """Returns files to be linted, specified directly on the command line.
70 are assumed to be files that should be linted.
74 A sequence of files to be linted.
76 files = argv[1:] or []
81 for f in files:
95 """Returns files to be checked specified by the --recurse flag.
101 A list of files to be checked.
107 for root, subdirs, files i
[all...]
/external/chromium_org/third_party/closure_linter/closure_linter/common/
H A Dsimplefileflags.py17 """Determines the list of files to be checked from command line arguments."""
45 'Exclude the specified files',
64 """Returns files to be linted, specified directly on the command line.
70 are assumed to be files that should be linted.
74 A sequence of files to be linted.
76 files = argv[1:] or []
81 for f in files:
95 """Returns files to be checked specified by the --recurse flag.
101 A list of files to be checked.
107 for root, subdirs, files i
[all...]
/external/chromium_org/tools/grit/grit/format/
H A Dhtml_inline_unittest.py25 '''Tests that all included files are returned by GetResourceFilenames.'''
27 files = {
72 tmp_dir = util.TempDir(files)
73 for filename in files:
84 files = {
91 tmp_dir = util.TempDir(files)
92 for filename in files:
101 '''Tests that @import directives in inlined CSS files are inlined too.
104 files = {
145 tmp_dir = util.TempDir(files)
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DFileChooser.cpp82 Vector<FileChooserFileInfo> files; local
84 files.append(FileChooserFileInfo(filenames[i]));
85 m_client->filesChosen(files);
89 void FileChooser::chooseFiles(const Vector<FileChooserFileInfo>& files) argument
93 for (unsigned i = 0; i < files.size(); ++i)
94 paths.append(files[i].path);
99 m_client->filesChosen(files);
/external/llvm/utils/
H A DUpdateCMakeLists.pl32 my $files;
35 if (!defined $files) {
36 $files = GetFiles($dir);
38 push @$files, $file;
47 my $files = $dirFiles{$dir};
49 if (!defined $files) {
53 foreach my $file (sort @$files) {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dcrashlogs_unittest.py80 files = {}
81 files['/Users/mock/Library/Logs/DiagnosticReports/DumpRenderTree_2011-06-13-150718_quadzen.crash'] = older_mock_crash_report
82 files['/Users/mock/Library/Logs/DiagnosticReports/DumpRenderTree_2011-06-13-150719_quadzen.crash'] = mock_crash_report
83 files['/Users/mock/Library/Logs/DiagnosticReports/DumpRenderTree_2011-06-13-150720_quadzen.crash'] = newer_mock_crash_report
84 files['/Users/mock/Library/Logs/DiagnosticReports/DumpRenderTree_2011-06-13-150721_quadzen.crash'] = None
85 files['/Users/mock/Library/Logs/DiagnosticReports/DumpRenderTree_2011-06-13-150722_quadzen.crash'] = other_process_mock_crash_report
86 files['/Users/mock/Library/Logs/DiagnosticReports/DumpRenderTree_2011-06-13-150723_quadzen.crash'] = misformatted_mock_crash_report
87 filesystem = MockFileSystem(files)
110 filesystem = MockFileSystem(files)
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
H A Dinjected_script_loader.js19 * Loads a dictionary of file contents for Javascript files.
20 * @param {Array.<string>} files A list of file names.
22 * the files have been loaded. Called with the code map as the first
25 cvox.InjectedScriptLoader.fetchCode = function(files, done) {
27 var waiting = files.length;
57 files.forEach(function(f) { loadScriptAsCode(f); });
/external/proguard/src/proguard/io/
H A DDirectoryPump.java28 * DataEntryReader to all files it comes across.
59 * to all files that are encountered.
70 File[] files = file.listFiles();
72 for (int index = 0; index < files.length; index++)
74 readFiles(files[index], dataEntryReader);
/external/chromium_org/base/
H A DPRESUBMIT.py12 """Checks to make sure no files in libbase.a have |@interface|."""
14 files = []
22 files.append(f)
24 if len(files):
29 files) ]
/external/chromium_org/chrome/tools/build/win/
H A Dmake_zip.sh18 files=$(sed -n "s/^ *'filename': '\(.*\)',$/\1/ p" "$tools_dir/FILES.cfg")
25 # files.
35 for f in ${files[@]}; do
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFileChooserCompletionImpl.cpp55 void WebFileChooserCompletionImpl::didChooseFile(const WebVector<SelectedFileInfo>& files) argument
58 for (size_t i = 0; i < files.size(); ++i)
59 fileInfo.append(FileChooserFileInfo(files[i].path, files[i].displayName));
/external/chromium_org/third_party/closure_compiler/build/
H A Dinputs.py24 files = set()
26 files.add(file)
27 files.update(processor.Processor(file).included_files)
29 return files
/external/elfutils/0.153/libdw/
H A Ddwarf_decl_file.c27 found in the source code files (the "Approved Interfaces"). The files
78 /* Get the array of source files for the CU. */
99 assert (cu->files != NULL && cu->files != (void *) -1l);
101 if (idx >= cu->files->nfiles)
107 return cu->files->info[idx].name;
/external/google-tv-pairing-protocol/
H A DAndroid.mk8 $(call all-java-files-under, java/src) \
9 $(call all-proto-files-under, proto)
/external/javassist/
H A DAndroid.mk25 LOCAL_SRC_FILES := $(call all-java-files-under,src/main)
/external/libcxx/test/input.output/file.streams/c.files/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/file.streams/c.files/Android.mk
19 test_name := input.output/file.streams/c.files/cinttypes
23 test_name := input.output/file.streams/c.files/version_cinttypes
27 test_name := input.output/file.streams/c.files/version_ccstdio
/external/xmp_toolkit/XMPCore/
H A DAndroid.mk4 # Include all the java files.
5 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/external/chromium_org/tools/gyp/test/standalone/
H A Dgyptest-standalone.py19 # Look at all the files in the tree to make sure none
21 for root, dirs, files in os.walk("."):
22 for file in files:

Completed in 586 milliseconds

1234567891011>>