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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/common/
chrome_paths_internal.h 11 class FilePath;
17 bool GetDefaultUserDataDirectory(FilePath* result);
22 bool GetChromeFrameUserDataDirectory(FilePath* result);
31 void GetUserCacheDirectory(const FilePath& profile_dir, FilePath* result);
34 bool GetUserDocumentsDirectory(FilePath* result);
38 bool GetUserDownloadsDirectorySafe(FilePath* result);
42 bool GetUserDownloadsDirectory(FilePath* result);
45 bool GetUserDesktop(FilePath* result);
52 FilePath GetVersionedDirectory()
    [all...]
zip.h 9 class FilePath;
16 bool Zip(const FilePath& src_dir, const FilePath& dest_file,
20 bool Unzip(const FilePath& zip_file, const FilePath& dest_dir);
chrome_constants.h 19 extern const FilePath::CharType kBrowserProcessExecutableName[];
20 extern const FilePath::CharType kHelperProcessExecutableName[];
21 extern const FilePath::CharType kBrowserProcessExecutablePath[];
22 extern const FilePath::CharType kHelperProcessExecutablePath[];
24 extern const FilePath::CharType kFrameworkName[];
37 extern const FilePath::CharType kExtensionFileExtension[];
38 extern const FilePath::CharType kExtensionKeyFileExtension[];
41 extern const FilePath::CharType kArchivedHistoryFilename[];
42 extern const FilePath::CharType kCacheDirname[];
43 extern const FilePath::CharType kMediaCacheDirname[]
    [all...]
  /external/chromium/chrome/common/extensions/
extension_resource.h 14 // JavaScript file. This is more complicated than just a simple FilePath
22 const FilePath& extension_root,
23 const FilePath& relative_path);
30 const FilePath& GetFilePath() const;
36 static FilePath GetFilePath(const FilePath& extension_root,
37 const FilePath& relative_path);
41 const FilePath& extension_root() const { return extension_root_; }
42 const FilePath& relative_path() const { return relative_path_; }
47 FilePath::StringType NormalizeSeperators
    [all...]
  /external/chromium/net/disk_cache/
