| /external/chromium_org/webkit/common/fileapi/ |
| file_system_util.h | 32 static const base::FilePath::CharType kRoot[]; 33 static const base::FilePath::CharType kSeparator; 35 // Use this instead of base::FilePath::BaseName when operating on virtual 36 // paths. FilePath::BaseName will get confused by ':' on Windows when it 39 static base::FilePath BaseName(const base::FilePath& virtual_path); 41 // Use this instead of base::FilePath::DirName when operating on virtual 43 static base::FilePath DirName(const base::FilePath& virtual_path); 45 // Likewise, use this instead of base::FilePath::GetComponents whe [all...] |
| /external/chromium_org/chrome/common/extensions/ |
| extension_unittest.cc | 30 using base::FilePath; 105 const FilePath valid_path_test_cases[] = { 106 FilePath(FILE_PATH_LITERAL("manifest.json")), 107 FilePath(FILE_PATH_LITERAL("a/b/c/manifest.json")), 108 FilePath(FILE_PATH_LITERAL("com/manifest.json")), 109 FilePath(FILE_PATH_LITERAL("lpt/manifest.json")), 111 const FilePath invalid_path_test_cases[] = { 113 FilePath(FILE_PATH_LITERAL("src/")), 115 FilePath(FILE_PATH_LITERAL("C:\\manifest.json")), 117 FilePath(FILE_PATH_LITERAL("a\\b\\c\\manifest.json")) [all...] |
| /external/chromium_org/base/ |
| base_paths_win.cc | 17 using base::FilePath; 21 bool GetQuickLaunchPath(bool default_user, FilePath* result) { 32 *result = FilePath(system_buffer); 53 bool PathProviderWin(int key, FilePath* result) { 62 FilePath cur; 66 cur = FilePath(system_buffer); 73 cur = FilePath(system_buffer); 78 cur = FilePath(system_buffer); 82 cur = FilePath(system_buffer); 90 cur = FilePath(system_buffer) [all...] |
| base_paths_posix.cc | 32 bool PathProviderPosix(int key, FilePath* result) { 33 FilePath path; 38 FilePath bin_dir; 39 if (!ReadSymbolicLink(FilePath(kProcSelfExe), &bin_dir)) { 56 *result = FilePath(FilePath::StringType(bin_dir, length - 1)); 64 *result = FilePath(bin_dir); 70 *result = FilePath(cpath); 72 *result = FilePath("/usr/local/chrome/chrome"); 82 path = FilePath(cr_source_root) [all...] |
| scoped_native_library.h | 13 class FilePath; 27 explicit ScopedNativeLibrary(const FilePath& library_path);
|
| /external/chromium_org/chrome/browser/chromeos/drive/ |
| dummy_file_system.h | 20 const base::FilePath& local_src_file_path, 21 const base::FilePath& remote_dest_file_path, 23 virtual void OpenFile(const base::FilePath& file_path, 27 virtual void Copy(const base::FilePath& src_file_path, 28 const base::FilePath& dest_file_path, 31 virtual void Move(const base::FilePath& src_file_path, 32 const base::FilePath& dest_file_path, 34 virtual void Remove(const base::FilePath& file_path, 38 const base::FilePath& directory_path, 42 virtual void CreateFile(const base::FilePath& file_path [all...] |
| write_on_cache_file_unittest.cc | 17 const base::FilePath::CharType kDrivePath[] = 19 const base::FilePath::CharType kInvalidPath[] = 21 const base::FilePath::CharType kLocalPath[] = 32 virtual void OpenFile(const base::FilePath& file_path, 39 if (file_path == base::FilePath(kInvalidPath)) { 40 callback.Run(FILE_ERROR_INVALID_OPERATION, base::FilePath(), 45 callback.Run(FILE_ERROR_OK, base::FilePath(kLocalPath), 66 base::FilePath path; 70 base::FilePath(kDrivePath), 87 base::FilePath path [all...] |
| file_change.cc | 9 FileChange::FileChange(const base::FilePath& path, Type type) 16 FileChangeSet FileChange::CreateSingleSet(const base::FilePath& path,
|
| file_system_interface.h | 25 SearchResultInfo(const base::FilePath& path, bool is_directory) 30 base::FilePath path; 36 MetadataSearchResult(const base::FilePath& in_path, 44 base::FilePath path; 69 const base::FilePath& file_path, 77 const base::FilePath& local_file, 105 const base::FilePath& file_path, 124 const base::FilePath& file_path)> 128 typedef base::Callback<void(FileError error, const base::FilePath& file_path)> 178 const base::FilePath& local_src_file_path [all...] |
| file_write_watcher.h | 13 class FilePath; 44 void StartWatch(const base::FilePath& path,
|
| /external/chromium_org/content/common/ |
| plugin_list.h | 60 void AddExtraPluginPath(const base::FilePath& plugin_path); 61 void RemoveExtraPluginPath(const base::FilePath& plugin_path); 64 void AddExtraPluginDir(const base::FilePath& plugin_dir); 67 void GetPluginDirectories(std::vector<base::FilePath>* plugin_dirs); 79 void UnregisterInternalPlugin(const base::FilePath& path); 87 bool ReadPluginInfo(const base::FilePath& filename, 130 bool LoadPluginIntoPluginList(const base::FilePath& filename, 138 void GetPluginPathsToLoad(std::vector<base::FilePath>* plugin_paths, 158 static bool ReadWebPluginInfo(const base::FilePath& filename, 178 void GetPluginsInDir(const base::FilePath& path [all...] |
| /external/chromium_org/extensions/common/ |
| file_util.cc | 43 bool ValidateFilePath(const base::FilePath& path) { 56 const base::FilePath::CharType kTempDirectoryName[] = FILE_PATH_LITERAL("Temp"); 58 base::FilePath InstallExtension(const base::FilePath& unpacked_source_dir, 61 const base::FilePath& extensions_dir) { 62 base::FilePath extension_dir = extensions_dir.AppendASCII(id); 63 base::FilePath version_dir; 68 return base::FilePath(); 72 base::FilePath install_temp_dir = GetInstallTempDir(extensions_dir); 77 return base::FilePath(); [all...] |
| /external/chromium_org/net/disk_cache/ |
| cache_util.cc | 23 base::FilePath GetPrefixedName(const base::FilePath& path, 32 void CleanupCallback(const base::FilePath& path, const std::string& name) { 34 base::FilePath to_delete = GetPrefixedName(path, name, i); 41 base::FilePath GetTempCacheName(const base::FilePath& path, 45 base::FilePath to_delete = GetPrefixedName(path, name, i); 49 return base::FilePath(); 83 void DeleteCache(const base::FilePath& path, bool remove_folder) { 94 for (base::FilePath file = iter.Next(); !file.value().empty() [all...] |
| /external/chromium_org/net/disk_cache/simple/ |
| simple_index_file.h | 80 const base::FilePath& cache_directory); 98 typedef base::Callback<void (const base::FilePath&)> EntryFileCallback; 107 const base::FilePath& cache_directory, 108 const base::FilePath& index_file_path, 112 static void SyncLoadFromDisk(const base::FilePath& index_filename, 142 const base::FilePath& cache_path, 147 const base::FilePath& cache_directory, 148 const base::FilePath& index_filename, 149 const base::FilePath& temp_index_filename, 156 static void SyncRestoreFromDisk(const base::FilePath& cache_directory [all...] |
| /external/chromium_org/chrome/browser/chromeos/drive/file_system/ |
| download_operation.h | 16 class FilePath; 46 const base::FilePath& temporary_file_directory); 75 const base::FilePath& file_path, 90 base::FilePath* drive_file_path, 91 base::FilePath* cache_file_path, 92 base::FilePath* temp_download_file_path, 97 const base::FilePath& drive_file_path, 100 const base::FilePath& downloaded_file_path); 105 const base::FilePath& file_path, 108 base::FilePath* cache_file_path [all...] |
| operation_observer.h | 9 class FilePath; 33 const base::FilePath& directory_path) = 0;
|
| /external/chromium_org/chrome/browser/media_galleries/ |
| imported_media_gallery_registry.h | 44 const base::FilePath& database_path); 48 const base::FilePath& xml_library_path); 52 const base::FilePath& xml_library_path); 57 base::FilePath ImportedRoot(); 79 void RegisterPicasaFileSystem(const base::FilePath& database_path); 82 void RegisterITunesFileSystem(const base::FilePath& xml_library_path); 87 void RegisterIPhotoFileSystem(const base::FilePath& xml_library_path); 91 base::FilePath imported_root_; 103 base::FilePath picasa_database_path_; 104 base::FilePath itunes_xml_library_path_ [all...] |
| /external/chromium_org/content/ppapi_plugin/ |
| broker_process_dispatcher.h | 39 const base::FilePath& plugin_data_path); 41 const base::FilePath& plugin_data_path, 46 const base::FilePath& plugin_data_path); 49 const base::FilePath& plugin_data_path, 53 const base::FilePath& plugin_data_path, 59 const base::FilePath& plugin_data_path, 64 void GetSitesWithData(const base::FilePath& plugin_data_path, 68 bool ClearSiteData(const base::FilePath& plugin_data_path, 73 bool DeauthorizeContentLicenses(const base::FilePath& plugin_data_path); 74 bool SetDefaultPermission(const base::FilePath& plugin_data_path [all...] |
| /external/chromium_org/apps/app_shim/test/ |
| app_shim_host_manager_test_api_mac.h | 13 class FilePath; 28 const base::FilePath& directory_in_tmp();
|
| /external/chromium_org/base/android/ |
| fifo_utils.cc | 14 bool CreateFIFO(const FilePath& path, int mode) { 20 bool RedirectStream(FILE* stream, const FilePath& path, const char* mode) {
|
| /external/chromium_org/chrome/browser/ |
| chrome_process_finder_win.h | 11 class FilePath; 23 HWND FindRunningChromeWindow(const base::FilePath& user_data_dir);
|
| /external/chromium_org/chrome/browser/chromeos/file_manager/ |
| mime_util.cc | 13 std::string GetMimeTypeForPath(const base::FilePath& file_path) { 14 const base::FilePath::StringType file_extension = file_path.Extension();
|
| /external/chromium_org/chrome/browser/component_updater/ |
| cld_component_installer.h | 44 const base::FilePath& install_dir) OVERRIDE; 46 const base::FilePath& install_dir) const OVERRIDE; 49 const base::FilePath& path, 51 virtual base::FilePath GetBaseDirectory() const OVERRIDE; 55 static base::FilePath GetInstalledPath(const base::FilePath& base); 56 static void SetLatestCldDataFile(const base::FilePath& path); 67 base::FilePath GetLatestCldDataFile();
|
| /external/chromium_org/chrome/browser/download/ |
| download_target_info.h | 19 base::FilePath target_path; 33 base::FilePath intermediate_path;
|
| /external/chromium_org/chrome/browser/extensions/ |
| convert_web_app.h | 13 class FilePath; 44 const base::FilePath& extensions_dir);
|