Searched refs:fileList (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/chrome/renderer/resources/extensions/
H A Dfile_browser_handler_custom_bindings.js21 var fileList = args[1].entries;
22 if (!fileList) {
29 for (var i = 0; i < fileList.length; i++)
30 fileList[i] = GetExternalFileEntry(fileList[i]);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DFileInputType.cpp110 FileList* fileList = element().files(); local
111 unsigned numFiles = fileList->length();
117 // fileList because Netscape doesn't support for non-multipart
121 encoding.appendData(element().name(), fileList->item(i)->name());
133 encoding.appendBlob(element().name(), fileList->item(i));
222 RefPtrWillBeRawPtr<FileList> fileList(FileList::create());
243 fileList->append(File::createWithRelativePath(files[i].path, relativePath));
245 return fileList;
249 fileList->append(File::createForUserProvidedFile(files[i].path, files[i].displayName));
250 return fileList;
367 FileList* fileList = m_fileList.get(); local
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Ddirectory_model.js76 return this.currentFileListContext_.fileList;
81 * in the fileList.
233 var fileList = this.getFileList();
234 if (fileList) {
236 return fileList.item(i);
248 var fileList = this.getFileList();
251 for (var i = 0; i < fileList.length; i++) {
252 if (urls.indexOf(fileList.item(i).toURL()) !== -1)
272 var fileList = this.getFileList();
273 for (var i = 0; i < fileList
[all...]
H A Ddirectory_contents.js506 this.fileList = new FileListModel(metadataCache);
521 * and filling the fileList. Different descendants handle various types of
540 this.fileList_ = context.fileList;
592 * Use a given fileList instead of the fileList from the context.
593 * @param {Array|cr.ui.ArrayDataModel} fileList The new file list.
595 DirectoryContents.prototype.setFileList = function(fileList) {
596 if (fileList instanceof cr.ui.ArrayDataModel)
597 this.fileList_ = fileList;
599 this.fileList_ = new cr.ui.ArrayDataModel(fileList);
[all...]
/external/llvm/utils/
H A Dwciia.py121 for dir,subdirList,fileList in os.walk( root , topdown=False ) :
123 for fname in fileList :
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DClassPathIterator.java52 List<File> fileList = new ArrayList<File>();
74 fileList.addAll(findFiles(file, JAR_FILTER, false, new ArrayList<File>()));
76 fileList.add(file);
79 this.files = fileList.iterator();
/external/emma/core/java12/com/vladium/util/
H A DStrings.java156 final String [] fileList = Files.readFileList (new File (ss.substring (1)));
157 for (int j = 0; j < fileList.length; ++ j)
159 final String sss = fileList [j];
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataTransfer.cpp490 RefPtrWillBeRawPtr<FileList> fileList = files();
491 if (fileList->isEmpty())
494 for (unsigned f = 0; f < fileList->length(); f++) {
495 if (equalIgnoringCase(fileList->item(f)->type(), type))
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs-ant.jarMETA-INF/ META-INF/MANIFEST.MF edu/ edu/umd/ edu/umd/cs/ edu/umd/cs/findbugs/ ...
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTheme.cpp1051 String RenderTheme::fileListNameForWidth(Locale& locale, const FileList* fileList, const Font& font, int width) const argument
1057 if (fileList->isEmpty()) {
1059 } else if (fileList->length() == 1) {
1060 string = fileList->item(0)->name();
1062 // FIXME: Localization of fileList->length().
1063 return StringTruncator::rightTruncate(locale.queryString(WebLocalizedString::MultipleFileUploadText, String::number(fileList->length())), width, font);
H A DRenderThemeChromiumMac.mm1723 String RenderThemeChromiumMac::fileListNameForWidth(Locale& locale, const FileList* fileList, const Font& font, int width) const
1729 if (fileList->isEmpty()) {
1731 } else if (fileList->length() == 1) {
1732 File* file = fileList->item(0);
1734 strToTruncate = [[NSFileManager defaultManager] displayNameAtPath:(fileList->item(0)->path())];
1738 // FIXME: Localization of fileList->length().
1739 return StringTruncator::rightTruncate(locale.queryString(WebLocalizedString::MultipleFileUploadText, String::number(fileList->length())), width, font);
/external/sonivox/jet_tools/JetCreator/
H A DJetUtils.py285 fileList = []
295 #fileList.append(FileRelativePath(config.get(JetDefs.RECENT_SECTION, sFile)))
296 fileList.append(config.get(JetDefs.RECENT_SECTION, sFile))
297 return fileList
302 fileList = GetRecentJetFiles()
311 for file in fileList:
H A DJetDialogs.py144 fileList = GetRecentJetFiles()
145 self.je.ctrls[JetDefs.F_JLIST].AppendItems(fileList)
146 if len(fileList) > 0:
147 self.je.ctrls[JetDefs.F_JFILE].SetValue(fileList[0])
H A DJetCreator.py1017 fileList = zip.namelist()
1020 for myFile in fileList:
1027 for myFile in fileList:
/external/chromium_org/ui/file_manager/file_manager/background/js/
H A Dtest_util.js165 var fileList = [];
168 fileList.push([
175 return fileList;
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSerializedScriptValue.cpp489 void writeFileList(const FileList& fileList) argument
492 uint32_t length = fileList.length();
495 doWriteFile(*fileList.item(i));
1326 FileList* fileList = V8FileList::toImpl(value.As<v8::Object>()); local
1327 if (!fileList)
1329 unsigned length = fileList->length();
1333 const File* file = fileList->item(i);
1346 m_writer.writeFileList(*fileList);
2221 RefPtrWillBeRawPtr<FileList> fileList = FileList::create();
2233 fileList
[all...]
/external/svox/pico/lib/
H A Dpicoos.c222 this->fileList = NULL;
1008 (*f)->next = g->fileList;
1009 if (g->fileList != NULL) {
1010 g->fileList->prev = (*f);
1012 g->fileList = (*f);
1033 g->fileList = (*f)->next;
H A Dpicoos.h127 picoos_File fileList; member in struct:picoos_common
/external/chromium_org/chrome/installer/mac/
H A Dpkg-dmg874 my(@fileList, $method, $tempRoot);
875 ($tempRoot, $method, @fileList) = @_;
878 foreach $file (@fileList) {
1477 my($attrList, $file, @fileList, @fixedFileList);
1478 ($attrList, @fileList) = split(/:/, $attribute);
1479 if(!defined($attrList) || !@fileList) {
1483 foreach $file (@fileList) {
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDOMAgent.cpp1466 RefPtrWillBeRawPtr<FileList> fileList = FileList::create(); local
1473 fileList->append(File::create(path));
1475 toHTMLInputElement(node)->setFiles(fileList);
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dwebkitdirs.pm2443 my @fileList = listOfChangedFilesBetweenRevisions(sourceDir(), $previousSvnRevision, $svnRevision);
2445 foreach (@fileList) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib/
H A Dpdebuild-ant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/internal/ ...
/external/dexmaker/lib/
H A Djarjar.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/tonicsystems/ com/tonicsystems/jarjar/ com/tonicsystems/jarjar/AbstractDepHandler ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...

Completed in 579 milliseconds

12