HomeSort by relevance Sort by last modified time
    Searched refs:FileList (Results 26 - 50 of 79) sorted by null

12 3 4

  /external/chromium_org/google_apis/drive/
drive_api_parser.h 636 friend class FileList;
669 // FileList represents a collection of files and folders.
671 class FileList {
673 FileList();
674 ~FileList();
679 base::JSONValueConverter<FileList>* converter);
681 // Returns true if the |value| has kind field for FileList.
685 static scoped_ptr<FileList> CreateFrom(const base::Value& value);
727 DISALLOW_COPY_AND_ASSIGN(FileList);
drive_api_parser_unittest.cc 119 "drive/filelist.json");
123 scoped_ptr<FileList> filelist(new FileList);
124 EXPECT_TRUE(filelist->Parse(*document));
127 filelist->etag());
131 "ABC", filelist->next_page_token());
136 "t10AAAAABC"), filelist->next_link());
138 ASSERT_EQ(3U, filelist->items().size());
140 const FileResource& file1 = *filelist->items()[0]
    [all...]
drive_api_requests.cc 340 base::Bind(&ParseJsonOnBlockingPoolAndRun<FileList>,
361 base::Bind(&ParseJsonOnBlockingPoolAndRun<FileList>,
drive_api_requests.h 20 class FileList;
28 // Callback used for requests that the server returns FileList data
31 scoped_ptr<FileList> entry)> FileListCallback;
266 // This class performs the request for fetching FileList.
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Clipboard.cpp 34 #include "core/fileapi/FileList.h"
197 PassRefPtr<FileList> Clipboard::files() const
199 RefPtr<FileList> files = FileList::create();
481 RefPtr<FileList> fileList = files();
482 if (fileList->isEmpty())
485 for (unsigned f = 0; f < fileList->length(); f++) {
486 if (equalIgnoringCase(fileList->item(f)->type(), type))
  /external/chromium/chrome/common/extensions/
user_script.cc 135 for (FileList::const_iterator file = js_scripts_.begin();
142 for (FileList::const_iterator file = css_scripts_.begin();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTheme.h 42 class FileList;
200 virtual String fileListNameForWidth(Locale&, const FileList*, const Font&, int width) const;
RenderFileUploadControl.cpp 28 #include "core/fileapi/FileList.h"
73 FileList* files = input->files();
RenderThemeChromiumMac.h 128 virtual String fileListNameForWidth(Locale&, const FileList*, const Font&, int width) const OVERRIDE;
  /external/chromium_org/tools/gn/
ninja_script_target_writer.cc 45 const Target::FileList& outputs = target_->script_values().outputs();
142 const Target::FileList& sources = target_->sources();
command_desc.cc 166 Target::FileList sources = target->sources();
file_template.cc 99 const Target::FileList& outputs = target->script_values().outputs();
ninja_binary_target_writer.cc 146 const Target::FileList& sources = target_->sources();
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLInputElement.idl 35 attribute FileList files;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 18 from distutils.filelist import FileList
149 # 'filelist' contains the list of files that will make up the
151 self.filelist = FileList()
159 # whatever). File list is accumulated in 'self.filelist'.
180 distribution, and put it in 'self.filelist'. This might involve
195 self.filelist.sort()
196 self.filelist.remove_duplicates()
203 self.filelist.findall(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 18 from distutils.filelist import FileList
149 # 'filelist' contains the list of files that will make up the
151 self.filelist = FileList()
159 # whatever). File list is accumulated in 'self.filelist'.
180 distribution, and put it in 'self.filelist'. This might involve
195 self.filelist.sort()
196 self.filelist.remove_duplicates()
203 self.filelist.findall(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputType.cpp 37 #include "core/fileapi/FileList.h"
532 FileList* InputType::files()
537 void InputType::setFiles(PassRefPtr<FileList>)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_sdist.py 32 from distutils.filelist import FileList
384 cmd.filelist = FileList()
476 self.assertEqual(cmd.filelist.files, ['good.py'])
488 self.assertEqual(cmd.filelist.files, ['README.manual'])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_sdist.py 32 from distutils.filelist import FileList
384 cmd.filelist = FileList()
476 self.assertEqual(cmd.filelist.files, ['good.py'])
488 self.assertEqual(cmd.filelist.files, ['README.manual'])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
filelist.py 1 """distutils.filelist
3 Provides the FileList class, used for poking about the filesystem
15 class FileList:
31 # ignore argument to FileList, but keep them for backwards
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
filelist.py 1 """distutils.filelist
3 Provides the FileList class, used for poking about the filesystem
15 class FileList:
31 # ignore argument to FileList, but keep them for backwards
  /external/chromium_org/chrome/browser/drive/
drive_api_service.cc 35 using google_apis::FileList;
162 scoped_ptr<FileList> file_list) {
166 // Converts the FileList value to ResourceList on blocking pool and runs
172 scoped_ptr<FileList> value) {
195 // Converts the FileList value to ResourceList on blocking pool and runs
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
file_grid.js 107 filelist.decorateListItem(li, entry, metadataCache);
125 bottom.appendChild(filelist.renderFileNameLabel(li.ownerDocument, entry));
268 * We should match its argument interface with FileList.getHitElements.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
PyShell.py 29 from idlelib.FileList import FileList
285 class PyShellFileList(FileList):
288 # override FileList's class variable, instances return PyShellEditorWindow
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
PyShell.py 29 from idlelib.FileList import FileList
285 class PyShellFileList(FileList):
288 # override FileList's class variable, instances return PyShellEditorWindow
    [all...]

Completed in 638 milliseconds

12 3 4