HomeSort by relevance Sort by last modified time
    Searched refs:file_paths (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_tasks.h 102 void FindFileHandlerTasks(const std::vector<base::FilePath>& file_paths,
112 const std::vector<base::FilePath>& file_paths,
private_api_dialog.cc 41 std::vector<GURL> file_paths; local
42 file_paths.push_back(GURL(file_url));
58 file_paths, local
private_api_tasks.cc 78 void GetMimeTypesForFileURLs(const std::vector<base::FilePath>& file_paths,
80 for (std::vector<base::FilePath>::const_iterator iter = file_paths.begin();
81 iter != file_paths.end(); ++iter) {
339 const std::vector<base::FilePath>& file_paths,
342 DCHECK(!file_paths.empty());
351 GetMimeTypesForFileURLs(file_paths, &files);
410 const std::vector<base::FilePath>& file_paths,
413 DCHECK(!file_paths.empty());
424 profile_, file_paths, common_tasks);
493 std::vector<base::FilePath> file_paths; local
    [all...]
private_api_util.cc 37 std::vector<base::FilePath> file_paths; member in struct:file_manager::util::__anon6842::GetSelectedFileInfoParams
56 i < params->file_paths.size(); ++i) {
57 const base::FilePath& file_path = params->file_paths[i];
108 const base::FilePath& file_path = params->file_paths[index];
190 params->file_paths.push_back(path);
private_api_mount.cc 197 std::vector<GURL> file_paths; local
198 file_paths.push_back(GURL(mount_path));
202 file_paths, local
file_browser_handlers.cc 594 std::vector<base::FilePath> file_paths;
595 file_paths.push_back(file_path);
598 FindDefaultFileBrowserHandlers(profile, file_paths, common_handlers);
  /external/chromium/chrome/browser/themes/
browser_theme_pack.h 131 FilePathMap* file_paths) const;
133 // Creates the data for |source_images_| from |file_paths|.
134 void BuildSourceImagesArray(const FilePathMap& file_paths);
138 bool LoadRawBitmapsTo(const FilePathMap& file_paths,
browser_theme_pack.cc 343 FilePathMap file_paths; local
346 &file_paths);
347 pack->BuildSourceImagesArray(file_paths);
349 if (!pack->LoadRawBitmapsTo(file_paths, &pack->prepared_images_))
816 FilePathMap* file_paths) const {
826 (*file_paths)[id] = images_path.AppendASCII(val);
831 void BrowserThemePack::BuildSourceImagesArray(const FilePathMap& file_paths) {
833 for (FilePathMap::const_iterator it = file_paths.begin();
834 it != file_paths.end(); ++it) {
844 const FilePathMap& file_paths,
    [all...]
  /external/chromium_org/ui/shell_dialogs/
select_file_dialog.cc 58 std::vector<base::FilePath> file_paths; local
60 file_paths.push_back(files[i].local_path);
62 MultiFilesSelected(file_paths, params);
  /external/chromium_org/chrome/browser/themes/
browser_theme_pack.h 136 FilePathMap* file_paths) const;
142 FilePathMap* file_paths) const;
144 // Creates the data for |source_images_| from |file_paths|.
145 void BuildSourceImagesArray(const FilePathMap& file_paths);
149 bool LoadRawBitmapsTo(const FilePathMap& file_paths,
browser_theme_pack.cc 652 FilePathMap file_paths; local
656 &file_paths); local
657 pack->BuildSourceImagesArray(file_paths);
659 if (!pack->LoadRawBitmapsTo(file_paths, &pack->images_on_ui_thread_))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
make_css_value_keywords.py 112 def __init__(self, file_paths, enabled_conditions):
113 in_generator.Writer.__init__(self, file_paths, enabled_conditions)
in_file.py 64 def load_from_files(self, file_paths, defaults, valid_values, default_parameters):
66 for path in file_paths:
make_css_property_names.py 177 def __init__(self, file_paths, enabled_conditions):
178 in_generator.Writer.__init__(self, file_paths, enabled_conditions)
  /external/chromium_org/chrome/common/extensions/docs/server2/
patched_file_system.py 52 file_paths = set(paths) - dir_paths
53 patched_paths = file_paths & patched_files
54 unpatched_paths = file_paths - patched_files
  /external/chromium_org/chrome/browser/devtools/
devtools_file_helper.h 110 const std::vector<base::FilePath>& file_paths);
devtools_file_system_indexer.cc 504 vector<FilePath> file_paths = g_trigram_index.Get().Search(query); local
507 vector<FilePath>::const_iterator it = file_paths.begin();
508 for (; it != file_paths.end(); ++it) {
devtools_window.h 219 const std::vector<std::string>& file_paths);
  /external/chromium_org/android_webview/native/
state_serializer.cc 123 const std::vector<base::FilePath>& file_paths = local
125 for (std::vector<base::FilePath>::const_iterator file = file_paths.begin();
126 file != file_paths.end(); ++file) {
aw_web_contents_delegate.cc 182 jobjectArray file_paths) {
189 // Note file_paths maybe NULL, but this will just yield a zero-length vector.
190 base::android::AppendJavaStringArrayToStringVector(env, file_paths,
  /external/chromium_org/content/browser/indexed_db/
indexed_db_context_impl.cc 53 std::vector<base::FilePath>* file_paths) {
67 if (file_paths)
68 file_paths->push_back(file_path);
80 std::vector<base::FilePath> file_paths; local
81 GetAllOriginsAndPaths(indexeddb_path, &origins, &file_paths);
82 DCHECK_EQ(origins.size(), file_paths.size());
84 file_paths.begin();
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
svn.py 335 def revert_files(self, file_paths):
337 self._run_svn(['revert'] + file_paths)
git.py 357 def revert_files(self, file_paths):
358 self._run_git(['checkout', 'HEAD'] + file_paths)
scm.py 200 def revert_files(self, file_paths):
  /external/chromium/chrome/browser/extensions/
extension_file_browser_private_api.cc 886 UrlList file_paths; local
887 file_paths.push_back(GURL(file_url));
893 file_paths, std::string()));
    [all...]

Completed in 634 milliseconds

1 2