cache_util.h 11 class FilePath;
21 bool MoveCache(const FilePath& from_path, const FilePath& to_path);
25 void DeleteCache(const FilePath& path, bool remove_folder);
28 bool DeleteCacheFile(const FilePath& name);
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-filepath.h 32 // Google Test filepath utilities
48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class FilePath {
61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
63 explicit FilePath(const char* pathname) : pathname_(pathname) { }
64 explicit FilePath(const String& pathname) : pathname_(pathname) { }
66 void Set(const FilePath& rhs)
    [all...]
  /external/chromium/base/test/
test_file_util.h 13 class FilePath;
20 bool DieFileDie(const FilePath& file, bool recurse);
24 bool EvictFileFromSystemCache(const FilePath& file);
32 bool CopyRecursiveDirNoCache(const FilePath& source_dir,
33 const FilePath& dest_dir);
37 bool VolumeSupportsADS(const FilePath& path);
43 bool HasInternetZoneIdentifier(const FilePath& full_path);
46 // In general it's not reliable to convert a FilePath to a wstring and we use
49 std::wstring FilePathAsWString(const FilePath& path);
50 FilePath WStringAsFilePath(const std::wstring& path)
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_creator.h 18 class FilePath;
29 bool Run(const FilePath& extension_dir,
30 const FilePath& crx_path,
31 const FilePath& private_key_path,
32 const FilePath& private_key_output_path);
43 bool InitializeInput(const FilePath& extension_dir,
44 const FilePath& private_key_path,
45 const FilePath& private_key_output_path);
48 crypto::RSAPrivateKey* ReadInputKey(const FilePath& private_key_path);
52 crypto::RSAPrivateKey* GenerateKey(const FilePath& private_key_path)
    [all...]
  /external/chromium/chrome/browser/importer/
firefox_importer_utils_linux.cc 9 FilePath GetProfilesINI() {
10 FilePath ini_file;
13 FilePath home = file_util::GetHomeDir();
20 return FilePath();
firefox_importer_utils.h 16 class FilePath;
29 FilePath GetFirefoxInstallPathFromRegistry();
37 FilePath GetFirefoxDylibPath();
41 FilePath GetFirefoxProfilePath();
45 bool GetFirefoxVersionAndPathFromProfile(const FilePath& profile_path,
47 FilePath* app_path);
51 FilePath GetProfilesINI();
65 void ParseProfileINI(const FilePath& file, DictionaryValue* root);
73 void ParseSearchEnginesFromXMLFiles(const std::vector<FilePath>& xml_files,
80 const FilePath& profile_path)
    [all...]
  /external/chromium/net/test/
python_utils.h 11 class FilePath;
17 void AppendToPythonPath(const FilePath& dir);
20 bool GetPyProtoPath(FilePath* dir);
23 bool GetPythonRunTime(FilePath* path) WARN_UNUSED_RESULT;
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-filepath.h 32 // Google Test filepath utilities
48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath {
61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const char* pathname) : pathname_(pathname) {
68 explicit FilePath(const String& pathname) : pathname_(pathname) {
72 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/gtest/include/gtest/internal/
gtest-filepath.h 32 // Google Test filepath utilities
48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath {
61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const char* pathname) : pathname_(pathname) {
68 explicit FilePath(const String& pathname) : pathname_(pathname) {
72 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 32 // Google Test filepath utilities
48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class GTEST_API_ FilePath {
61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const char* pathname) : pathname_(pathname) {
68 explicit FilePath(const String& pathname) : pathname_(pathname) {
72 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-filepath.h 32 // Google Test filepath utilities
48 // FilePath - a class for file and directory pathname manipulation which
53 // A FilePath with a value ending in a path separator ("like/this/") represents
59 class FilePath {
61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const char* pathname) : pathname_(pathname) {
68 explicit FilePath(const String& pathname) : pathname_(pathname) {
72 FilePath& operator=(const FilePath& rhs)
    [all...]
  /external/chromium/base/
path_service.h 15 class FilePath;
29 static bool Get(int key, FilePath* path);
41 static bool Override(int key, const FilePath& path);
51 typedef bool (*ProviderFunc)(int, FilePath*);
59 static bool GetFromCache(int key, FilePath* path);
60 static bool GetFromOverrides(int key, FilePath* path);
61 static void AddToCache(int key, const FilePath& path);
value_conversions.h 9 // This file contains methods to convert a |FilePath| to a |Value| and back.
13 class FilePath;
20 BASE_API StringValue* CreateFilePathValue(const FilePath& in_value);
21 BASE_API bool GetValueAsFilePath(const Value& value, FilePath* file_path);
  /external/chromium/chrome/browser/autofill/
data_driven_test.h 26 void RunDataDrivenTest(const FilePath& input_directory,
27 const FilePath& output_directory,
28 const FilePath::StringType& file_name_pattern);
37 // Return |FilePath|s to the test input and output subdirectories
39 FilePath GetInputDirectory(const FilePath::StringType& test_name);
40 FilePath GetOutputDirectory(const FilePath::StringType& test_name);
  /external/chromium/base/memory/
scoped_temp_dir.h 35 bool CreateUniqueTempDirUnderPath(const FilePath& path) WARN_UNUSED_RESULT;
39 bool Set(const FilePath& path) WARN_UNUSED_RESULT;
46 FilePath Take();
48 const FilePath& path() const { return path_; }
54 FilePath path_;
  /external/chromium/base/i18n/
file_util_icu.h 27 void ReplaceIllegalCharactersInPath(FilePath::StringType* file_name,
33 bool LocaleAwareCompareFilenames(const FilePath& a, const FilePath& b);
  /external/chromium/chrome/browser/cocoa/
file_metadata.h 9 class FilePath;
17 void AddOriginMetadataToFile(const FilePath& file, const GURL& source,
24 void AddQuarantineMetadataToFile(const FilePath& file, const GURL& source,
  /external/chromium/chrome/browser/parsers/
metadata_parser_factory.h 11 class FilePath;
22 virtual bool CanParse(const FilePath& path,
28 virtual MetadataParser* CreateParser(const FilePath& path) = 0;
metadata_parser_jpeg_factory.h 12 class FilePath;
19 virtual bool CanParse(const FilePath& path, char* bytes, int bytes_size);
20 virtual MetadataParser* CreateParser(const FilePath& path);
  /external/chromium/chrome/browser/ui/cocoa/download/
download_util_mac.h 13 class FilePath;
17 void AddFileToPasteboard(NSPasteboard* pasteboard, const FilePath& path);
21 void NotifySystemOfDownloadComplete(const FilePath& path);
  /external/chromium/net/base/
cert_test_util.h 13 class FilePath;
19 // Returns a FilePath object representing the src/net/data/ssl/certificates
21 FilePath GetTestCertsDirectory();
27 scoped_refptr<X509Certificate> ImportCertFromFile(const FilePath& certs_dir,

Completed in 719 milliseconds

1 2 3 4 5 6 7 8 91011>>