/external/webkit/WebCore/html/ |
FileList.cpp | 27 #include "FileList.h" 33 FileList::FileList() 37 File* FileList::item(unsigned index) const
|
FileList.h | 37 class FileList : public RefCounted<FileList> { 39 static PassRefPtr<FileList> create() 41 return adoptRef(new FileList); 52 FileList();
|
FileList.idl | 30 ] FileList {
|
/external/e2fsprogs/e2fsck/ |
profile_helpers.h | 27 (const char * filelist, profile_t *ret_profile);
|
/external/webkit/WebCore/platform/mac/ |
ClipboardMac.mm | 34 #import "FileList.h" 122 NSArray *fileList = [pasteboard propertyListForType:NSFilenamesPboardType]; 123 if ([fileList count]) { 164 NSArray *fileList = [pasteboard propertyListForType:NSFilenamesPboardType]; 167 ASSERT(!fileList || [fileList isKindOfClass:[NSArray class]]); 168 if (!fileList || ![fileList isKindOfClass:[NSArray class]] || ![fileList count]) 171 NSUInteger count = onlyFirstURL ? 1 : [fileList count] [all...] |
ClipboardMac.h | 44 class FileList; 64 virtual PassRefPtr<FileList> files() const;
|
/external/libvpx/examples/includes/HTML-Toc-0.91/t/ |
siteMap.t | 20 my @fileList; 55 # Find files, filling 'fileList' 59 $toc, [sort {uc($a) cmp uc($b)} @fileList] 91 # Add file to 'fileList' if extension matches '.htm' 92 push (@fileList, $File::Find::name) if (m/\.htm$/);
|
/external/elfutils/libdw/ |
dwarf_getsrclines.c | 26 struct filelist struct 29 struct filelist *next; 213 struct filelist null_file = 223 struct filelist *filelist = &null_file; local 230 struct filelist *new_file = 231 (struct filelist *) alloca (sizeof (*new_file)); 280 new_file->next = filelist; 281 filelist = new_file; 404 struct filelist *new_file [all...] |
/system/core/adb/ |
file_sync_client.c | 601 static int local_build_list(copyinfo **filelist, 655 ci->next = *filelist; 656 *filelist = ci; 665 local_build_list(filelist, ci->src, ci->dst); 675 copyinfo *filelist = 0; local 696 if(local_build_list(&filelist, lpath, rpath)) { 701 for(ci = filelist; ci != 0; ci = ci->next) { 706 for(ci = filelist; ci != 0; ci = ci->next) { 718 for(ci = filelist; ci != 0; ci = next) { 802 copyinfo **filelist; member in struct:__anon15865 828 copyinfo **filelist = args->filelist; local 873 copyinfo *filelist = 0; local [all...] |
/external/webkit/WebCore/platform/chromium/ |
ClipboardChromium.cpp | 36 #include "FileList.h" 199 PassRefPtr<FileList> ClipboardChromium::files() const 202 return FileList::create(); 205 return FileList::create(); 207 RefPtr<FileList> fileList = FileList::create(); 209 fileList->append(File::create(m_dataObject->filenames.at(i))); 211 return fileList.release();
|
/external/webkit/WebKitTools/wx/packaging/ |
build-win-installer.py | 75 fileList = """ 83 fileList += """CopyMode: alwaysoverwrite; Source: %s; DestDir: "{app}" \n""" % dll 90 installerTemplate = installerTemplate.replace("<<FILES>>", fileList )
|
/external/webkit/WebCore/platform/android/ |
ClipboardAndroid.cpp | 32 #include "FileList.h" 75 PassRefPtr<FileList> ClipboardAndroid::files() const
|
/frameworks/base/services/java/com/android/server/ |
DropBoxManagerService.java | 87 private FileList mAllFiles = null; 88 private HashMap<String, FileList> mFilesByTag = null; 250 FileList list = tag == null ? mAllFiles : mFilesByTag.get(tag); 399 private static final class FileList implements Comparable<FileList> { 403 /** Sorts bigger FileList instances before smaller ones. */ 404 public final int compareTo(FileList o) { 554 mAllFiles = new FileList(); 555 mFilesByTag = new HashMap<String, FileList>(); 589 FileList tagFiles = mFilesByTag.get(entry.tag) [all...] |
/frameworks/base/test-runner/src/android/test/ |
RenamingDelegatingContext.java | 81 String[] fileList = mFileContext.fileList(); 82 for (String diskName : fileList) { 204 public String[] fileList() {
|
/frameworks/base/tests/CoreTests/android/core/ |
ZipFileTest.java | 106 Enumeration fileList; 110 for (fileList = zipFile.entries(); fileList.hasMoreElements();) { 111 ZipEntry entry = (ZipEntry) fileList.nextElement();
|
/external/webkit/WebCore/dom/ |
Clipboard.h | 36 class FileList; 58 virtual PassRefPtr<FileList> files() const = 0;
|
Clipboard.idl | 35 readonly attribute FileList files;
|
/external/webkit/WebCore/platform/gtk/ |
ClipboardGtk.cpp | 24 #include "FileList.h" 78 PassRefPtr<FileList> ClipboardGtk::files() const
|
DataObjectGtk.h | 23 #include "FileList.h"
|
/external/webkit/WebCore/platform/haiku/ |
ClipboardHaiku.cpp | 30 #include "FileList.h" 135 PassRefPtr<FileList> ClipboardHaiku::files() const
|
/external/webkit/WebCore/platform/wx/ |
ClipboardWx.cpp | 29 #include "FileList.h" 75 PassRefPtr<FileList> ClipboardWx::files() const
|
/build/tools/atree/ |
atree.cpp | 26 " -f FILELIST Specify one or more files containing the\n" 37 "FILELIST file format:\n" 38 " The FILELIST files contain the list of files that will end up\n" 42 " In a FILELIST file, comment lines start with a #. Other lines\n"
|
/frameworks/base/services/java/com/android/server/am/ |
UsageStatsService.java | 337 ArrayList<String> fileList = new ArrayList<String>(); 346 fileList.add(file); 348 return fileList; 353 ArrayList<String> fileList = getUsageStatsFileListFLOCK(); 354 if (fileList == null) { 358 int count = fileList.size(); 363 Collections.sort(fileList); 367 String fileName = fileList.get(i); 672 List<String> fileList = getUsageStatsFileListFLOCK(); 673 if (fileList == null) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/file/ |
FileURLConnection.java | 148 String fileList[] = f.list(); 156 for (i = 0; i < fileList.length; i++) { 157 out.print(fileList[i] + "<br>\n");
|
/external/webkit/WebCore/rendering/ |
RenderFileUploadControl.cpp | 25 #include "FileList.h" 68 FileList* list = input->files(); 152 FileList* files = inputElement->files();
|