HomeSort by relevance Sort by last modified time
    Searched refs:FilePath (Results 76 - 100 of 4053) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/mojo/tools/package_manager/
unpacker.h 25 bool Unpack(const base::FilePath& zip_file);
28 const base::FilePath& dir() const { return dir_; }
31 base::FilePath zip_file_;
33 base::FilePath dir_;
  /external/chromium_org/chrome/common/media_galleries/
picasa_test_util.h 14 class FilePath;
19 void WriteAlbumTable(const base::FilePath& column_file_destination,
28 void WriteTestAlbumTable(const base::FilePath& column_file_destination,
29 const base::FilePath& test_folder_1_path,
30 const base::FilePath& test_folder_2_path);
32 void WriteTestAlbumsImagesIndex(const base::FilePath& test_folder_1_path,
33 const base::FilePath& test_folder_2_path);
  /external/chromium_org/chrome/installer/test/
alternate_version_generator.h 13 class FilePath;
30 bool GenerateAlternateVersion(const base::FilePath& original_installer_path,
31 const base::FilePath& target_path,
40 bool GenerateAlternatePEFileVersion(const base::FilePath& original_file,
41 const base::FilePath& target_file,
48 bool GenerateSpecificPEFileVersion(const base::FilePath& original_file,
49 const base::FilePath& target_file,
  /external/chromium_org/chrome/installer/util/
self_cleaning_temp_dir.h 19 typedef base::FilePath::StringType StringType;
28 bool Initialize(const base::FilePath& parent_dir,
32 const base::FilePath& path() const { return temp_dir_; }
40 static void GetTopDirToCreate(const base::FilePath& temp_parent_dir,
41 base::FilePath* base_dir);
44 base::FilePath base_dir_;
47 base::FilePath temp_dir_;
copy_tree_work_item.h 42 CopyTreeWorkItem(const base::FilePath& source_path,
43 const base::FilePath& dest_path,
44 const base::FilePath& temp_dir,
46 const base::FilePath& alternative_path);
49 bool IsFileInUse(const base::FilePath& path);
52 base::FilePath source_path_;
55 base::FilePath dest_path_;
58 base::FilePath temp_dir_;
66 base::FilePath alternative_path_;
move_tree_work_item.h 45 MoveTreeWorkItem(const base::FilePath& source_path,
46 const base::FilePath& dest_path,
47 const base::FilePath& temp_dir,
51 base::FilePath source_path_;
54 base::FilePath dest_path_;
57 base::FilePath temp_dir_;
  /external/chromium_org/base/
path_service.h 16 class FilePath;
32 static bool Get(int key, base::FilePath* path);
47 static bool Override(int key, const base::FilePath& path);
59 const base::FilePath& path,
71 typedef bool (*ProviderFunc)(int, base::FilePath*);
  /external/chromium_org/chrome/browser/download/
download_path_reservation_tracker.h 11 class FilePath;
35 typedef base::Callback<void(const base::FilePath& target_path,
89 const base::FilePath& requested_target_path,
90 const base::FilePath& default_download_path,
97 static bool IsPathInUseForTesting(const base::FilePath& path);
  /external/chromium_org/chrome/browser/extensions/
extension_assets_manager.h 28 typedef base::Callback<void(const base::FilePath& file_path)>
36 const base::FilePath& unpacked_extension_root,
37 const base::FilePath& local_install_dir,
44 const base::FilePath& local_install_dir,
45 const base::FilePath& extension_root) = 0;
  /external/deqp/framework/delibs/decpp/
deFilePath.cpp 45 const std::string FilePath::separator = "\\";
47 const std::string FilePath::separator = "/";
50 FilePath::FilePath (const std::vector<std::string>& components)
60 void FilePath::split (std::vector<std::string>& components) const
84 FilePath& FilePath::normalize (void)
135 FilePath FilePath::normalize (const FilePath& path
    [all...]
  /external/chromium_org/base/files/
file_path.h 5 // FilePath is a container for pathnames stored in a platform's native string
26 // FilePath objects are intended to be used anywhere paths are. An
27 // application may pass FilePath objects around internally, masking the
30 // OpenFile(const FilePath &) function may be made available, allowing all
39 // Several methods are available to perform common operations on a FilePath
42 // to an existing FilePath object (Append). These methods are highly
48 // instances of FilePath objects, and are therefore safe to use on const
51 // To aid in initialization of FilePath objects from string literals, a
58 // Because a FilePath object should not be instantiated at the global scope,
59 // instead, use a FilePath::CharType[] and initialize it wit
    [all...]
  /external/chromium_org/extensions/common/
file_util.h 20 class FilePath;
31 extern const base::FilePath::CharType kTempDirectoryName[];
36 base::FilePath InstallExtension(const base::FilePath& unpacked_source_dir,
39 const base::FilePath& extensions_dir);
42 void UninstallExtension(const base::FilePath& extensions_dir,
47 scoped_refptr<Extension> LoadExtension(const base::FilePath& extension_root,
53 scoped_refptr<Extension> LoadExtension(const base::FilePath& extension_root,
61 base::DictionaryValue* LoadManifest(const base::FilePath& extension_root,
66 const base::FilePath& extension_root
    [all...]
  /external/chromium_org/storage/browser/fileapi/
file_system_usage_cache.h 29 bool GetUsage(const base::FilePath& usage_file_path, int64* usage);
33 bool GetDirty(const base::FilePath& usage_file_path, uint32* dirty);
37 bool IncrementDirty(const base::FilePath& usage_file_path);
38 bool DecrementDirty(const base::FilePath& usage_file_path);
42 bool Invalidate(const base::FilePath& usage_file_path);
43 bool IsValid(const base::FilePath& usage_file_path);
46 bool UpdateUsage(const base::FilePath& usage_file_path, int64 fs_usage);
50 bool AtomicUpdateUsageByDelta(const base::FilePath& usage_file_path,
53 bool Exists(const base::FilePath& usage_file_path);
54 bool Delete(const base::FilePath& usage_file_path)
    [all...]
native_file_util.h 41 static base::File CreateOrOpen(const base::FilePath& path, int file_flags);
42 static base::File::Error EnsureFileExists(const base::FilePath& path,
44 static base::File::Error CreateDirectory(const base::FilePath& path,
47 static base::File::Error GetFileInfo(const base::FilePath& path,
50 CreateFileEnumerator(const base::FilePath& root_path,
52 static base::File::Error Touch(const base::FilePath& path,
55 static base::File::Error Truncate(const base::FilePath& path,
57 static bool PathExists(const base::FilePath& path);
58 static bool DirectoryExists(const base::FilePath& path);
60 const base::FilePath& src_path
    [all...]
  /external/protobuf/gtest/test/
gtest-filepath_test.cc 32 // Google Test filepath utilities
41 #include <gtest/internal/gtest-filepath.h>
76 FilePath filepath(path);
78 filepath.RemoveTrailingPathSeparator().c_str());
87 const FilePath original_dir = FilePath::GetCurrentDir();
91 const FilePath cwd = FilePath::GetCurrentDir();
107 EXPECT_TRUE(FilePath("").IsEmpty())
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
picasa_finder.cc 35 base::FilePath GetCustomPicasaAppDataPathFromWinRegistry() {
39 return base::FilePath();
44 return base::FilePath();
46 return base::FilePath();
48 return base::FilePath(value);
51 base::FilePath GetPicasaDatabasePath() {
52 base::FilePath path = GetCustomPicasaAppDataPathFromWinRegistry();
54 return base::FilePath();
60 base::FilePath GetPicasaDatabasePath() {
61 base::FilePath path = GetCustomPicasaAppDataPathFromMacPreferences()
    [all...]
  /external/chromium_org/base/mac/
bundle_locations.h 20 class FilePath;
49 BASE_EXPORT FilePath MainBundlePath();
51 BASE_EXPORT FilePath OuterBundlePath();
53 BASE_EXPORT FilePath FrameworkBundlePath();
60 // Same as above but accepting a FilePath argument.
61 BASE_EXPORT void SetOverrideOuterBundlePath(const FilePath& file_path);
62 BASE_EXPORT void SetOverrideFrameworkBundlePath(const FilePath& file_path);
  /external/chromium_org/chrome/browser/importer/
firefox_profile_lock.cc 57 const base::FilePath::CharType* FirefoxProfileLock::kLockFileName =
59 const base::FilePath::CharType* FirefoxProfileLock::kOldLockFileName =
63 const base::FilePath::CharType* FirefoxProfileLock::kLockFileName =
65 const base::FilePath::CharType* FirefoxProfileLock::kOldLockFileName =
68 const base::FilePath::CharType* FirefoxProfileLock::kLockFileName =
72 FirefoxProfileLock::FirefoxProfileLock(const base::FilePath& path) {
  /external/chromium_org/chrome/browser/profiles/
profile_shortcut_manager.h 25 const base::FilePath& profile_path) = 0;
30 virtual void CreateProfileShortcut(const base::FilePath& profile_path) = 0;
34 virtual void RemoveProfileShortcuts(const base::FilePath& profile_path) = 0;
40 const base::FilePath& profile_path,
45 virtual void GetShortcutProperties(const base::FilePath& profile_path,
48 base::FilePath* icon_path) = 0;
  /external/chromium_org/chrome/common/
logging_chrome.h 16 class FilePath;
39 base::FilePath GetSessionLogDir(const base::CommandLine& command_line);
42 base::FilePath GetSessionLogFile(const base::CommandLine& command_line);
52 base::FilePath GetLogFileName();
72 base::FilePath GenerateTimestampedName(const base::FilePath& base_path,
  /external/chromium_org/remoting/host/
branding.cc 19 const base::FilePath::CharType kConfigDir[] =
22 const base::FilePath::CharType kConfigDir[] =
26 const base::FilePath::CharType kConfigDir[] =
29 const base::FilePath::CharType kConfigDir[] =
41 base::FilePath GetConfigDir() {
42 base::FilePath app_data_dir;
ipc_constants.cc 15 const base::FilePath::CharType kHostBinaryName[] =
18 const base::FilePath::CharType kDesktopBinaryName[] =
21 bool GetInstalledBinaryPath(const base::FilePath::StringType& binary,
22 base::FilePath* full_path) {
23 base::FilePath dir_path;
29 base::FilePath path = dir_path.Append(binary);
  /external/chromium_org/chrome/browser/web_applications/
web_app_mac.h 30 base::FilePath GetAppInstallPath(const ShortcutInfo& shortcut_info);
45 WebAppShortcutCreator(const base::FilePath& app_data_dir,
52 base::FilePath GetShortcutBasename() const;
56 virtual base::FilePath GetApplicationsDirname() const;
59 base::FilePath GetApplicationsShortcutPath() const;
62 base::FilePath GetInternalShortcutPath() const;
73 virtual base::FilePath GetAppBundleById(const std::string& bundle_id) const;
91 bool BuildShortcut(const base::FilePath& staging_path) const;
95 size_t CreateShortcutsIn(const std::vector<base::FilePath>& folders) const;
99 bool UpdateDisplayName(const base::FilePath& app_path) const
    [all...]
  /external/chromium_org/chrome/installer/setup/
setup_util.h 22 class FilePath;
35 int CourgettePatchFiles(const base::FilePath& src,
36 const base::FilePath& patch,
37 const base::FilePath& dest);
43 int BsdiffPatchFiles(const base::FilePath& src,
44 const base::FilePath& patch,
45 const base::FilePath& dest);
50 Version* GetMaxVersionFromArchiveDir(const base::FilePath& chrome_path);
54 base::FilePath FindArchiveToPatch(const InstallationState& original_state,
64 bool DeleteFileFromTempProcess(const base::FilePath& path
    [all...]
  /external/chromium_org/base/android/
content_uri_utils.h 21 BASE_EXPORT File OpenContentUriForRead(const FilePath& content_uri);
24 BASE_EXPORT bool ContentUriExists(const FilePath& content_uri);

Completed in 931 milliseconds

1 2 34 5 6 7 8 91011>>