/external/chromium_org/tools/grit/grit/format/ |
D | repack.py | 28 options, file_paths = parser.parse_args(argv) 30 if len(file_paths) < 2: 33 grit.format.data_pack.RePack(file_paths[0], file_paths[1:],
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
D | devtools_file_hashes.py | 64 def files_with_invalid_hashes(hash_file_path, file_paths): argument 67 for file_path in file_paths: 74 def update_file_hashes(hash_file_path, file_paths): argument 76 for file_path in file_paths:
|
/external/chromium_org/content/renderer/pepper/ |
D | pepper_file_chooser_host.cc | 94 std::vector<base::FilePath> file_paths; in StoreChosenFiles() local 102 file_paths.push_back(file_path); in StoreChosenFiles() 113 file_paths, in StoreChosenFiles() 170 const std::vector<base::FilePath>& file_paths, in DidCreateResourceHosts() argument 173 DCHECK(file_paths.size() == display_names.size()); in DidCreateResourceHosts() 174 DCHECK(file_paths.size() == browser_ids.size()); in DidCreateResourceHosts() 179 renderer_ppapi_host_, pp_instance(), 0, file_paths[i]); in DidCreateResourceHosts() 184 file_paths[i], display_names[i], browser_ids[i], renderer_id); in DidCreateResourceHosts()
|
D | pepper_file_chooser_host.h | 58 void DidCreateResourceHosts(const std::vector<base::FilePath>& file_paths,
|
/external/chromium_org/content/test/gpu/page_sets/ |
D | PRESUBMIT.py | 66 file_paths = [] 71 file_paths.append(os.path.splitext(hash_path)[0]) 73 if len(file_paths) > 0: 79 (upload_script_path, ' '.join(file_paths))))
|
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/ |
D | private_api_dialog.cc | 40 std::vector<GURL> file_paths; in RunAsync() local 41 file_paths.push_back(GURL(params->selected_path)); in RunAsync() 54 file_paths, in RunAsync()
|
D | private_api_util.cc | 40 std::vector<base::FilePath> file_paths; member 113 i < params->file_paths.size(); ++i) { in GetSelectedFileInfoInternal() 114 const base::FilePath& file_path = params->file_paths[i]; in GetSelectedFileInfoInternal() 152 const base::FilePath& file_path = params->file_paths[index]; in ContinueGetSelectedFileInfo() 307 params->file_paths.push_back(path); in GetSelectedFileInfo()
|
/external/chromium_org/chrome/browser/themes/ |
D | browser_theme_pack.h | 136 FilePathMap* file_paths) const; 142 FilePathMap* file_paths) const; 145 void BuildSourceImagesArray(const FilePathMap& file_paths); 149 bool LoadRawBitmapsTo(const FilePathMap& file_paths,
|
D | browser_theme_pack.cc | 649 FilePathMap file_paths; in BuildFromExtension() local 653 &file_paths); in BuildFromExtension() 654 pack->BuildSourceImagesArray(file_paths); in BuildFromExtension() 656 if (!pack->LoadRawBitmapsTo(file_paths, &pack->images_on_ui_thread_)) in BuildFromExtension() 1175 FilePathMap* file_paths) const { in ParseImageNamesFromJSON() 1195 file_paths); in ParseImageNamesFromJSON() 1205 file_paths); in ParseImageNamesFromJSON() 1214 FilePathMap* file_paths) const { in AddFileAtScaleToMap() 1217 (*file_paths)[id][scale_factor] = image_path; in AddFileAtScaleToMap() 1223 (*file_paths)[id][scale_factor] = image_path; in AddFileAtScaleToMap() [all …]
|
/external/chromium_org/ui/shell_dialogs/ |
D | select_file_dialog.cc | 56 std::vector<base::FilePath> file_paths; in MultiFilesSelectedWithExtraInfo() local 58 file_paths.push_back(files[i].local_path); in MultiFilesSelectedWithExtraInfo() 60 MultiFilesSelected(file_paths, params); in MultiFilesSelectedWithExtraInfo()
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
D | patched_file_system.py | 51 file_paths = set(paths) - dir_paths 52 patched_paths = file_paths & patched_files 53 unpatched_paths = file_paths - patched_files
|
/external/chromium_org/content/browser/indexed_db/ |
D | indexed_db_context_impl.cc | 58 std::vector<base::FilePath>* file_paths) { in GetAllOriginsAndPaths() argument 72 if (file_paths) in GetAllOriginsAndPaths() 73 file_paths->push_back(file_path); in GetAllOriginsAndPaths() 85 std::vector<base::FilePath> file_paths; in ClearSessionOnlyOrigins() local 86 GetAllOriginsAndPaths(indexeddb_path, &origins, &file_paths); in ClearSessionOnlyOrigins() 87 DCHECK_EQ(origins.size(), file_paths.size()); in ClearSessionOnlyOrigins() 89 file_paths.begin(); in ClearSessionOnlyOrigins()
|
/external/chromium_org/android_webview/native/ |
D | state_serializer.cc | 123 const std::vector<base::FilePath>& file_paths = in RestoreFromPickle() local 125 for (std::vector<base::FilePath>::const_iterator file = file_paths.begin(); in RestoreFromPickle() 126 file != file_paths.end(); ++file) { in RestoreFromPickle()
|
D | aw_web_contents_delegate.cc | 233 jobjectArray file_paths, jobjectArray display_names) { in FilesSelectedInChooser() argument 242 base::android::AppendJavaStringArrayToStringVector(env, file_paths, in FilesSelectedInChooser()
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/ |
D | make_css_value_keywords.py | 109 def __init__(self, file_paths): argument 110 in_generator.Writer.__init__(self, file_paths)
|
D | make_css_property_names.py | 188 def __init__(self, file_paths): argument 189 in_generator.Writer.__init__(self, file_paths)
|
D | in_file.py | 64 def load_from_files(self, file_paths, defaults, valid_values, default_parameters): argument 66 for path in file_paths:
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/ |
D | aggregate_generated_bindings.py | 126 def extract_meta_data(file_paths): argument 130 for file_path in file_paths:
|
/external/chromium_org/apps/ |
D | launcher.cc | 102 const std::vector<base::FilePath>& file_paths) in PlatformAppPathLauncher() argument 103 : profile_(profile), extension_(extension), file_paths_(file_paths) {} in PlatformAppPathLauncher() 454 const std::vector<base::FilePath>& file_paths) { in LaunchPlatformAppWithFileHandler() argument 456 new PlatformAppPathLauncher(profile, extension, file_paths); in LaunchPlatformAppWithFileHandler()
|
D | launcher.h | 52 const std::vector<base::FilePath>& file_paths);
|
/external/chromium_org/chrome/browser/devtools/ |
D | devtools_file_helper.h | 126 const std::vector<base::FilePath>& file_paths);
|
D | devtools_file_system_indexer.cc | 484 vector<FilePath> file_paths = g_trigram_index.Get().Search(query); in SearchInPathOnFileThread() local 487 vector<FilePath>::const_iterator it = file_paths.begin(); in SearchInPathOnFileThread() 488 for (; it != file_paths.end(); ++it) { in SearchInPathOnFileThread()
|
D | devtools_ui_bindings.cc | 710 const std::vector<std::string>& file_paths) { in SearchCompleted() argument 713 for (std::vector<std::string>::const_iterator it(file_paths.begin()); in SearchCompleted() 714 it != file_paths.end(); ++it) { in SearchCompleted()
|
D | devtools_ui_bindings.h | 151 const std::vector<std::string>& file_paths);
|
/external/chromium_org/chrome/browser/sessions/ |
D | session_restore.cc | 1060 const std::vector<base::FilePath>& file_paths = in RestoreTab() local 1062 for (std::vector<base::FilePath>::const_iterator file = file_paths.begin(); in RestoreTab() 1063 file != file_paths.end(); ++file) { in RestoreTab()
|