HomeSort by relevance Sort by last modified time
    Searched defs:files (Results 151 - 175 of 446) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/win8/metro_driver/
file_picker.cc 11 #include "base/files/file_path.h"
134 static HRESULT ComposeMultiFileResult(StorageFileVectorCollection* files,
242 mswr::ComPtr<StorageFileVectorCollection> files; local
243 HRESULT hr = async->GetResults(files.GetAddressOf());
245 if (files) {
248 hr = ComposeMultiFileResult(files.Get(), &result);
374 StorageFileVectorCollection* files, string16* result) {
375 DCHECK(files != NULL);
382 HRESULT hr = files->get_Size(&num_files);
392 // This stores the base path that should be the parent of all the files
    [all...]
file_picker_ash.cc 164 mswr::ComPtr<StorageFileVectorCollection> files; local
165 HRESULT hr = async->GetResults(files.GetAddressOf());
167 if (files) {
170 hr = ComposeMultiFileResult(files.Get(), &result);
180 std::vector<base::FilePath> files; local
183 files.push_back(base::FilePath(selection));
185 selection += files.back().value().length() + 1;
187 if (files.empty()) {
189 } else if (files.size() == 1) {
191 filenames_ = files;
    [all...]